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
21e5b32e
Commit
21e5b32e
authored
Jun 07, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sanitize audio format before creating a decoder
parent
16db5271
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
src/audio_output/dec.c
src/audio_output/dec.c
+15
-0
No files found.
src/audio_output/dec.c
View file @
21e5b32e
...
...
@@ -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