Distortion, Bit Crusher

Download

     Disclaimer...

23   desc:Distortion, Bit Crusher, v1.0.0
24  
25   slider1:8<3,16,1>Bits [#]
26  
27   @init
28   bits = 8;
29   scale = 128;
30  
31   @slider
32   bits = slider1;
33   scale = pow(2, bits-1) * 1.0;
34   scale -= 1;
35  
36   @sample
37   x = spl0 * scale; // -127 < x < 127
38   y = floor(x) * 1.0;
39   spl0 = y / scale;
40  
41   x = spl1 * scale;
42   y = floor(x) * 1.0;

Download