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
d2ff0942
Commit
d2ff0942
authored
Jan 19, 2014
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix wrong implicit cast
parent
2b288902
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/audio_mixer/integer.c
modules/audio_mixer/integer.c
+2
-2
No files found.
modules/audio_mixer/integer.c
View file @
d2ff0942
...
...
@@ -51,10 +51,10 @@ static void FilterS32N (audio_volume_t *vol, block_t *block, float volume)
for
(
size_t
n
=
block
->
i_buffer
/
sizeof
(
*
p
);
n
>
0
;
n
--
)
{
int64_t
s
=
*
p
*
(
int64_t
)
mult
;
if
(
s
>=
(
INT32_MAX
<<
INT64_C
(
24
)))
if
(
s
>=
(
(
int64_t
)
INT32_MAX
<<
INT64_C
(
24
)))
*
p
=
INT32_MAX
;
else
if
(
s
<
(
INT32_MIN
<<
INT64_C
(
24
)))
if
(
s
<
(
(
int64_t
)
INT32_MIN
<<
INT64_C
(
24
)))
*
p
=
INT32_MIN
;
else
*
p
=
s
>>
INT64_C
(
24
);
...
...
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