mirror of https://github.com/mstorsjo/fdk-aac.git
Increase patchParam array size by one and fix out-of-bounce write in resetLppTransposer(). am: 2f8c08a4e7
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/aac/+/23497643 Change-Id: I7b204263b83a23c81138a697905553c28fce4dae Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
7eff67a079
|
@ -1,7 +1,7 @@
|
||||||
/* -----------------------------------------------------------------------------
|
/* -----------------------------------------------------------------------------
|
||||||
Software License for The Fraunhofer FDK AAC Codec Library for Android
|
Software License for The Fraunhofer FDK AAC Codec Library for Android
|
||||||
|
|
||||||
© Copyright 1995 - 2018 Fraunhofer-Gesellschaft zur Förderung der angewandten
|
© Copyright 1995 - 2023 Fraunhofer-Gesellschaft zur Förderung der angewandten
|
||||||
Forschung e.V. All rights reserved.
|
Forschung e.V. All rights reserved.
|
||||||
|
|
||||||
1. INTRODUCTION
|
1. INTRODUCTION
|
||||||
|
@ -207,7 +207,7 @@ typedef struct {
|
||||||
inverse filtering levels */
|
inverse filtering levels */
|
||||||
|
|
||||||
PATCH_PARAM
|
PATCH_PARAM
|
||||||
patchParam[MAX_NUM_PATCHES]; /*!< new parameter set for patching */
|
patchParam[MAX_NUM_PATCHES + 1]; /*!< new parameter set for patching */
|
||||||
WHITENING_FACTORS
|
WHITENING_FACTORS
|
||||||
whFactors; /*!< the pole moving factors for certain
|
whFactors; /*!< the pole moving factors for certain
|
||||||
whitening levels as indicated in the bitstream
|
whitening levels as indicated in the bitstream
|
||||||
|
|
Loading…
Reference in New Issue