aboutsummaryrefslogtreecommitdiff
path: root/src/pcm_dither.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-07 18:07:19 +0100
committerMax Kellermann <max@duempel.org>2009-01-07 18:07:19 +0100
commitb7b5e3f9c30a9ed898cddb1b5e4b471750824600 (patch)
tree2d9863407c34b3e4bbac29833022ccf9c654343a /src/pcm_dither.c
parent3fd1fa31ca26c0cbf0f74a1f11dbaeaa176ab6ff (diff)
pcm_prng: renamed prng() to pcm_prng()
Diffstat (limited to 'src/pcm_dither.c')
-rw-r--r--src/pcm_dither.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_dither.c b/src/pcm_dither.c
index 98494968..2b4c8ab5 100644
--- a/src/pcm_dither.c
+++ b/src/pcm_dither.c
@@ -43,7 +43,7 @@ pcm_dither_sample_24_to_16(int32_t sample, struct pcm_dither_24 *dither)
/* round */
output = sample + round;
- rnd = prng(dither->random);
+ rnd = pcm_prng(dither->random);
output += (rnd & mask) - (dither->random & mask);
dither->random = rnd;