mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avcodec/qdm2: Check fft_coefs_index
Fixes: out of array access Fixes: 20660/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_QDM2_fuzzer-5658290216501248 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 9fc73bf022eb781eea7f685e2d2e9de4ba8898ca) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
c901cc287f
commit
ec3635caf6
@ -1334,6 +1334,9 @@ static void qdm2_fft_decode_tones(QDM2Context *q, int duration,
|
||||
if (q->frequency_range > (local_int_14 + 1)) {
|
||||
int sub_packet = (local_int_20 + local_int_28);
|
||||
|
||||
if (q->fft_coefs_index + stereo >= FF_ARRAY_ELEMS(q->fft_coefs))
|
||||
return;
|
||||
|
||||
qdm2_fft_init_coefficient(q, sub_packet, offset, duration,
|
||||
channel, exp, phase);
|
||||
if (stereo)
|
||||
|
Loading…
x
Reference in New Issue
Block a user