mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-19 05:49:09 +02:00
avcodec/takdec: Fix integer overflow in decorrelate()
Fixes: signed integer overflow: -2424832 - 2145653689 cannot be represented in type 'int' Fixes: 16138/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TAK_fuzzer-5643451346976768 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 f1192736494a5b16717de66da4a3d3c6af0e9a7a) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
089b1e1677
commit
da76ca5551
@ -653,7 +653,7 @@ static int decorrelate(TAKDecContext *s, int c1, int c2, int length)
|
||||
s->residues[i ] * s->filter[0];
|
||||
}
|
||||
|
||||
v = av_clip_intp2(v >> 10, 13) * (1 << dshift) - *p1;
|
||||
v = av_clip_intp2(v >> 10, 13) * (1U << dshift) - *p1;
|
||||
*p1++ = v;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user