Commit 0bc5d4fd authored by Michael Niedermayer's avatar Michael Niedermayer

aacdec: fix channel reconfigs on LATM

Fixes Ticket200
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b6aaa6d9
......@@ -2313,6 +2313,7 @@ static int latm_decode_audio_specific_config(struct LATMContext *latmctx,
{
AVCodecContext *avctx = latmctx->aac_ctx.avctx;
MPEG4AudioConfig m4ac;
AACContext *ac= &latmctx->aac_ctx;
int config_start_bit = get_bits_count(gb);
int bits_consumed, esize;
......@@ -2322,12 +2323,13 @@ static int latm_decode_audio_specific_config(struct LATMContext *latmctx,
return AVERROR_INVALIDDATA;
} else {
bits_consumed =
decode_audio_specific_config(NULL, avctx, &m4ac,
decode_audio_specific_config(ac, avctx, &m4ac,
gb->buffer + (config_start_bit / 8),
get_bits_left(gb) / 8, asclen);
if (bits_consumed < 0)
return AVERROR_INVALIDDATA;
ac->m4ac= m4ac;
esize = (bits_consumed+7) / 8;
......
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