summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2023-01-06 23:36:12 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2023-02-22 19:48:31 +0100
commit9057d347481711348442879304090bc65635eeec (patch)
tree87c26bc4f02830db05c38d67468aeb1421cd364a
parentaf6919486bfe13800e6b8734575b3fefafe713c6 (diff)
downloadffmpeg-9057d347481711348442879304090bc65635eeec.tar.gz
avcodec/eac3dec: avoid float noise in fixed mode addition to overflow
Fixes: 2.28595e+09 is outside the range of representable values of type 'int' Fixes: 54644/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-4816961584627712 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 2f48d227c153fa6f0a2156f3e8d18ea1bfedf18d) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/ac3.h2
-rw-r--r--libavcodec/eac3dec.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/ac3.h b/libavcodec/ac3.h
index 29f9f9df8d..378e9a7d95 100644
--- a/libavcodec/ac3.h
+++ b/libavcodec/ac3.h
@@ -55,6 +55,7 @@
#define AC3_DYNAMIC_RANGE1 0
typedef int INTFLOAT;
+typedef unsigned int UINTFLOAT;
typedef int16_t SHORTFLOAT;
#else /* USE_FIXED */
@@ -75,6 +76,7 @@ typedef int16_t SHORTFLOAT;
#define AC3_DYNAMIC_RANGE1 1.0f
typedef float INTFLOAT;
+typedef float UINTFLOAT;
typedef float SHORTFLOAT;
#endif /* USE_FIXED */
diff --git a/libavcodec/eac3dec.c b/libavcodec/eac3dec.c
index d360b02691..deca51dd3d 100644
--- a/libavcodec/eac3dec.c
+++ b/libavcodec/eac3dec.c
@@ -138,9 +138,11 @@ static void ff_eac3_apply_spectral_extension(AC3DecodeContext *s)
// spx_noise_blend and spx_signal_blend are both FP.23
nscale *= 1.0 / (1<<23);
sscale *= 1.0 / (1<<23);
+ if (nscale < -1.0)
+ nscale = -1.0;
#endif
for (i = 0; i < s->spx_band_sizes[bnd]; i++) {
- float noise = nscale * (int32_t)av_lfg_get(&s->dith_state);
+ UINTFLOAT noise = (INTFLOAT)(nscale * (int32_t)av_lfg_get(&s->dith_state));
s->transform_coeffs[ch][bin] *= sscale;
s->transform_coeffs[ch][bin++] += noise;
}