I have a custom DSP that I play with playDSP that is fed by a custom wave reader from a 16 bit stereo file. For some reason it is always playing it mono, means I hear the same sound on the left and right side and not as expected a stereo experience. Does anyone have an idea why this happened?
In FmodEx there was the channels option that is now entirely gone.
old FMODEx code:
FMOD_DSP_DESCRIPTION dsp_desc;
memset( &dsp_desc, 0x0, sizeof(dsp_desc) );
dsp_desc.channels = 2;
strncpy(dsp_desc.name, "Player", 32);
dsp_desc.version = 1;
dsp_desc.read = &DSPReadCallback;