Commit 5522140b authored by Clément Stenac's avatar Clément Stenac

String fixes by Christophe Mutricy

parent e95b2584
......@@ -48,6 +48,7 @@ static int Open ( vlc_object_t * );
static void Close( vlc_object_t * );
vlc_module_begin();
set_shortname( "AVI" );
set_description( _("AVI demuxer") );
set_capability( "demux2", 212 );
set_category( CAT_INPUT );
......
......@@ -46,6 +46,7 @@ static int Open( vlc_object_t * );
static void Close ( vlc_object_t * );
vlc_module_begin();
set_shortname("Dump");
set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_DEMUX );
set_description( _("Filedump demuxer") );
......
......@@ -45,6 +45,7 @@ static void Close( vlc_object_t * );
"playing from files, use 0 for live.")
vlc_module_begin();
set_shortname( "MJEPG");
set_description( _("JPEG camera demuxer") );
set_capability( "demux2", 5 );
set_callbacks( Open, Close );
......
......@@ -45,6 +45,7 @@ static int Open ( vlc_object_t * );
static void Close ( vlc_object_t * );
vlc_module_begin();
set_shortname( "MOD");
set_description( _("MOD demuxer (libmodplug)" ) );
set_capability( "demux2", 10 );
set_category( CAT_INPUT );
......
......@@ -36,12 +36,17 @@
static int Open ( vlc_object_t * );
static void Close( vlc_object_t * );
#define FPS_TEXT N_("Frames per Second")
#define FPS_LONGTEXT N_("Allows you to set the desired frame rate.")
vlc_module_begin();
set_shortname( "H264");
set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_DEMUX );
set_description( _("H264 video demuxer" ) );
set_capability( "demux2", 0 );
add_float( "h264-fps", 25.0, NULL, "fps", "fps", VLC_TRUE );
add_float( "h264-fps", 25.0, NULL, FPS_TEXT, FPS_LONGTEXT, VLC_TRUE );
set_callbacks( Open, Close );
add_shortcut( "h264" );
vlc_module_end();
......
......@@ -55,6 +55,7 @@
#endif
vlc_module_begin();
set_shortname( _("Dummy"));
set_description( _("Dummy interface function") );
set_capability( "interface", 0 );
set_category( CAT_INTERFACE );
......
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