mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/dxtory: Fix undefined shift with negative linesize
Fixes: left shift of negative value -128 Fixes: 30746/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DXTORY_fuzzer-5906271469436928 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
3072438429
commit
f01d522cf3
|
@ -264,8 +264,8 @@ static int dxtory_decode_v1_420(AVCodecContext *avctx, AVFrame *pic,
|
||||||
V[huvborder] = src[3] + 0x80;
|
V[huvborder] = src[3] + 0x80;
|
||||||
src += 4;
|
src += 4;
|
||||||
}
|
}
|
||||||
Y1 += pic->linesize[0] << 1;
|
Y1 += pic->linesize[0] * 2;
|
||||||
Y2 += pic->linesize[0] << 1;
|
Y2 += pic->linesize[0] * 2;
|
||||||
U += pic->linesize[1];
|
U += pic->linesize[1];
|
||||||
V += pic->linesize[2];
|
V += pic->linesize[2];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue