1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avcodec/aacdec: Fix storing state before PCE decode

Fixes Ticket4460

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2015-04-09 00:04:44 +02:00
parent 32e06c485b
commit e88b3852ae

View File

@@ -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. * Save current output configuration if and only if it has been locked.
*/ */
static void push_output_configuration(AACContext *ac) { 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[0] = ac->oc[1];
} }
ac->oc[1].status = OC_NONE; ac->oc[1].status = OC_NONE;