Revert relaxing comparison to 0 for fixed point only

This commit is contained in:
Felicia Lim 2021-06-10 11:54:55 -07:00
parent 4b21ff9c54
commit 1639592368
No known key found for this signature in database
GPG key ID: FDBB8534FAD78B08

View file

@ -51,7 +51,7 @@ int p
OPUS_CLEAR(lpc, p);
#ifdef FIXED_POINT
if (ac[0] > QCONST32(0.001f, 31))
if (ac[0] != 0)
#else
if (ac[0] > 1e-10f)
#endif