I’m interested in knowing how I might go about loading VSTs and other various DSP plugins with DSP types lke FMOD_DSP_TYPE_VSTPLUGIN and FMOD_DSP_TYPEWINAMPPLUGIN. Would I call System::loadPlugin() and then create the DSP by type? And if so, what parameters would I set?
That’s right, you would just use System::loadPlugin() like a regular plugin. Take a look at the DSP examples in the API examples VS project for more information on setting it up and setting parameters.
I’m not sure what you mean by “DSP plugin API examples”. Would you mind elaborating? Unless you mean the output_mp3.cpp stuff, and fmod_gain.cpp, fmod_noise.cpp, fmod_distance_filter.cpp, and output_mp3.cpp files under plugins in the lowlevel examples folder?
Wow, I never thought it would be that simple, I thought the process was all drawn out and all that since there’s no documentation in the manual about it. Correct me if I’m wrong but I assume that applies to all other plugin types as well for DSPs? If so, thank you – this just brightened my day and made my life a hole lot easier!
It’s not a very common function to use since VSTs aren’t very portable.
Can you let me know what you mean by “other plugin types”? Theoretically you could load most plugins but it’s recommended to use FMOD-specific plugins for portability and reliability.