Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-06-15 02:35:49 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-21 03:25:23 +0300
commite95fcfe8fb28fdfdaecec465c60aad79bc340a3d (patch)
tree94eea688bbe3c23f84155628907ccc23b2682dc9 /libavcodec/lpc.h
parent19bf50406ebf8bff1be7388da2ed7a85738d055f (diff)
avcodec/lpc: signed integer overflow in compute_lpc_coefs() (aacdec_fixed)
Fixes: runtime error: signed integer overflow: -1575818955 + -915383657 cannot be represented in type 'int' Fixes: 2224/clusterfuzz-testcase-minimized-6208559949807616 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r--libavcodec/lpc.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h
index 182adfa8ca..88ca247f87 100644
--- a/libavcodec/lpc.h
+++ b/libavcodec/lpc.h
@@ -117,11 +117,14 @@ void ff_lpc_end(LPCContext *s);
#if USE_FIXED
typedef int LPC_TYPE;
+typedef unsigned LPC_TYPE_U;
#else
#ifdef LPC_USE_DOUBLE
typedef double LPC_TYPE;
+typedef double LPC_TYPE_U;
#else
typedef float LPC_TYPE;
+typedef float LPC_TYPE_U;
#endif
#endif // USE_FIXED
@@ -192,8 +195,8 @@ static inline int AAC_RENAME(compute_lpc_coefs)(const LPC_TYPE *autoc, int max_o
for(j=0; j < (i+1)>>1; j++) {
LPC_TYPE f = lpc_last[ j];
LPC_TYPE b = lpc_last[i-1-j];
- lpc[ j] = f + AAC_MUL26(r, b);
- lpc[i-1-j] = b + AAC_MUL26(r, f);
+ lpc[ j] = f + (LPC_TYPE_U)AAC_MUL26(r, b);
+ lpc[i-1-j] = b + (LPC_TYPE_U)AAC_MUL26(r, f);
}
if (fail && err < 0)