mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/mpeg12dec: Fix runtime error: left shift of negative value -1
Fixes: 764/clusterfuzz-testcase-6273034652483584
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit a720b854b0
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
f46482f00c
commit
570826b632
|
@ -1046,7 +1046,7 @@ static int mpeg_decode_mb(MpegEncContext *s, int16_t block[12][64])
|
|||
|
||||
cbp = get_vlc2(&s->gb, ff_mb_pat_vlc.table, MB_PAT_VLC_BITS, 1);
|
||||
if (mb_block_count > 6) {
|
||||
cbp <<= mb_block_count - 6;
|
||||
cbp *= 1 << mb_block_count - 6;
|
||||
cbp |= get_bits(&s->gb, mb_block_count - 6);
|
||||
s->bdsp.clear_blocks(s->block[6]);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue