Commit 9580417f authored by Laurent Aimar's avatar Laurent Aimar

Do not use video_filter wrapper for puzzle/magnify/logo.

parent 4c3384da
...@@ -274,10 +274,7 @@ void ExtVideo::ChangeVFiltersString( const char *psz_name, bool b_add ) ...@@ -274,10 +274,7 @@ void ExtVideo::ChangeVFiltersString( const char *psz_name, bool b_add )
/* FIXME temporary hack */ /* FIXME temporary hack */
const char *psz_module_name = psz_name; const char *psz_module_name = psz_name;
if( !strcmp( psz_name, "magnify" ) || if( !strcmp( psz_name, "wall" ) ||
!strcmp( psz_name, "puzzle" ) ||
!strcmp( psz_name, "logo" ) ||
!strcmp( psz_name, "wall" ) ||
!strcmp( psz_name, "panoramix" ) || !strcmp( psz_name, "panoramix" ) ||
!strcmp( psz_name, "clone" ) ) !strcmp( psz_name, "clone" ) )
psz_module_name = "video_filter_wrapper"; psz_module_name = "video_filter_wrapper";
......
...@@ -47,10 +47,6 @@ static void Close( vlc_object_t * ); ...@@ -47,10 +47,6 @@ static void Close( vlc_object_t * );
#define DECLARE_OPEN(name,filter) \ #define DECLARE_OPEN(name,filter) \
static int Open##name ( vlc_object_t *p_this ) { return Open( p_this, #name, filter ); } static int Open##name ( vlc_object_t *p_this ) { return Open( p_this, #name, filter ); }
DECLARE_OPEN(magnify, true)
DECLARE_OPEN(puzzle, true)
DECLARE_OPEN(logo, true)
DECLARE_OPEN(clone, false) DECLARE_OPEN(clone, false)
DECLARE_OPEN(wall, false) DECLARE_OPEN(wall, false)
DECLARE_OPEN(panoramix, false) DECLARE_OPEN(panoramix, false)
...@@ -68,15 +64,6 @@ vlc_module_begin() ...@@ -68,15 +64,6 @@ vlc_module_begin()
set_category( CAT_VIDEO ) set_category( CAT_VIDEO )
set_subcategory( SUBCAT_VIDEO_VFILTER ) set_subcategory( SUBCAT_VIDEO_VFILTER )
DECLARE_MODULE(magnify)
add_submodule()
DECLARE_MODULE(puzzle)
add_submodule()
DECLARE_MODULE(logo)
add_submodule()
DECLARE_MODULE(clone) DECLARE_MODULE(clone)
add_submodule() add_submodule()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment