diff options
Diffstat (limited to 'test/test_pcm_pack.cxx')
-rw-r--r-- | test/test_pcm_pack.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pcm_pack.cxx b/test/test_pcm_pack.cxx index 161e13145..fff3e10f0 100644 --- a/test/test_pcm_pack.cxx +++ b/test/test_pcm_pack.cxx @@ -25,7 +25,7 @@ void PcmPackTest::TestPack24() { - constexpr unsigned N = 256; + constexpr unsigned N = 509; const auto src = TestDataBuffer<int32_t, N>(RandomInt24()); uint8_t dest[N * 3]; @@ -49,7 +49,7 @@ PcmPackTest::TestPack24() void PcmPackTest::TestUnpack24() { - constexpr unsigned N = 256; + constexpr unsigned N = 509; const auto src = TestDataBuffer<uint8_t, N * 3>(); int32_t dest[N]; |