mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-17 13:04:50 +00:00
qdm2: fix incorrect error spam
Fixes Ticket1375 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e47e23698b
commit
8a0efa9cc0
@ -1363,7 +1363,8 @@ static void qdm2_fft_decode_tones (QDM2Context *q, int duration, GetBitContext *
|
|||||||
if (q->superblocktype_2_3) {
|
if (q->superblocktype_2_3) {
|
||||||
while ((n = qdm2_get_vlc(gb, &vlc_tab_fft_tone_offset[local_int_8], 1, 2)) < 2) {
|
while ((n = qdm2_get_vlc(gb, &vlc_tab_fft_tone_offset[local_int_8], 1, 2)) < 2) {
|
||||||
if (get_bits_left(gb)<0) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
offset = 1;
|
offset = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user