From 2bfbf63afca212134a74efa3c1da5b5eeb12e28a Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Tue, 20 May 2003 19:13:39 +0000 Subject: [PATCH] minor comments --- src/plugin_common/dither.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/plugin_common/dither.c b/src/plugin_common/dither.c index 2af13e2..27e555b 100644 --- a/src/plugin_common/dither.c +++ b/src/plugin_common/dither.c @@ -35,7 +35,11 @@ #define FLAC__INLINE #endif -/* 32-bit pseudo-random number generator */ +/* 32-bit pseudo-random number generator + * + * @@@ According to Miroslav, this one is poor quality, the one from the + * @@@ original replaygain code is much better + */ static FLAC__INLINE FLAC__uint32 prng(FLAC__uint32 state) { return (state * 0x0019660dL + 0x3c6ef35fL) & 0xffffffffL; -- 2.7.4