Commit 000076e7 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

And the final shortnames needed to look correctly in the preferences.

parent 0119302c
...@@ -68,6 +68,7 @@ vlc_module_begin () ...@@ -68,6 +68,7 @@ vlc_module_begin ()
set_category( CAT_SOUT ) set_category( CAT_SOUT )
set_subcategory( SUBCAT_SOUT_PACKETIZER ) set_subcategory( SUBCAT_SOUT_PACKETIZER )
set_description( N_("MPEG-I/II video packetizer") ) set_description( N_("MPEG-I/II video packetizer") )
set_shortname( N_("MPEG Video") )
set_capability( "packetizer", 50 ) set_capability( "packetizer", 50 )
set_callbacks( Open, Close ) set_callbacks( Open, Close )
......
...@@ -57,6 +57,7 @@ vlc_module_begin () ...@@ -57,6 +57,7 @@ vlc_module_begin ()
set_description( N_("Record stream output") ) set_description( N_("Record stream output") )
set_capability( "sout stream", 0 ) set_capability( "sout stream", 0 )
add_shortcut( "record" ) add_shortcut( "record" )
set_shortname( N_("Record") )
set_category( CAT_SOUT ) set_category( CAT_SOUT )
set_subcategory( SUBCAT_SOUT_STREAM ) set_subcategory( SUBCAT_SOUT_STREAM )
......
...@@ -79,6 +79,7 @@ vlc_module_begin () ...@@ -79,6 +79,7 @@ vlc_module_begin ()
set_description( N_("MPEG2 video transrating stream output") ) set_description( N_("MPEG2 video transrating stream output") )
set_capability( "sout stream", 50 ) set_capability( "sout stream", 50 )
add_shortcut( "transrate" ) add_shortcut( "transrate" )
set_shortname( N_("Transrate") )
set_callbacks( Open, Close ) set_callbacks( Open, Close )
add_integer( SOUT_CFG_PREFIX "vb", 3 * 100 * 1000, NULL, add_integer( SOUT_CFG_PREFIX "vb", 3 * 100 * 1000, NULL,
......
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