try to silence stupid compiler

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8177 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-04-23 16:49:34 +00:00
parent 0564d81e09
commit 7ae460ea23
1 changed files with 2 additions and 2 deletions

View File

@ -445,8 +445,8 @@ static int pitsyn(lpc10_decode_state_t *s,
xxy = expf(xxy);
rci[j + *nout*rci_dim1 + 1] = (xxy - 1.0f)/(xxy + 1.0f);
}
f = logf(*rms) - logf(s->rmso);
rmsi[*nout - 1] = logf(s->rmso) + prop * f;
f = ((logf(*rms)) - (logf(s->rmso)));
rmsi[*nout - 1] = logf(s->rmso) + (prop * f);
rmsi[*nout - 1] = expf(rmsi[*nout - 1]);
}
}