mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avcodec/aacdec_template: fix integer overflow in imdct_and_windowing()
Fixes: signed integer overflow: 2147483645 + 4 cannot be represented in type 'int' Fixes: 15418/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_FIXED_fuzzer-5685269069561856 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1ee863a7b0
commit
da93e2b142
@ -2659,7 +2659,7 @@ static void imdct_and_windowing(AACContext *ac, SingleChannelElement *sce)
|
|||||||
ac->mdct.imdct_half(&ac->mdct, buf, in);
|
ac->mdct.imdct_half(&ac->mdct, buf, in);
|
||||||
#if USE_FIXED
|
#if USE_FIXED
|
||||||
for (i=0; i<1024; i++)
|
for (i=0; i<1024; i++)
|
||||||
buf[i] = (buf[i] + 4) >> 3;
|
buf[i] = (buf[i] + 4LL) >> 3;
|
||||||
#endif /* USE_FIXED */
|
#endif /* USE_FIXED */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user