You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-06 06:27:36 +02:00
avcodec/apedec: Fix integer overflow in predictor_decode_stereo_3950()
Fixes: signed integer overflow: 1900031961 + 553590817 cannot be represented in type 'int'
Fixes: 63061/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5166188298371072
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 2def617787
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@ -1284,7 +1284,7 @@ static void predictor_decode_stereo_3950(APEContext *ctx, int count)
|
|||||||
*decoded1++ = a1;
|
*decoded1++ = a1;
|
||||||
if (num_passes > 1) {
|
if (num_passes > 1) {
|
||||||
int32_t left = a1 - (unsigned)(a0 / 2);
|
int32_t left = a1 - (unsigned)(a0 / 2);
|
||||||
int32_t right = left + a0;
|
int32_t right = left + (unsigned)a0;
|
||||||
|
|
||||||
if (FFMAX(FFABS(left), FFABS(right)) > (1<<23)) {
|
if (FFMAX(FFABS(left), FFABS(right)) > (1<<23)) {
|
||||||
ctx->interim_mode = !interim_mode;
|
ctx->interim_mode = !interim_mode;
|
||||||
|
Reference in New Issue
Block a user