diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-22 12:35:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-08-11 19:13:21 +0200 |
commit | b153ba1c2e03d3148766a3ebf0e9c485197f30de (patch) | |
tree | 4652cb8193c75ac1e8ae968eb42a40f052555291 | |
parent | da93e2b14218c4ab0fda60e21882a4633aac5748 (diff) | |
download | ffmpeg-b153ba1c2e03d3148766a3ebf0e9c485197f30de.tar.gz |
avcodec/vc1_block: fix invalid shift in vc1_decode_p_mb()
Fixes: left shift of negative value -5
Fixes: 15294/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VC1_fuzzer-5733921754447872
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/vc1_block.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1_block.c b/libavcodec/vc1_block.c index 97c873f138..7883e4f19c 100644 --- a/libavcodec/vc1_block.c +++ b/libavcodec/vc1_block.c @@ -1378,7 +1378,7 @@ static int vc1_decode_p_mb(VC1Context *v) v->vc1dsp.vc1_inv_trans_8x8(v->block[v->cur_blk_idx][block_map[i]]); if (v->rangeredfrm) for (j = 0; j < 64; j++) - v->block[v->cur_blk_idx][block_map[i]][j] <<= 1; + v->block[v->cur_blk_idx][block_map[i]][j] *= 2; block_cbp |= 0xF << (i << 2); block_intra |= 1 << i; } else if (val) { |