Skip to content
Snippets Groups Projects
Unverified Commit 16395923 authored by Felicia Lim's avatar Felicia Lim
Browse files

Revert relaxing comparison to 0 for fixed point only

parent 4b21ff9c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment