aboutsummaryrefslogtreecommitdiffstats
path: root/libMpegTPDec/src/tpdec_lib.cpp
diff options
context:
space:
mode:
authorFraunhofer IIS FDK <audio-fdk@iis.fraunhofer.de>2022-04-06 05:05:51 +0000
committerPresubmit Automerger Backend <android-build-presubmit-automerger-backend@system.gserviceaccount.com>2022-04-06 05:05:51 +0000
commit50d66655caffd198c482e434ea7c631d9b83e632 (patch)
tree36ed26c9ff30a555b56f75133acc07e393115f03 /libMpegTPDec/src/tpdec_lib.cpp
parent26eed59258d1a172c7bcfcdf9c562c7d50b5d726 (diff)
parent23ef1ac38c2dae4cd755880fc8f98491efd26027 (diff)
downloadfdk-aac-50d66655caffd198c482e434ea7c631d9b83e632.tar.gz
fdk-aac-50d66655caffd198c482e434ea7c631d9b83e632.tar.bz2
fdk-aac-50d66655caffd198c482e434ea7c631d9b83e632.zip
[automerge] Reject invalid out of band config in transportDec_OutOfBandConfig() and skip re-allocation. 2p: 23ef1ac38c
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/aac/+/17615057 Bug: 224314979 Bug: 221734266 Change-Id: I5ec75e235f096a4e8bd7e82ea3bf5f99353078af Merged-In: I64e7fe1b258be2f59c6d39c0b7b699fa881d79e6
Diffstat (limited to 'libMpegTPDec/src/tpdec_lib.cpp')
-rw-r--r--libMpegTPDec/src/tpdec_lib.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/libMpegTPDec/src/tpdec_lib.cpp b/libMpegTPDec/src/tpdec_lib.cpp
index 091d011..8cd9cb0 100644
--- a/libMpegTPDec/src/tpdec_lib.cpp
+++ b/libMpegTPDec/src/tpdec_lib.cpp
@@ -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) {