Browse Source

fix copy & paste bug on dither rambdom generator (#246)

a leading 1 was missing [1]

[1] http://www.musicdsp.org/showone.php?id=59

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
tags/v1.9.11-RC1
Andreas Müller Stéphane Letz 8 years ago
parent
commit
0279a2d65a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/memops.c

+ 1
- 1
common/memops.c View File

@@ -199,7 +199,7 @@ static inline __m128i float_24_sse(__m128 s)
static unsigned int seed = 22222;

static inline unsigned int fast_rand() {
seed = (seed * 96314165) + 907633515;
seed = (seed * 196314165) + 907633515;
return seed;
}



Loading…
Cancel
Save