Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
a1f97b91
Commit
a1f97b91
authored
Dec 21, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audio format: fix FI32 -> S16N conversion
(cherry picked from commit 84fab3ddd6f554d922df1c18ae4ab1266598d383)
parent
75f7915e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/audio_filter/converter/format.c
modules/audio_filter/converter/format.c
+1
-1
No files found.
modules/audio_filter/converter/format.c
View file @
a1f97b91
...
...
@@ -393,7 +393,7 @@ static block_t *Fi32toS16(filter_t *filter, block_t *b)
else
if
(
v
<=
-
FIXED32_ONE
)
*
dst
++
=
INT16_MIN
;
else
*
dst
++
=
v
>>
(
32
-
FIXED32_FRACBITS
);
*
dst
++
=
v
>>
(
FIXED32_FRACBITS
-
15
);
}
b
->
i_buffer
/=
2
;
return
b
;
...
...
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