1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-02-06 18:53:31 +01:00

Snap for 5180536 from 75987acc798db1fe03002d04500dac994eb6d20c to pi-platform-release

Change-Id: I5ebe5584689c6ac68fa82bef53068d114d4fc91f
This commit is contained in:
android-build-team Robot 2019-02-09 02:17:39 +00:00
commit 44e7ae4d1e

View File

@ -2080,11 +2080,11 @@ static void CConcealment_TDNoise_Apply(CConcealmentInfo *const pConcealmentInfo,
noiseVal = FX_DBL2FX_PCM(fMult(noiseValLong, TDNoiseAtt));
/* add filtered noise - check for clipping, before */
if (pcmdata[ii] > (FIXP_PCM)MAXVAL_FIXP_PCM - noiseVal &&
noiseVal > (FIXP_PCM)0) {
if (noiseVal > (FIXP_PCM)0 &&
pcmdata[ii] > (FIXP_PCM)MAXVAL_FIXP_PCM - noiseVal) {
noiseVal = noiseVal * (FIXP_PCM)-1;
} else if (pcmdata[ii] < (FIXP_PCM)MINVAL_FIXP_PCM - noiseVal &&
noiseVal < (FIXP_PCM)0) {
} else if (noiseVal < (FIXP_PCM)0 &&
pcmdata[ii] < (FIXP_PCM)MINVAL_FIXP_PCM - noiseVal) {
noiseVal = noiseVal * (FIXP_PCM)-1;
}