mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-19 05:40:56 +00:00
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/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
46082c2b3f
commit
4b72d5cd6f
@ -1157,7 +1157,7 @@ static int ljpeg_decode_yuv_scan(MJpegDecodeContext *s, int predictor,
|
||||
if (s->interlaced && s->bottom_field)
|
||||
ptr16 += linesize >> 1;
|
||||
pred &= mask;
|
||||
*ptr16= pred + (dc << point_transform);
|
||||
*ptr16= pred + ((unsigned)dc << point_transform);
|
||||
}
|
||||
if (++x == h) {
|
||||
x = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user