aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pcm_dither.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-03-15 10:49:50 +0100
committerMax Kellermann <max@duempel.org>2014-03-15 10:53:13 +0100
commit3932e62fc7d8bc05e4f77c1b3cd69fd314cee3d1 (patch)
treec14b8ff0404fad7c68a058ad1b301dbe9b326a21 /test/test_pcm_dither.cxx
parent729304aef54ddecfb124c168ec1160f3bf970a47 (diff)
downloadmpd-3932e62fc7d8bc05e4f77c1b3cd69fd314cee3d1.tar.gz
mpd-3932e62fc7d8bc05e4f77c1b3cd69fd314cee3d1.tar.xz
mpd-3932e62fc7d8bc05e4f77c1b3cd69fd314cee3d1.zip
test/test_pcm: replace 256 with prime number
Use some odd number that will expose problems with remaining samples after optimized vector operations.
Diffstat (limited to 'test/test_pcm_dither.cxx')
-rw-r--r--test/test_pcm_dither.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pcm_dither.cxx b/test/test_pcm_dither.cxx
index 6751d94fe..09a2b5cf9 100644
--- a/test/test_pcm_dither.cxx
+++ b/test/test_pcm_dither.cxx
@@ -24,7 +24,7 @@
void
PcmDitherTest::TestDither24()
{
- constexpr unsigned N = 256;
+ constexpr unsigned N = 509;
const auto src = TestDataBuffer<int32_t, N>(RandomInt24());
int16_t dest[N];
@@ -40,7 +40,7 @@ PcmDitherTest::TestDither24()
void
PcmDitherTest::TestDither32()
{
- constexpr unsigned N = 256;
+ constexpr unsigned N = 509;
const auto src = TestDataBuffer<int32_t, N>();
int16_t dest[N];