Commit cb8db642 authored by kaptnole's avatar kaptnole Committed by Michael Niedermayer

aacdec: Fix Sound fragments after seeking

Fixes Ticket420
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8f37c8f0
......@@ -262,6 +262,23 @@ static av_cold int output_configure(AACContext *ac,
return 0;
}
static void flush(AVCodecContext *avctx)
{
AACContext *ac= avctx->priv_data;
int type, i, j;
for (type = 3; type >= 0; type--) {
for (i = 0; i < MAX_ELEM_ID; i++) {
ChannelElement *che = ac->che[type][i];
if (che) {
for (j = 0; j <= 1; j++) {
memset(che->ch[j].saved, 0, sizeof(che->ch[j].saved));
}
}
}
}
}
/**
* Decode an array of 4 bit element IDs, optionally interleaved with a stereo/mono switching bit.
*
......@@ -2589,4 +2606,5 @@ AVCodec ff_aac_latm_decoder = {
},
.capabilities = CODEC_CAP_CHANNEL_CONF,
.channel_layouts = aac_channel_layout,
.flush = flush,
};
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