Skip to content

Commit

Permalink
Revert relaxing comparison to 0 for fixed point only
Browse files Browse the repository at this point in the history
  • Loading branch information
felicialim committed Jun 10, 2021
1 parent 4b21ff9 commit 1639592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celt/celt_lpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1639592

Please sign in to comment.