1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-03-07 11:47:36 +01:00

Snap for 8417597 from f02e2ba58f6c161ea1792ed180242ba7d6b849e0 to sc-qpr3-release

Change-Id: Iede59048bfac7adc5daa9359fed3c2295873637c
This commit is contained in:
Android Build Coastguard Worker 2022-04-07 23:03:13 +00:00
commit 67dcccc111

@ -1,7 +1,7 @@
/* -----------------------------------------------------------------------------
Software License for The Fraunhofer FDK AAC Codec Library for Android
© Copyright 1995 - 2019 Fraunhofer-Gesellschaft zur Förderung der angewandten
© Copyright 1995 - 2022 Fraunhofer-Gesellschaft zur Förderung der angewandten
Forschung e.V. All rights reserved.
1. INTRODUCTION
@ -351,6 +351,12 @@ TRANSPORTDEC_ERROR transportDec_OutOfBandConfig(HANDLE_TRANSPORTDEC hTp,
}
}
}
/* if an error is detected terminate config parsing to avoid that an invalid
* config is accepted in the second pass */
if (err != TRANSPORTDEC_OK) {
break;
}
}
if (err == TRANSPORTDEC_OK && fConfigFound) {