aboutsummaryrefslogtreecommitdiffstats
path: root/libMpegTPDec/src/tpdec_lib.cpp
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2023-10-06 15:19:55 +0300
committerMartin Storsjo <martin@martin.st>2023-10-06 15:19:55 +0300
commit0f91e9ba6061a1ff927be6c5cc9b24587eb8c181 (patch)
treef41005e322ecc4c6538f2a0223ffdac107b7e0b3 /libMpegTPDec/src/tpdec_lib.cpp
parent0bfca3e06a098811a4cb71f285aa4e14e8f81372 (diff)
parent5543791bdc52c6de2f7274b8d5def73996e6d097 (diff)
downloadfdk-aac-0f91e9ba6061a1ff927be6c5cc9b24587eb8c181.tar.gz
fdk-aac-0f91e9ba6061a1ff927be6c5cc9b24587eb8c181.tar.bz2
fdk-aac-0f91e9ba6061a1ff927be6c5cc9b24587eb8c181.zip
Merge remote-tracking branch 'aosp/main'
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) {