ref: 1639592368fc2dadc82d63f3be6f17ed0b554d71
parent: 4b21ff9c5421ac563b57275b99665d721a0b5ed3
author: Felicia Lim <flim@google.com>
date: Thu Jun 10 07:54:55 EDT 2021
Revert relaxing comparison to 0 for fixed point only
--- a/celt/celt_lpc.c
+++ b/celt/celt_lpc.c
@@ -51,7 +51,7 @@
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