Commit f2f0361f authored by Rafaël Carré's avatar Rafaël Carré

sout-all now defaults to true

Stop losing extra audio tracks after the first one
parent 9e09db80
......@@ -81,6 +81,8 @@ Streaming:
* HLS: Allow setting the first segment number and numerous improvements
* new stats module to output block timing values and md5 sums
* transcode module access fps values as rationals now, eg 30000/1001
* VLC now streams all elementary streams, you can revert to previous behaviour
with --no-sout-all
libVLC:
* add equalizer API libvlc_audio_equalizer_* functions
......
......@@ -1905,7 +1905,7 @@ vlc_module_begin ()
SOUT_DISPLAY_LONGTEXT, true )
add_bool( "sout-keep", false, SOUT_KEEP_TEXT,
SOUT_KEEP_LONGTEXT, true )
add_bool( "sout-all", 0, SOUT_ALL_TEXT,
add_bool( "sout-all", true, SOUT_ALL_TEXT,
SOUT_ALL_LONGTEXT, true )
add_bool( "sout-audio", 1, SOUT_AUDIO_TEXT,
SOUT_AUDIO_LONGTEXT, 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