mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/wavpack: Fix runtime error: signed integer overflow: 2147483642 + 512 cannot be represented in type 'int'
Fixed: 1453/clusterfuzz-testcase-minimized-5024976874766336 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
2171dfae8c
commit
48f7757749
@ -433,8 +433,8 @@ static inline int wv_unpack_stereo(WavpackFrameContext *s, GetBitContext *gb,
|
||||
L2 = L + ((s->decorr[i].weightA * (int64_t)A + 512) >> 10);
|
||||
R2 = R + ((s->decorr[i].weightB * (int64_t)B + 512) >> 10);
|
||||
} else {
|
||||
L2 = L + ((s->decorr[i].weightA * A + 512) >> 10);
|
||||
R2 = R + ((s->decorr[i].weightB * B + 512) >> 10);
|
||||
L2 = L + ((int)(s->decorr[i].weightA * A + 512U) >> 10);
|
||||
R2 = R + ((int)(s->decorr[i].weightB * B + 512U) >> 10);
|
||||
}
|
||||
if (A && L)
|
||||
s->decorr[i].weightA -= ((((L ^ A) >> 30) & 2) - 1) * s->decorr[i].delta;
|
||||
|
Loading…
Reference in New Issue
Block a user