mirror of
https://github.com/xiph/opus.git
synced 2025-06-02 00:27:43 +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);
|
OPUS_CLEAR(lpc, p);
|
||||||
#ifdef FIXED_POINT
|
#ifdef FIXED_POINT
|
||||||
if (ac[0] > QCONST32(0.001f, 31))
|
if (ac[0] != 0)
|
||||||
#else
|
#else
|
||||||
if (ac[0] > 1e-10f)
|
if (ac[0] > 1e-10f)
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue