I was trying to write my first plugin, and I got quite confused over which of the two sound effect classes I should use, PluginDsp or Dsp2?
obviously Dsp2 has quite a few more features but it does a few things differently and unlike PluginDsp, the Dsp2 header file doesn't include the generic plugin header
is there certain situations where you should use one over the other?
cheers
obviously Dsp2 has quite a few more features but it does a few things differently and unlike PluginDsp, the Dsp2 header file doesn't include the generic plugin header
is there certain situations where you should use one over the other?
cheers
geposted Sat 06 Sep 08 @ 3:56 am
Always download the latest headers from this site, then create a project from scratch with your favorite software (I suggest Visual C++ 2008 Express, it' all you need for a DECENT plugin!).
geposted Sat 06 Sep 08 @ 11:12 am
"VdjDsp2.h" with the class IVdjDsp2 is the old SDK
Now use the new SDK:
"VdjPlugin.h" + "VdjDsp.h" with the class IVdjPluginDsp (which inherits from the class IVdjPlugin)
Now use the new SDK:
"VdjPlugin.h" + "VdjDsp.h" with the class IVdjPluginDsp (which inherits from the class IVdjPlugin)
geposted Sun 07 Sep 08 @ 12:12 pm