Commit d58778ce authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Mark the video and decoder options of the dummy module as advanced. This...

* Mark the video and decoder options of the dummy module as advanced. This 'hides' the problem described in #162
parent a458b1d6
...@@ -80,7 +80,7 @@ vlc_module_begin(); ...@@ -80,7 +80,7 @@ vlc_module_begin();
set_description( _("Dummy decoder function") ); set_description( _("Dummy decoder function") );
set_capability( "decoder", 0 ); set_capability( "decoder", 0 );
set_callbacks( E_(OpenDecoder), E_(CloseDecoder) ); 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(); add_submodule();
set_description( _("Dummy encoder function") ); set_description( _("Dummy encoder function") );
set_capability( "encoder", 0 ); set_capability( "encoder", 0 );
...@@ -95,7 +95,7 @@ vlc_module_begin(); ...@@ -95,7 +95,7 @@ vlc_module_begin();
set_capability( "video output", 1 ); set_capability( "video output", 1 );
set_callbacks( E_(OpenVideo), NULL ); set_callbacks( E_(OpenVideo), NULL );
add_category_hint( N_("Video"), NULL, VLC_FALSE ); 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(); add_submodule();
set_description( _("Dummy font renderer function") ); set_description( _("Dummy font renderer function") );
set_capability( "text renderer", 1 ); set_capability( "text renderer", 1 );
......
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