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
60ab4480
Commit
60ab4480
authored
May 02, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ape_decode_value_3860: check k before using it in get_bits()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
89372307
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
apedec.c
libavcodec/apedec.c
+5
-2
No files found.
libavcodec/apedec.c
View file @
60ab4480
...
...
@@ -489,9 +489,12 @@ static inline int ape_decode_value_3860(APEContext *ctx, GetBitContext *gb,
if
(
!
rice
->
k
)
x
=
overflow
;
else
else
if
(
rice
->
k
<=
MIN_CACHE_BITS
)
{
x
=
(
overflow
<<
rice
->
k
)
+
get_bits
(
gb
,
rice
->
k
);
}
else
{
av_log
(
ctx
->
avctx
,
AV_LOG_ERROR
,
"Too many bits: %d
\n
"
,
rice
->
k
);
return
AVERROR_INVALIDDATA
;
}
rice
->
ksum
+=
x
-
(
rice
->
ksum
+
8
>>
4
);
if
(
rice
->
ksum
<
(
rice
->
k
?
1
<<
(
rice
->
k
+
4
)
:
0
))
rice
->
k
--
;
...
...
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