mirror of https://github.com/mstorsjo/fdk-aac.git
Increase patchParam array size by one and fix out-of-bounce write in resetLppTransposer().
Bug: 279766766 Test: see POC Change-Id: I206973e0bb21140865efffd930e39f920f477359 Merged-In: I206973e0bb21140865efffd930e39f920f477359 (cherry picked from commit f682b8787eb312b9f8997dac4c2c18bb779cf0df)
This commit is contained in:
parent
9192d46a8a
commit
2f8c08a4e7
|
@ -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