the other question is this; i will end up having my convolved
samples in an array like:
aleftout[256]
arightout[256]
what i need to do now is read those out to the soundcard, and
originally i thought something like this would work:
for(int read=0; read<=255; read++)
{
out1++ = aleftout[read];
out2++ = arightout[read];
}
well it doesn't work, and i'm not really sure what the mechanism is
to get the samples back into the in/out arrays and then sent to the soundcard. any help is appreciated greatly!
scott
"640K ought to be enough for anybody." -- Bill Gates, 1981