]> git.sesse.net Git - vlc/blobdiff - modules/video_filter/deinterlace/deinterlace.c
* Stringreview !!!
[vlc] / modules / video_filter / deinterlace / deinterlace.c
index aa58eb00b54722ad4245f22782dfcf19d9e310c4..5f31fcca31859f4396bf29cde640c71496848e36 100644 (file)
@@ -2,7 +2,7 @@
  * deinterlace.c : deinterlacer plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
- * $Id: deinterlace.c,v 1.19 2004/01/23 15:36:23 titer Exp $
+ * $Id: deinterlace.c,v 1.20 2004/01/25 20:05:28 hartman Exp $
  *
  * Author: Sam Hocevar <sam@zoy.org>
  *
@@ -77,16 +77,17 @@ static int FilterCallback ( vlc_object_t *, char const *,
 #define MODE_LONGTEXT N_("You can choose the default deinterlace mode")
 
 static char *mode_list[] = { "discard", "blend", "mean", "bob", "linear" };
-static char *mode_list_text[] = { N_("discard"), N_("Blend"), N_("Mean"),
+static char *mode_list_text[] = { N_("Discard"), N_("Blend"), N_("Mean"),
                                   N_("Bob"), N_("Linear") };
 
 vlc_module_begin();
-    add_category_hint( N_("Deinterlace"), NULL, VLC_FALSE );
+    set_description( _("Deinterlacing video filter") );
+    set_capability( "video filter", 0 );
+
     add_string( "deinterlace-mode", "discard", NULL, MODE_TEXT,
                 MODE_LONGTEXT, VLC_FALSE );
         change_string_list( mode_list, mode_list_text, 0 );
-    set_description( _("video deinterlacing filter") );
-    set_capability( "video filter", 0 );
+
     add_shortcut( "deinterlace" );
     set_callbacks( Create, Destroy );
 vlc_module_end();