]> git.sesse.net Git - vlc/commitdiff
Do not set sout-keep by default.
authorLaurent Aimar <fenrir@videolan.org>
Wed, 3 Sep 2008 21:03:05 +0000 (23:03 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Wed, 3 Sep 2008 21:03:05 +0000 (23:03 +0200)
 While it is great for (some) streaming cases it is really wrong for saving
to a file for example and/or without using the gather module.

 If you have read how to use the gather module, you probably have read enough
documentation to add sout-keep...

NEWS
src/libvlc-module.c

diff --git a/NEWS b/NEWS
index 10f6c0df6d4de1dd60a03b4f790aea79e8d2bb65..19b5315cac661e1e8a8cd0805ac7ee0853fad8fa 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,7 @@ Decoders:
  * AES3 (SMPTE 302M) support
 Stream output:
  * Restored the old mpeg2 transrating module.
+ * Restored the old behavior of --sout-keep. It is now de-activated by default.
 
 Changes between 0.8.6i and 0.9.1:
 ---------------------------------
index 911aed46802e0ca56190af0dbf62f29ba2a05c75..0089d725e75d2f08fd0663599a34d5e29158a703 100644 (file)
@@ -1796,7 +1796,7 @@ vlc_module_begin();
     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, true );
     add_bool( "sout-display", false, NULL, SOUT_DISPLAY_TEXT,
                                 SOUT_DISPLAY_LONGTEXT, true );
-    add_bool( "sout-keep", true, NULL, SOUT_KEEP_TEXT,
+    add_bool( "sout-keep", false, NULL, SOUT_KEEP_TEXT,
                                 SOUT_KEEP_LONGTEXT, true );
     add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
                                 SOUT_ALL_LONGTEXT, true );