mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/interplayvideo: check decoding_map_size with video_data_size
Fixes: Timeout (90543 ms -> 59 ms) Fixes: 14721/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INTERPLAY_VIDEO_fuzzer-5697492148027392 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
4896fa18ad
commit
914d6a7c1a
|
@ -1260,7 +1260,7 @@ static int ipvideo_decode_frame(AVCodecContext *avctx,
|
|||
s->decoding_map_size = ((s->avctx->width / 8) * (s->avctx->height / 8)) * 2;
|
||||
s->decoding_map = buf + 8 + 14; /* 14 bits of op data */
|
||||
video_data_size -= s->decoding_map_size + 14;
|
||||
if (video_data_size <= 0)
|
||||
if (video_data_size <= 0 || s->decoding_map_size == 0)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
||||
if (buf_size < 8 + s->decoding_map_size + 14 + video_data_size)
|
||||
|
|
Loading…
Reference in New Issue