Commit 57130918 authored by Michael Niedermayer's avatar Michael Niedermayer

mpegaudiodec: Fix buffer handling on random access

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e1681654
......@@ -1416,6 +1416,7 @@ static int mp_decode_layer3(MPADecodeContext *s)
g = &s->granules[ch][gr];
s->last_buf_size += g->part2_3_length;
memset(g->sb_hybrid, 0, sizeof(g->sb_hybrid));
compute_imdct(s, g, &s->sb_samples[ch][18 * gr][0], s->mdct_buf[ch]);
}
}
skip = s->last_buf_size - 8 * main_data_begin;
......
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