From b7b5e3f9c30a9ed898cddb1b5e4b471750824600 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 7 Jan 2009 18:07:19 +0100 Subject: pcm_prng: renamed prng() to pcm_prng() --- src/pcm_dither.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pcm_dither.c') diff --git a/src/pcm_dither.c b/src/pcm_dither.c index 984949685..2b4c8ab50 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; -- cgit v1.2.3