diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-07-02 03:30:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-07-08 23:45:41 +0200 |
commit | 2061de8a3f73f14806e5f6ccaf9a635f740a54e6 (patch) | |
tree | b6cfe9420baf06b9864319c990201ea12073a249 /libavcodec | |
parent | 3fa8f263abf90650b62d43cb532cdb8cc5bd7c13 (diff) | |
download | ffmpeg-2061de8a3f73f14806e5f6ccaf9a635f740a54e6.tar.gz |
avcodec/sbrdsp_fixed: Fix integer overflow in sbr_hf_apply_noise()
Fixes: runtime error: signed integer overflow: -2049425300 + -117591631 cannot be represented in type 'int'
Fixes: part of 2096/clusterfuzz-testcase-minimized-4901566068817920
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/sbrdsp_fixed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/sbrdsp_fixed.c b/libavcodec/sbrdsp_fixed.c index 218bb1acd8..fe48104021 100644 --- a/libavcodec/sbrdsp_fixed.c +++ b/libavcodec/sbrdsp_fixed.c @@ -264,8 +264,8 @@ static av_always_inline int sbr_hf_apply_noise(int (*Y)[2], int m; for (m = 0; m < m_max; m++) { - int y0 = Y[m][0]; - int y1 = Y[m][1]; + unsigned y0 = Y[m][0]; + unsigned y1 = Y[m][1]; noise = (noise + 1) & 0x1ff; if (s_m[m].mant) { int shift, round; |