summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-10-06 22:28:33 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2023-03-27 13:37:11 +0200
commit486bba4698b133ed02dd736c6a9dd5aab648e259 (patch)
treef8dc169b8823c28134d973058a8dbf8b79f2f959
parent100c16ace34d4d00d930c4379754608e139eb602 (diff)
downloadffmpeg-486bba4698b133ed02dd736c6a9dd5aab648e259.tar.gz
avcodec/speedhq: Check buf_size to be big enough for DC
Fixes: Timeout Fixes: 51919/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SPEEDHQ_fuzzer-6023716480090112 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 9184d3d7b64459e975f26284a7b2e26cbf76480b) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/speedhq.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/speedhq.c b/libavcodec/speedhq.c
index 128663ab75..229882761c 100644
--- a/libavcodec/speedhq.c
+++ b/libavcodec/speedhq.c
@@ -499,6 +499,8 @@ static int speedhq_decode_frame(AVCodecContext *avctx,
if (buf_size < 4 || avctx->width < 8 || avctx->width % 8 != 0)
return AVERROR_INVALIDDATA;
+ if (buf_size < avctx->width*avctx->height / 64 / 4)
+ return AVERROR_INVALIDDATA;
quality = buf[0];
if (quality >= 100) {