Skip to content

Commit 1639592

Browse files
committed
Revert relaxing comparison to 0 for fixed point only
1 parent 4b21ff9 commit 1639592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

celt/celt_lpc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ int p
5151

5252
OPUS_CLEAR(lpc, p);
5353
#ifdef FIXED_POINT
54-
if (ac[0] > QCONST32(0.001f, 31))
54+
if (ac[0] != 0)
5555
#else
5656
if (ac[0] > 1e-10f)
5757
#endif

0 commit comments

Comments
 (0)