diff options
author | Max Kellermann <max@duempel.org> | 2013-10-19 15:05:48 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-19 15:05:48 +0200 |
commit | 7cb803ad5c2ba3678198ff954e4a8c8f565a4668 (patch) | |
tree | 6a7357bd8a24fc5fc217ce5e9bc3e02320fa2de6 /test/test_pcm_pack.cxx | |
parent | 8e063829c426e447021050eb214a77182269602e (diff) | |
download | mpd-7cb803ad5c2ba3678198ff954e4a8c8f565a4668.tar.gz mpd-7cb803ad5c2ba3678198ff954e4a8c8f565a4668.tar.xz mpd-7cb803ad5c2ba3678198ff954e4a8c8f565a4668.zip |
test/test_pcm: use C++11 random instead of GLib
Diffstat (limited to '')
-rw-r--r-- | test/test_pcm_pack.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/test_pcm_pack.cxx b/test/test_pcm_pack.cxx index 0033ceb07..cab78c499 100644 --- a/test/test_pcm_pack.cxx +++ b/test/test_pcm_pack.cxx @@ -22,13 +22,11 @@ #include "pcm/PcmPack.hxx" #include "system/ByteOrder.hxx" -#include <glib.h> - void PcmPackTest::TestPack24() { constexpr unsigned N = 256; - const auto src = TestDataBuffer<int32_t, N>(GlibRandomInt24()); + const auto src = TestDataBuffer<int32_t, N>(RandomInt24()); uint8_t dest[N * 3]; pcm_pack_24(dest, src.begin(), src.end()); |