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
107e9e44
Commit
107e9e44
authored
May 28, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wavpack: Properly check channel index, dont write out of arrays
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a803ca54
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
wavpack.c
libavcodec/wavpack.c
+5
-5
No files found.
libavcodec/wavpack.c
View file @
107e9e44
...
...
@@ -788,11 +788,6 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
return
AVERROR_INVALIDDATA
;
}
if
(
wc
->
ch_offset
>=
avctx
->
channels
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"too many channels
\n
"
);
return
-
1
;
}
memset
(
s
->
decorr
,
0
,
MAX_TERMS
*
sizeof
(
Decorr
));
memset
(
s
->
ch
,
0
,
sizeof
(
s
->
ch
));
s
->
extra_bits
=
0
;
...
...
@@ -829,6 +824,11 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
s
->
hybrid_minclip
=
((
-
1LL
<<
(
orig_bpp
-
1
)));
s
->
CRC
=
bytestream2_get_le32
(
&
gb
);
if
(
wc
->
ch_offset
+
s
->
stereo
>=
avctx
->
channels
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"too many channels
\n
"
);
return
-
1
;
}
samples_l
=
data
[
wc
->
ch_offset
];
if
(
s
->
stereo
)
samples_r
=
data
[
wc
->
ch_offset
+
1
];
...
...
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