Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
21914e2f
Commit
21914e2f
authored
Aug 06, 2013
by
Rémi Denis-Courmont
Browse files
integer: fix typo (fix #9127)
parent
47376e17
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/audio_mixer/integer.c
View file @
21914e2f
...
...
@@ -77,7 +77,7 @@ static void FilterS16N (audio_volume_t *vol, block_t *block, float volume)
if
(
s
>=
(
INT16_MAX
<<
8
))
*
p
=
INT16_MAX
;
else
if
(
s
<
(
INT_MIN
<<
8
))
if
(
s
<
(
INT
16
_MIN
<<
8
))
*
p
=
INT16_MIN
;
else
*
p
=
s
>>
8
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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