Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
f2f0361f
Commit
f2f0361f
authored
Feb 15, 2014
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sout-all now defaults to true
Stop losing extra audio tracks after the first one
parent
9e09db80
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
NEWS
NEWS
+2
-0
src/libvlc-module.c
src/libvlc-module.c
+1
-1
No files found.
NEWS
View file @
f2f0361f
...
...
@@ -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
...
...
src/libvlc-module.c
View file @
f2f0361f
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment