Commit 7fa8ead1 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

motiondetect: fix categorization of this module in the advanced prefs.

parent 116945aa
...@@ -48,9 +48,9 @@ static void Destroy ( vlc_object_t * ); ...@@ -48,9 +48,9 @@ static void Destroy ( vlc_object_t * );
vlc_module_begin(); vlc_module_begin();
set_description( N_("Motion detect video filter") ); set_description( N_("Motion detect video filter") );
set_shortname( N_( "Motion Detect" )); set_shortname( N_( "Motion Detect" ));
set_capability( "video filter2", 0 );
set_category( CAT_VIDEO ); set_category( CAT_VIDEO );
set_subcategory( SUBCAT_VIDEO_VFILTER ); set_subcategory( SUBCAT_VIDEO_VFILTER );
set_capability( "video filter2", 0 );
add_shortcut( "motion" ); add_shortcut( "motion" );
set_callbacks( Create, Destroy ); set_callbacks( Create, Destroy );
......
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