how to get raw data after processing by fmod

I loaded data from a file, and read audio data from the file. Then provide the data to fmod through pcmreadcallback and add dsp effect. But I cann’t get raw data after processing by fmod。

how to get raw data after processing by fmod?

Using Sound::lock and Sound::unlock, you can access the sound data pointer.

https://fmod.com/resources/documentation-api?page=content/generated/FMOD_Sound_Lock.html#/

OK, Thanks!