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
b5a3966f
Commit
b5a3966f
authored
Mar 10, 2015
by
Thomas Guillem
Committed by
Jean-Baptiste Kempf
Mar 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audiotrack: use VLC_CLIP
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
eadf3063
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
modules/audio_output/audiotrack.c
modules/audio_output/audiotrack.c
+1
-4
No files found.
modules/audio_output/audiotrack.c
View file @
b5a3966f
...
...
@@ -643,10 +643,7 @@ JNIThread_Configure( JNIEnv *env, audio_output_t *p_aout )
audio_sample_format_t
fmt
=
p_sys
->
fmt
;
/* 4000 <= frequency <= 48000 */
if
(
fmt
.
i_rate
<
4000
)
fmt
.
i_rate
=
4000
;
if
(
fmt
.
i_rate
>
48000
)
fmt
.
i_rate
=
48000
;
fmt
.
i_rate
=
VLC_CLIP
(
fmt
.
i_rate
,
4000
,
48000
);
/* We can only accept U8, S16N, FL32 */
switch
(
fmt
.
i_format
)
...
...
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