summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorkaptnole <kaptnole@freenet.de>2011-11-26 14:37:39 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-11-26 14:37:39 +0100
commitcb8db6423ae9b454944b150b564d079f46276f01 (patch)
tree28950b47a7a9cbbc0750ff2807f7b02a754f072b /libavcodec
parent8f37c8f0f80d64ef8e870180d4e285affcee812f (diff)
aacdec: Fix Sound fragments after seeking
Fixes Ticket420 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/aacdec.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index b7f21e0c11..5a2b230d24 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -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,
};