Browse Source

vcodec/apedec: Fix integer overflow in filter_3800()

Fixes: signed integer overflow: 2021654528 + 2032575680 cannot be represented in type 'int'
Fixes: 16270/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_APE_fuzzer-5732438816325632

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n4.3
Michael Niedermayer 6 years ago
parent
commit
8ae5d2cbb2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/apedec.c

+ 1
- 1
libavcodec/apedec.c View File

@@ -842,7 +842,7 @@ static av_always_inline int filter_fast_3320(APEPredictor *p,
}

static av_always_inline int filter_3800(APEPredictor *p,
const int decoded, const int filter,
const unsigned decoded, const int filter,
const int delayA, const int delayB,
const int start, const int shift)
{


Loading…
Cancel
Save