]> git.sesse.net Git - vlc/commitdiff
* Mark the video and decoder options of the dummy module as advanced. This 'hides...
authorDerk-Jan Hartman <hartman@videolan.org>
Mon, 20 Jun 2005 22:43:40 +0000 (22:43 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Mon, 20 Jun 2005 22:43:40 +0000 (22:43 +0000)
modules/misc/dummy/dummy.c

index eeb231b91384ab8f479d2d42124a086a59f1ed07..70ef803bba62234ecba87c85817108d1c1910a10 100644 (file)
@@ -80,7 +80,7 @@ vlc_module_begin();
         set_description( _("Dummy decoder function") );
         set_capability( "decoder", 0 );
         set_callbacks( E_(OpenDecoder), E_(CloseDecoder) );
-        add_bool( "dummy-save-es", 0, NULL, SAVE_TEXT, SAVE_LONGTEXT, VLC_FALSE );
+        add_bool( "dummy-save-es", 0, NULL, SAVE_TEXT, SAVE_LONGTEXT, VLC_TRUE );
     add_submodule();
         set_description( _("Dummy encoder function") );
         set_capability( "encoder", 0 );
@@ -95,7 +95,7 @@ vlc_module_begin();
         set_capability( "video output", 1 );
         set_callbacks( E_(OpenVideo), NULL );
         add_category_hint( N_("Video"), NULL, VLC_FALSE );
-        add_string( "dummy-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, VLC_FALSE );
+        add_string( "dummy-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, VLC_TRUE );
     add_submodule();
         set_description( _("Dummy font renderer function") );
         set_capability( "text renderer", 1 );