mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/mpeg12dec: Fix runtime error: left shift of negative value -13
Fixes: 709/clusterfuzz-testcase-4789836449841152 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
ab998f4c7f
commit
d757ddbaab
@ -497,7 +497,7 @@ static inline int mpeg2_decode_block_intra(MpegEncContext *s,
|
||||
dc = s->last_dc[component];
|
||||
dc += diff;
|
||||
s->last_dc[component] = dc;
|
||||
block[0] = dc << (3 - s->intra_dc_precision);
|
||||
block[0] = dc * (1 << (3 - s->intra_dc_precision));
|
||||
ff_tlog(s->avctx, "dc=%d\n", block[0]);
|
||||
mismatch = block[0] ^ 1;
|
||||
i = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user