avcodec/ralf: Fix integer overflow in apply_lpc()
Fixes: signed integer overflow: 1603085316 + 1238786562 cannot be represented in type 'int'
Fixes: 16203/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5086088934195200
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit ccca484324)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
8b95d93e07
commit
414144a371
1 changed files with 1 additions and 1 deletions
|
|
@ -323,7 +323,7 @@ static void apply_lpc(RALFContext *ctx, int ch, int length, int bits)
|
|||
|
||||
acc = 0;
|
||||
for (j = 0; j < flen; j++)
|
||||
acc += ctx->filter[j] * audio[i - j - 1];
|
||||
acc += (unsigned)ctx->filter[j] * audio[i - j - 1];
|
||||
if (acc < 0) {
|
||||
acc = (acc + bias - 1) >> ctx->filter_bits;
|
||||
acc = FFMAX(acc, min_clip);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue