Commit 16343fac authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Configuration categories are VFILTER

parent 2b086db2
...@@ -68,7 +68,7 @@ vlc_module_begin () ...@@ -68,7 +68,7 @@ vlc_module_begin ()
set_callbacks( Activate, Destroy ) set_callbacks( Activate, Destroy )
set_category( CAT_VIDEO ) set_category( CAT_VIDEO )
set_subcategory( SUBCAT_VIDEO_VFILTER2 ) set_subcategory( SUBCAT_VIDEO_VFILTER )
add_integer_with_range( CFG_PREFIX "width", 0, 0, INT_MAX, NULL, add_integer_with_range( CFG_PREFIX "width", 0, 0, INT_MAX, NULL,
WIDTH_TEXT, WIDTH_LONGTEXT, false ) WIDTH_TEXT, WIDTH_LONGTEXT, false )
......
...@@ -80,7 +80,7 @@ vlc_module_begin () ...@@ -80,7 +80,7 @@ vlc_module_begin ()
set_callbacks( OpenFilter, CloseFilter ) set_callbacks( OpenFilter, CloseFilter )
set_category( CAT_VIDEO ) set_category( CAT_VIDEO )
set_subcategory( SUBCAT_VIDEO_VFILTER2 ); set_subcategory( SUBCAT_VIDEO_VFILTER );
set_section( N_("Crop"), NULL ) set_section( N_("Crop"), NULL )
add_integer_with_range( CFG_PREFIX "croptop", 0, 0, INT_MAX, NULL, add_integer_with_range( CFG_PREFIX "croptop", 0, 0, INT_MAX, NULL,
......
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