Commit 4b72d5cd authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mjpegdec: Fix runtime error: left shift of negative value -511

Fixes: 693/clusterfuzz-testcase-6109776066904064

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 46082c2b
...@@ -1157,7 +1157,7 @@ static int ljpeg_decode_yuv_scan(MJpegDecodeContext *s, int predictor, ...@@ -1157,7 +1157,7 @@ static int ljpeg_decode_yuv_scan(MJpegDecodeContext *s, int predictor,
if (s->interlaced && s->bottom_field) if (s->interlaced && s->bottom_field)
ptr16 += linesize >> 1; ptr16 += linesize >> 1;
pred &= mask; pred &= mask;
*ptr16= pred + (dc << point_transform); *ptr16= pred + ((unsigned)dc << point_transform);
} }
if (++x == h) { if (++x == h) {
x = 0; x = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment