summaryrefslogtreecommitdiff
path: root/libavcodec/mv30.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2020-05-20 21:52:23 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2020-06-04 23:58:49 +0200
commite73a25168028fea7ca8a837519c6643875c09cab (patch)
treeed6f3f8e16398207b05fd33557f0d3484b2f62ab /libavcodec/mv30.c
parentc42ed06695848617350a94543823e850f190b3ab (diff)
avcodec/mv30: Do not allow MVs outside the allocated image
Fixes: out of array read Fixes: 21804/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MV30_fuzzer-5673678898724864 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mv30.c')
-rw-r--r--libavcodec/mv30.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mv30.c b/libavcodec/mv30.c
index 7e67133cf7..658f32c6ff 100644
--- a/libavcodec/mv30.c
+++ b/libavcodec/mv30.c
@@ -545,8 +545,8 @@ static int decode_inter(AVCodecContext *avctx, GetBitContext *gb,
int px = x + mv_x;
int py = y + mv_y;
- if (px < 0 || px >= avctx->width ||
- py < 0 || py >= avctx->height)
+ if (px < 0 || px > FFALIGN(avctx->width , 16) - 16 ||
+ py < 0 || py > FFALIGN(avctx->height, 16) - 16)
return AVERROR_INVALIDDATA;
src[0] = prev->data[0] + in_linesize[0] * py + px;