Commit a4196560 authored by Christophe Mutricy's avatar Christophe Mutricy

Change the default for sout-keep to enabled.

parent 9ed0ed0e
...@@ -16,6 +16,7 @@ Important notes: ...@@ -16,6 +16,7 @@ Important notes:
features, we advise you to keep vlc 0.8.6 features, we advise you to keep vlc 0.8.6
- Similarly, "Bookmarks" will be reintroduced in an improved version at a - Similarly, "Bookmarks" will be reintroduced in an improved version at a
later point later point
* The default for --sout-keep has changed. It's now activated by default.
Changes: Changes:
-------- --------
......
...@@ -1532,7 +1532,7 @@ vlc_module_begin(); ...@@ -1532,7 +1532,7 @@ vlc_module_begin();
add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, VLC_TRUE ); add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, VLC_TRUE );
add_bool( "sout-display", VLC_FALSE, NULL, SOUT_DISPLAY_TEXT, add_bool( "sout-display", VLC_FALSE, NULL, SOUT_DISPLAY_TEXT,
SOUT_DISPLAY_LONGTEXT, VLC_TRUE ); SOUT_DISPLAY_LONGTEXT, VLC_TRUE );
add_bool( "sout-keep", VLC_FALSE, NULL, SOUT_KEEP_TEXT, add_bool( "sout-keep", VLC_TRUE, NULL, SOUT_KEEP_TEXT,
SOUT_KEEP_LONGTEXT, VLC_TRUE ); SOUT_KEEP_LONGTEXT, VLC_TRUE );
add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT, add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
SOUT_ALL_LONGTEXT, VLC_TRUE ); SOUT_ALL_LONGTEXT, VLC_TRUE );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment