]> git.sesse.net Git - vlc/blobdiff - modules/access/mms/mms.c
Fix a bunch of preferences errors
[vlc] / modules / access / mms / mms.c
index 2b1264670ea13722af026e1ef2a1f2a0fc70351d..001ab4672c974c66c7833e320ea69c64bd05a655 100644 (file)
@@ -50,9 +50,10 @@ static void Close( vlc_object_t * );
 
 #define ALL_TEXT N_("Force selection of all streams")
 
-#define BITRATE_TEXT N_("Select maximum bitrate stream")
+#define BITRATE_TEXT N_( "Maximum bitrate" )
 #define BITRATE_LONGTEXT N_( \
-    "Always select the stream with the maximum bitrate." )
+    "If this is set, the stream with the maximum bitrate under that limit \
+     will be selected" )
 
 vlc_module_begin();
     set_shortname( _("MMS") );
@@ -61,7 +62,7 @@ vlc_module_begin();
     set_category( CAT_INPUT );
     set_subcategory( SUBCAT_INPUT_ACCESS );
 
-    add_integer( "mms-caching", 12 * DEFAULT_PTS_DELAY / 1000, NULL,
+    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 );