X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess%2Fmms%2Fmms.c;h=00585681ec555c6afabaff2c7079ad8af7ec0595;hb=36a5efe8b526390e4171ba80184211bacad9b89d;hp=28489b96bdf7d32589c3359bad1dce618cb98a50;hpb=4c28a826fd45ea6183b8af91eef346bca0a33701;p=vlc diff --git a/modules/access/mms/mms.c b/modules/access/mms/mms.c index 28489b96bd..00585681ec 100644 --- a/modules/access/mms/mms.c +++ b/modules/access/mms/mms.c @@ -45,15 +45,17 @@ static void Close( vlc_object_t * ); #define CACHING_TEXT N_("Caching value in ms") #define CACHING_LONGTEXT N_( \ - "Allows you to modify the default caching value for MMS streams. This " \ - "value should be set in millisecond units." ) + "Default caching value for MMS streams. This " \ + "value should be set in milliseconds." ) #define ALL_TEXT N_("Force selection of all streams") +#define ALL_LONGTEXT N_( \ + "MMS streams can contain several elementary streams, with different " \ + "bitrates. You can choose to select all of them." ) #define BITRATE_TEXT N_( "Maximum bitrate" ) #define BITRATE_LONGTEXT N_( \ - "If this is set, the stream with the maximum bitrate under that limit \ - will be selected" ) + "Select the stream with the maximum bitrate under that limit." ) vlc_module_begin(); set_shortname( "MMS" ); @@ -65,7 +67,7 @@ vlc_module_begin(); add_integer( "mms-caching", 19 * DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE ); - add_bool( "mms-all", 0, NULL, ALL_TEXT, "", VLC_TRUE ); + add_bool( "mms-all", 0, NULL, ALL_TEXT, ALL_LONGTEXT, VLC_TRUE ); add_integer( "mms-maxbitrate", 0, NULL, BITRATE_TEXT, BITRATE_LONGTEXT , VLC_FALSE );