Hi Ian. Thanks for the reply. I went in and adjusted the 3dtest.c example using this call and I get error 21 (BASS_ERROR_NO3D) when setting up the stream via:
newchan = BASS_StreamCreate(44100, 8, BASS_SAMPLE_3D , MyStreamProc, 0)
My callback:
DWORD CALLBACK MyStreamProc(HSTREAM handle, void *buffer, DWORD length, void *user)
{
DWORD c = fread(buffer, 1, length, file); // read the file into the buffer
if (feof(file)) c |= BASS_STREAMPROC_END; // end of the file/stream
return c;
}
I'm using the same mono WAV file.
Am I doing it right?
Thanks.