Commit b8a0be93 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/wmalosslessdec: Fix integer overflow with sliding in padding bits

Fixes: signed integer overflow: -53716100 * 256 cannot be represented in type 'int'
Fixes: 20143/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMALOSSLESS_fuzzer-5716604000403456

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 5584c0bb
......@@ -992,7 +992,7 @@ static int decode_subframe(WmallDecodeCtx *s)
if (s->bits_per_sample == 16) {
*s->samples_16[c]++ = (int16_t) s->channel_residues[c][j] * (1 << padding_zeroes);
} else {
*s->samples_32[c]++ = s->channel_residues[c][j] * (256 << padding_zeroes);
*s->samples_32[c]++ = s->channel_residues[c][j] * (256U << padding_zeroes);
}
}
}
......
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