diff options
author | Max Kellermann <max@duempel.org> | 2013-10-30 17:06:40 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-30 17:20:12 +0100 |
commit | c6f101884b282a938c9c996ff613153520367b2a (patch) | |
tree | 63e7d311c500281c7a451f86f0cc433d9233e24a /test | |
parent | c0c0526fc8076cff6e6dfd13b3e950898b405286 (diff) | |
download | mpd-c6f101884b282a938c9c996ff613153520367b2a.tar.gz mpd-c6f101884b282a938c9c996ff613153520367b2a.tar.xz mpd-c6f101884b282a938c9c996ff613153520367b2a.zip |
CrossFade: use negative value for invalid MixRamp overlap
Avoid NaN to allow -ffast-math.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_mixramp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_mixramp.cxx b/test/test_mixramp.cxx index 74d49dd87..0dc67db77 100644 --- a/test/test_mixramp.cxx +++ b/test/test_mixramp.cxx @@ -43,7 +43,7 @@ public: free(foo); foo = strdup(input); - CPPUNIT_ASSERT(std::isnan(mixramp_interpolate(foo, 6.1))); + CPPUNIT_ASSERT(mixramp_interpolate(foo, 6.1) < 0); free(foo); foo = strdup(input); |