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
7d49f79f
Commit
7d49f79f
authored
Sep 14, 2011
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qdm2: check output buffer size before decoding
parent
5a19acb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
qdm2.c
libavcodec/qdm2.c
+9
-2
No files found.
libavcodec/qdm2.c
View file @
7d49f79f
...
@@ -1960,13 +1960,20 @@ static int qdm2_decode_frame(AVCodecContext *avctx,
...
@@ -1960,13 +1960,20 @@ static int qdm2_decode_frame(AVCodecContext *avctx,
int
buf_size
=
avpkt
->
size
;
int
buf_size
=
avpkt
->
size
;
QDM2Context
*
s
=
avctx
->
priv_data
;
QDM2Context
*
s
=
avctx
->
priv_data
;
int16_t
*
out
=
data
;
int16_t
*
out
=
data
;
int
i
;
int
i
,
out_size
;
if
(
!
buf
)
if
(
!
buf
)
return
0
;
return
0
;
if
(
buf_size
<
s
->
checksum_size
)
if
(
buf_size
<
s
->
checksum_size
)
return
-
1
;
return
-
1
;
out_size
=
16
*
s
->
channels
*
s
->
frame_size
*
av_get_bytes_per_sample
(
avctx
->
sample_fmt
);
if
(
*
data_size
<
out_size
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Output buffer is too small
\n
"
);
return
AVERROR
(
EINVAL
);
}
av_log
(
avctx
,
AV_LOG_DEBUG
,
"decode(%d): %p[%d] -> %p[%d]
\n
"
,
av_log
(
avctx
,
AV_LOG_DEBUG
,
"decode(%d): %p[%d] -> %p[%d]
\n
"
,
buf_size
,
buf
,
s
->
checksum_size
,
data
,
*
data_size
);
buf_size
,
buf
,
s
->
checksum_size
,
data
,
*
data_size
);
...
@@ -1976,7 +1983,7 @@ static int qdm2_decode_frame(AVCodecContext *avctx,
...
@@ -1976,7 +1983,7 @@ static int qdm2_decode_frame(AVCodecContext *avctx,
out
+=
s
->
channels
*
s
->
frame_size
;
out
+=
s
->
channels
*
s
->
frame_size
;
}
}
*
data_size
=
(
uint8_t
*
)
out
-
(
uint8_t
*
)
data
;
*
data_size
=
out_size
;
return
s
->
checksum_size
;
return
s
->
checksum_size
;
}
}
...
...
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