avcodec/8bps: Consider width in the minimal size check
Fixes: Timeout Fixes: 64479/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EIGHTBPS_fuzzer-5434435386081280 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
cc95fd4531
commit
5db09574df
@ -63,7 +63,7 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *frame,
|
|||||||
unsigned int planes = c->planes;
|
unsigned int planes = c->planes;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (buf_size < planes * height * 2)
|
if (buf_size < planes * height * (2 + 2*((avctx->width+128)/129)))
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
|
if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user