mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-01 08:21:02 +00:00
avcodec/wavarc: fix integer overflow in decode_5elp() block type 2
Fixes: signed integer overflow: 2097152000 + 107142979 cannot be represented in type 'int' Fixes: 67919/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVARC_fuzzer-5955101769400320 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1330a73cca
commit
a2ec2bd493
@ -689,7 +689,7 @@ static int decode_5elp(AVCodecContext *avctx,
|
|||||||
for (int o = 0; o < order; o++)
|
for (int o = 0; o < order; o++)
|
||||||
sum += s->filter[ch][o] * (unsigned)samples[n + 70 - o - 1];
|
sum += s->filter[ch][o] * (unsigned)samples[n + 70 - o - 1];
|
||||||
|
|
||||||
samples[n + 70] += ac_out[n] + (sum >> 4);
|
samples[n + 70] += ac_out[n] + (unsigned)(sum >> 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int n = 0; n < 70; n++)
|
for (int n = 0; n < 70; n++)
|
||||||
|
Loading…
Reference in New Issue
Block a user