Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
4012fe1e
Commit
4012fe1e
authored
Apr 21, 2016
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ape: Unbreak adaptcoeffs computation
And simplify and explain the expression. Fault introduced in
f3fdef10
parent
2e5bde95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
apedec.c
libavcodec/apedec.c
+10
-2
No files found.
libavcodec/apedec.c
View file @
4012fe1e
...
...
@@ -1305,8 +1305,16 @@ static void do_apply_filter(APEContext *ctx, int version, APEFilter *f,
/* Update the adaption coefficients */
absres
=
FFABS
(
res
);
if
(
absres
)
*
f
->
adaptcoeffs
=
((
res
&
((
~
0UL
)
<<
31
))
^
((
~
0UL
)
<<
30
))
>>
(
25
+
(
absres
<=
f
->
avg
*
3
)
+
(
absres
<=
f
->
avg
*
4
/
3
));
*
f
->
adaptcoeffs
=
APESIGN
(
res
)
*
(
8
<<
((
absres
>
f
->
avg
*
3
)
+
(
absres
>
f
->
avg
*
4
/
3
)));
/* equivalent to the following code
if (absres <= f->avg * 4 / 3)
*f->adaptcoeffs = APESIGN(res) * 8;
else if (absres <= f->avg * 3)
*f->adaptcoeffs = APESIGN(res) * 16;
else
*f->adaptcoeffs = APESIGN(res) * 32;
*/
else
*
f
->
adaptcoeffs
=
0
;
...
...
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