]> git.sesse.net Git - ffmpeg/commit
avcodec/alac: Check decorr_shift to avoid invalid shift
authorMichael Niedermayer <michael@niedermayer.cc>
Thu, 23 Jul 2020 21:41:27 +0000 (23:41 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Fri, 24 Jul 2020 20:34:15 +0000 (22:34 +0200)
commit4333718b357a9ad195031e5d0ea080d37677b795
tree1417c943981201ede0621f9d85a6d178cf3d21cd
parent21442a820aec365fc298d9a89d564db7ef866d86
avcodec/alac: Check decorr_shift to avoid invalid shift

Later the decorrelate_stereo call is guarded by channels == 2
and non-zero decorr_left_weight. Make sure decorr_shift is in
the expected shift range for that case.

Fixes: shift exponent 128 is too large for 32-bit type 'int'
Fixes: 23860/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ALAC_fuzzer-5751138914402304
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Alexander Strasser <eclipse7@gmx.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/alac.c