summaryrefslogtreecommitdiff
path: root/celt
diff options
context:
space:
mode:
authorFelicia Lim <flim@google.com>2021-06-10 11:54:55 -0700
committerFelicia Lim <flim@google.com>2021-06-10 11:54:55 -0700
commit1639592368fc2dadc82d63f3be6f17ed0b554d71 (patch)
tree2d6405335bee98423c2083a4a450fc3b4dd6321a /celt
parent4b21ff9c5421ac563b57275b99665d721a0b5ed3 (diff)
downloadopus-1639592368fc2dadc82d63f3be6f17ed0b554d71.tar.gz
Revert relaxing comparison to 0 for fixed point only
Diffstat (limited to 'celt')
-rw-r--r--celt/celt_lpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/celt/celt_lpc.c b/celt/celt_lpc.c
index 5ac54b27..242e6df5 100644
--- a/celt/celt_lpc.c
+++ b/celt/celt_lpc.c
@@ -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