Hi!
Does anyone know how the floating points on the scsynth (32 or 64 bit?) gets converted to the 24 bit integers on my soundcard? Where does this happen, and how?
I’m trying to make a Phasor that counts one bit/one step up of a 24 bit integer each sample, and also wraps around, and I want to make sure it doesn’t miss or skip a step due to round off, or at the edges of ‘start’ and ‘end’.
Something like this:
(
var step = 0x800000.reciprocal;
Phasor.ar(rate: step, start: -1, end: 1 + step);
)
A thing that confuses me is that since 24 bits is an even number, does this mean that there is no ‘zero’, or does the negative or positive part of the amplitude have more depth than the other?