]> git.sesse.net Git - vlc/commitdiff
ALL: Add some set_shorname() so the preferences look nice.
authorChristophe Mutricy <xtophe@videolan.org>
Fri, 1 Jul 2005 13:44:37 +0000 (13:44 +0000)
committerChristophe Mutricy <xtophe@videolan.org>
Fri, 1 Jul 2005 13:44:37 +0000 (13:44 +0000)
modules/codec/fake.c
modules/codec/twolame.c
modules/demux/playlist/playlist.c
modules/misc/network/ipv4.c
modules/video_filter/motionblur.c

index ca47914d3bbd7dba51f64865756397e01713d51b..2e82f35f842b1964c38e9ec9ae5f09b532b49474 100644 (file)
@@ -58,7 +58,8 @@ static picture_t *DecodeBlock  ( decoder_t *, block_t ** );
 vlc_module_begin();
     set_category( CAT_INPUT );
     set_subcategory( SUBCAT_INPUT_VCODEC );
-    set_description( _("fake video decoder") );
+    set_shortname( _("Fake") );
+    set_description( _("Fake video decoder") );
     set_capability( "decoder", 1000 );
     set_callbacks( OpenDecoder, CloseDecoder );
     add_shortcut( "fake" );
index 4339d82f684b293c86de69f381fca6ad531f0f86..d267d83ef541ebf784edf655d442d6f0dc003c9c 100644 (file)
@@ -63,7 +63,7 @@ static block_t *Encode   ( encoder_t *, aout_buffer_t * );
   "Integer from -1 (no model) to 4." )
 
 vlc_module_begin();
-    set_shortname( "twolame");
+    set_shortname( "Twolame");
     set_description( _("Libtwolame audio encoder") );
     set_capability( "encoder", 50 );
     set_callbacks( OpenEncoder, CloseEncoder );
index 86438cfed0750e9fafab2c9dbba08167bb5add65..3b9036e9acd0e0cccc56147f1a07d7539f2c0282 100644 (file)
@@ -45,6 +45,7 @@ vlc_module_begin();
     add_bool( "playlist-autostart", 1, NULL, AUTOSTART_TEXT, AUTOSTART_LONGTEXT,
               VLC_FALSE );
 
+    set_shortname( _("Playlist") );
     set_description( _("Old playlist open") );
     add_shortcut( "old-open" );
     set_capability( "demux2", 10 );
index b8af131b78f864cd9816a463a79b7de446a1ef88..b3d7ea99632b809c6380bfa641a8e6f8f700b64b 100644 (file)
@@ -98,6 +98,7 @@ static int NetOpen( vlc_object_t * );
     "This overrides the routing table.")
 
 vlc_module_begin();
+    set_shortname( "IPv4" );
     set_description( _("IPv4 network abstraction layer") );
     set_capability( "network", 50 );
     set_category( CAT_INPUT );
index 1e1b01d2818d8ff3721e84b4b9d23b69e13d565b..1e70115c17981a367aff27e3f851dbbc9bd35261 100644 (file)
@@ -55,6 +55,7 @@ static int  SendEvents( vlc_object_t *, char const *,
 #define MODE_LONGTEXT N_("The degree of blurring from 1 to 127.")
 
 vlc_module_begin();
+    set_shortname( _("Motion blur") );
     set_description( _("Motion blur filter") );
     set_capability( "video filter", 0 );
     set_category( CAT_VIDEO );