diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-09 00:04:44 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-09 00:42:25 +0200 |
commit | e88b3852aefaa39b2170ef185ad03dda18732821 (patch) | |
tree | 570a0ac071968b2f6729baad512e78912c5c46eb /libavcodec/aacdec.c | |
parent | 32e06c485be94a4967bff87022cbb065d3cbfd0d (diff) | |
download | ffmpeg-e88b3852aefaa39b2170ef185ad03dda18732821.tar.gz |
avcodec/aacdec: Fix storing state before PCE decode
Fixes Ticket4460
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index daec5bc355..5a0c05a686 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -424,7 +424,7 @@ static uint64_t sniff_channel_order(uint8_t (*layout_map)[3], int tags) * Save current output configuration if and only if it has been locked. */ static void push_output_configuration(AACContext *ac) { - if (ac->oc[1].status == OC_LOCKED) { + if (ac->oc[1].status == OC_LOCKED || ac->oc[0].status == OC_NONE) { ac->oc[0] = ac->oc[1]; } ac->oc[1].status = OC_NONE; |