Commit 8a0efa9c authored by Michael Niedermayer's avatar Michael Niedermayer

qdm2: fix incorrect error spam

Fixes Ticket1375
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e47e2369
......@@ -1363,7 +1363,8 @@ static void qdm2_fft_decode_tones (QDM2Context *q, int duration, GetBitContext *
if (q->superblocktype_2_3) {
while ((n = qdm2_get_vlc(gb, &vlc_tab_fft_tone_offset[local_int_8], 1, 2)) < 2) {
if (get_bits_left(gb)<0) {
av_log(0, AV_LOG_ERROR, "overread in qdm2_fft_decode_tones()\n");
if(local_int_4 < q->group_size)
av_log(0, AV_LOG_ERROR, "overread in qdm2_fft_decode_tones()\n");
return;
}
offset = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment