[vlc-devel] commit: motiondetect: fix categorization of this module in the advanced prefs. ( Derk-Jan Hartman )
git version control
git at videolan.org
Sun Aug 3 03:47:47 CEST 2008
vlc | branch: master | Derk-Jan Hartman <hartman at videolan.org> | Sun Aug 3 03:50:00 2008 +0200| [7fa8ead1a2192a06c8d5f7709bb18a614337199c] | committer: Derk-Jan Hartman
motiondetect: fix categorization of this module in the advanced prefs.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7fa8ead1a2192a06c8d5f7709bb18a614337199c
---
modules/video_filter/motiondetect.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_filter/motiondetect.c b/modules/video_filter/motiondetect.c
index cc23abd..34b6ed7 100644
--- a/modules/video_filter/motiondetect.c
+++ b/modules/video_filter/motiondetect.c
@@ -48,9 +48,9 @@ static void Destroy ( vlc_object_t * );
vlc_module_begin();
set_description( N_("Motion detect video filter") );
set_shortname( N_( "Motion Detect" ));
- set_capability( "video filter2", 0 );
set_category( CAT_VIDEO );
set_subcategory( SUBCAT_VIDEO_VFILTER );
+ set_capability( "video filter2", 0 );
add_shortcut( "motion" );
set_callbacks( Create, Destroy );
More information about the vlc-devel
mailing list