mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-02-18 04:00:36 +01:00
Merge "Prevent energy overflow in acelp calc_period_factor()"
am: eb9319afb2 Change-Id: Ic02c1abe8a36b5860242a8a475a68c3012c3873d
This commit is contained in:
commit
196f1ce484
@ -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++;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user