I think this one may have been fixed. I cannot reproduce it in the
latest git master-dev branch:
faust -v
FAUST : DSP to C, C++, Java, JavaScript, old C++, asm.js, WebAssembly
(wast/wasm) compiler, Version 2.8.1
Copyright (C) 2002-2018, GRAME - Centre National de Creation Musicale.
All rights reserved.

I believe I am using this definition:

noise = random / RANDMAX
with{
mask = 4294967295; // 2^32-1
random = +(12345) ~ *(1103515245) & mask; // "linear congruential"
RANDMAX = 2147483647.0; // = 2^31-1 = MAX_SIGNED_INT in 32 bits
};

Maybe the ".0" at the end of RANDMAX is new?  I would also agree with
noise = float(random)/RANDMAX

Cheers,
- Julius

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to