mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/aacdec_template: Fix fixed point scale in decode_cce()
Fixes: runtime error: shift exponent 1073741824 is too large for 32-bit type 'int' Fixes: 1654/clusterfuzz-testcase-minimized-5151903795118080 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a441aa90e8
commit
53a502206a
@ -2181,7 +2181,11 @@ static int decode_cce(AACContext *ac, GetBitContext *gb, ChannelElement *che)
|
|||||||
coup->coupling_point += get_bits1(gb) || (coup->coupling_point >> 1);
|
coup->coupling_point += get_bits1(gb) || (coup->coupling_point >> 1);
|
||||||
|
|
||||||
sign = get_bits(gb, 1);
|
sign = get_bits(gb, 1);
|
||||||
scale = AAC_RENAME(cce_scale)[get_bits(gb, 2)];
|
#if USE_FIXED
|
||||||
|
scale = get_bits(gb, 2);
|
||||||
|
#else
|
||||||
|
scale = cce_scale[get_bits(gb, 2)];
|
||||||
|
#endif
|
||||||
|
|
||||||
if ((ret = decode_ics(ac, sce, gb, 0, 0)))
|
if ((ret = decode_ics(ac, sce, gb, 0, 0)))
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user