aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_dither.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-03 14:51:47 +0100
committerMax Kellermann <max@duempel.org>2009-01-13 23:09:19 +0100
commita0141dbe4f868413d78c94737846279124415479 (patch)
treee917b22e3eced7f9a8d9a4fa9e1121b899246a86 /src/pcm_dither.c
parentd93477d1369e55d76476952f30463461e47af443 (diff)
downloadmpd-a0141dbe4f868413d78c94737846279124415479.tar.gz
mpd-a0141dbe4f868413d78c94737846279124415479.tar.xz
mpd-a0141dbe4f868413d78c94737846279124415479.zip
pcm_utils: use the custom PRNG for volume dithering
Don't use libc's rand() function, because it is slow. Our own trivial linear congruential generator is good enough for dithering.
Diffstat (limited to 'src/pcm_dither.c')
-rw-r--r--src/pcm_dither.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/pcm_dither.c b/src/pcm_dither.c
index 1296d0926..984949685 100644
--- a/src/pcm_dither.c
+++ b/src/pcm_dither.c
@@ -17,11 +17,7 @@
*/
#include "pcm_dither.h"
-
-static unsigned long prng(unsigned long state)
-{
- return (state * 0x0019660dL + 0x3c6ef35fL) & 0xffffffffL;
-}
+#include "pcm_prng.h"
static int16_t
pcm_dither_sample_24_to_16(int32_t sample, struct pcm_dither_24 *dither)