mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/truemotion1: Check that the input has enough space for a minimal index_stream
Fixes: Timeout (18sec -> 0.4sec) Fixes: 17585/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TRUEMOTION1_fuzzer-5117015135617024 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9a0d36e562
commit
4a660fac98
@ -444,6 +444,8 @@ static int truemotion1_decode_header(TrueMotion1Context *s)
|
|||||||
if (s->flags & FLAG_KEYFRAME) {
|
if (s->flags & FLAG_KEYFRAME) {
|
||||||
/* no change bits specified for a keyframe; only index bytes */
|
/* no change bits specified for a keyframe; only index bytes */
|
||||||
s->index_stream = s->mb_change_bits;
|
s->index_stream = s->mb_change_bits;
|
||||||
|
if (s->avctx->width * s->avctx->height / 2048 + header.header_size > s->size)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
} else {
|
} else {
|
||||||
/* one change bit per 4x4 block */
|
/* one change bit per 4x4 block */
|
||||||
s->index_stream = s->mb_change_bits +
|
s->index_stream = s->mb_change_bits +
|
||||||
|
Loading…
Reference in New Issue
Block a user