summaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-10-01 00:16:20 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-10-20 19:57:51 +0200
commit44b73a0568f8ad5993ec79b29873151f316bf95c (patch)
tree7d7764f6a0e34ffa0c3a5460bead2ea65db34bcc /libavcodec
parenta76897e19ca96127e07f5acc5a773b904dcf6124 (diff)
downloadffmpeg-streaming-44b73a0568f8ad5993ec79b29873151f316bf95c.zip
ffmpeg-streaming-44b73a0568f8ad5993ec79b29873151f316bf95c.tar.gz
avcodec/alac: Fix integer overflow in LPC
Fixes: signed integer overflow: 2147483628 + 128 cannot be represented in type 'int' Fixes: 17783/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALAC_fuzzer-5146470595952640 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')
-rw-r--r--libavcodec/alac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c
index fbe4275..09decb8 100644
--- a/libavcodec/alac.c
+++ b/libavcodec/alac.c
@@ -215,7 +215,7 @@ static void lpc_prediction(int32_t *error_buffer, uint32_t *buffer_out,
/* LPC prediction */
for (j = 0; j < lpc_order; j++)
val += (pred[j] - d) * lpc_coefs[j];
- val = (val + (1 << (lpc_quant - 1))) >> lpc_quant;
+ val = (val + (1LL << (lpc_quant - 1))) >> lpc_quant;
val += d + error_val;
buffer_out[i] = sign_extend(val, bps);
OpenPOWER on IntegriCloud