Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
42c9aebc
Commit
42c9aebc
authored
Jun 07, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sanitize audio format
parent
4f2e026c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
THANKS
THANKS
+1
-0
src/audio_output/dec.c
src/audio_output/dec.c
+15
-0
No files found.
THANKS
View file @
42c9aebc
...
...
@@ -49,6 +49,7 @@ Daniel Stränger <vlc at schmaller d0t de> - M3U, xtag and playlist improvements
David Kennedy <dkennedy at tinytoad.com> - X11 fullscreen patch
Daniel Dreibrodt, aka aLtgLasS <daniel d.t dreibrodt -@t- gmx d0t de> - VLC 0.8.5 default skin
Daniel Nylander <info@danielnylander at se> - Swedish translation
David Thiel - security audit and report
David Weber <david_weber at gmx.de> - Mac OS X interface design & graphics (v0.5.0)
Davor Orel <syntheticamac at yahoo.it> - Mac OS X icons
Dennis van Amerongen <Dennis dot vanAmerongen at nob dot nl> - x264 options unification
...
...
src/audio_output/dec.c
View file @
42c9aebc
...
...
@@ -51,6 +51,21 @@ static aout_input_t * DecNew( vlc_object_t * p_this, aout_instance_t * p_aout,
input_thread_t
*
p_input_thread
;
vlc_value_t
val
;
/* Sanitize audio format */
if
(
p_format
->
i_channels
>
32
)
{
msg_Err
(
p_aout
,
"too many audio channels (%u)"
,
p_format
->
i_channels
);
goto
error
;
}
if
(
p_format
->
i_rate
>
192000
)
{
msg_Err
(
p_aout
,
"excessive audio sample frequency (%u)"
,
p_format
->
i_rate
);
goto
error
;
}
/* We can only be called by the decoder, so no need to lock
* p_input->lock. */
vlc_mutex_lock
(
&
p_aout
->
mixer_lock
);
...
...
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