Merge "Integer overflow fix in InvMdctTransformLowDelay_fdk()"

This commit is contained in:
Treehugger Robot 2018-11-29 18:43:33 +00:00 committed by Gerrit Code Review
commit d2be744af2
1 changed files with 5 additions and 3 deletions

View File

@ -216,6 +216,7 @@ int InvMdctTransformLowDelay_fdk(FIXP_DBL *mdctData, const int mdctData_e,
int scale = mdctData_e + MDCT_OUT_HEADROOM - int scale = mdctData_e + MDCT_OUT_HEADROOM -
LDFB_HEADROOM; /* The LDFB_HEADROOM is compensated inside LDFB_HEADROOM; /* The LDFB_HEADROOM is compensated inside
multE2_DinvF_fdk() below */ multE2_DinvF_fdk() below */
int i;
/* Select LD window slope */ /* Select LD window slope */
switch (N) { switch (N) {
@ -261,10 +262,11 @@ int InvMdctTransformLowDelay_fdk(FIXP_DBL *mdctData, const int mdctData_e,
} }
if (gain != (FIXP_DBL)0) { if (gain != (FIXP_DBL)0) {
scaleValuesWithFactor(mdctData, gain, N, scale); for (i = 0; i < N; i++) {
} else { mdctData[i] = fMult(mdctData[i], gain);
scaleValues(mdctData, N, scale); }
} }
scaleValuesSaturate(mdctData, N, scale);
/* Since all exponent and factors have been applied, current exponent is zero. /* Since all exponent and factors have been applied, current exponent is zero.
*/ */