sout-all now defaults to true

Stop losing extra audio tracks after the first one
This commit is contained in:
Rafaël Carré 2014-02-15 15:24:45 +01:00
parent 9e09db809c
commit f2f0361f35
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -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

View File

@ -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 )