mirror of
https://github.com/xiph/opus.git
synced 2025-05-29 14:49:14 +00:00
Revert relaxing comparison to 0 for fixed point only
This commit is contained in:
parent
4b21ff9c54
commit
1639592368
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue