diff options
author | Max Kellermann <max@duempel.org> | 2014-03-15 10:49:50 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-03-15 10:53:13 +0100 |
commit | 3932e62fc7d8bc05e4f77c1b3cd69fd314cee3d1 (patch) | |
tree | c14b8ff0404fad7c68a058ad1b301dbe9b326a21 /test/test_pcm_mix.cxx | |
parent | 729304aef54ddecfb124c168ec1160f3bf970a47 (diff) |
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_mix.cxx')
-rw-r--r-- | test/test_pcm_mix.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pcm_mix.cxx b/test/test_pcm_mix.cxx index 65d009050..973b58f4d 100644 --- a/test/test_pcm_mix.cxx +++ b/test/test_pcm_mix.cxx @@ -27,7 +27,7 @@ template<typename T, SampleFormat format, typename G=RandomInt<T>> static void TestPcmMix(G g=G()) { - constexpr unsigned N = 256; + constexpr unsigned N = 509; const auto src1 = TestDataBuffer<T, N>(g); const auto src2 = TestDataBuffer<T, N>(g); |