Merge "Prevent energy overflow in acelp calc_period_factor()" am: eb9319afb2 am: 196f1ce484

am: b29fd0db45

Change-Id: Ic3acadc0a8a48485b96075882eebfd867cfc709e
This commit is contained in:
Fraunhofer IIS FDK 2018-12-29 06:25:51 -08:00 committed by android-build-merger
commit b6c47c51b2
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ static FIXP_DBL calc_period_factor(FIXP_DBL exc[], FIXP_SGL gain_pit,
ener_exc = (FIXP_DBL)0;
for (int i = 0; i < L_SUBFR; i++) {
ener_exc += fPow2Div2(exc[i]) >> s;
if (ener_exc > FL2FXCONST_DBL(0.5f)) {
if (ener_exc >= FL2FXCONST_DBL(0.5f)) {
ener_exc >>= 1;
s++;
}