aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pcm_dither.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-19 15:05:48 +0200
committerMax Kellermann <max@duempel.org>2013-10-19 15:05:48 +0200
commit7cb803ad5c2ba3678198ff954e4a8c8f565a4668 (patch)
tree6a7357bd8a24fc5fc217ce5e9bc3e02320fa2de6 /test/test_pcm_dither.cxx
parent8e063829c426e447021050eb214a77182269602e (diff)
downloadmpd-7cb803ad5c2ba3678198ff954e4a8c8f565a4668.tar.gz
mpd-7cb803ad5c2ba3678198ff954e4a8c8f565a4668.tar.xz
mpd-7cb803ad5c2ba3678198ff954e4a8c8f565a4668.zip
test/test_pcm: use C++11 random instead of GLib
Diffstat (limited to 'test/test_pcm_dither.cxx')
-rw-r--r--test/test_pcm_dither.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pcm_dither.cxx b/test/test_pcm_dither.cxx
index 5df64c2d1..710deffcc 100644
--- a/test/test_pcm_dither.cxx
+++ b/test/test_pcm_dither.cxx
@@ -25,7 +25,7 @@ void
PcmDitherTest::TestDither24()
{
constexpr unsigned N = 256;
- const auto src = TestDataBuffer<int32_t, N>(GlibRandomInt24());
+ const auto src = TestDataBuffer<int32_t, N>(RandomInt24());
int16_t dest[N];
PcmDither dither;