]> git.sesse.net Git - vlc/commitdiff
MKV: de-advanced some options
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 22 Sep 2011 21:30:03 +0000 (23:30 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 22 Sep 2011 21:30:03 +0000 (23:30 +0200)
modules/demux/mkv/mkv.cpp

index 0d6e3a036e39198bee8b096f3f66d9accbf18e55..9f4b98139e22326ece5f492452f5e6cebf30b02e 100644 (file)
@@ -52,7 +52,7 @@ vlc_module_begin ()
 
     add_bool( "mkv-use-ordered-chapters", true,
             N_("Ordered chapters"),
-            N_("Play ordered chapters as specified in the segment."), true );
+            N_("Play ordered chapters as specified in the segment."), false );
 
     add_bool( "mkv-use-chapter-codec", true,
             N_("Chapter codecs"),
@@ -60,7 +60,7 @@ vlc_module_begin ()
 
     add_bool( "mkv-preload-local-dir", false,
             N_("Preload Directory"),
-            N_("Preload matroska files from the same family in the same directory (not good for broken files)."), true );
+            N_("Preload matroska files from the same family in the same directory (not good for broken files)."), false );
 
     add_bool( "mkv-seek-percent", false,
             N_("Seek based on percent not time"),