All BASS_VST API calls are contained in the main class BassVst and have been implemented as static methods. So there is NO need to create an instance of the BassVst class!
All BASS_VST structures have been implemented as real classes (named in capital letters). This because they are much easier to use and reflect exactly what BASS_VST would expect. Those classes needs to be instantiated before their use.
If you use BASS_VST in your projects, you should add the following disclaimer:
"BASS_VST by Bjoern Petersen for Silverjuke.net VST PlugIn Technology by Steinberg Media Technologies GmbH"
(at least the second line!) to your project and you must not charge anything for this feature.
Moreover, if you use this - or any other - VST technology in your projects, you may need a (free) licenence for this from Steinberg.
BASS_VST is VST host compatible up to the new VST 2.4 implementation and (hopefully) implements all needed features - incl. the new double precision processing.
Class | Description | |
---|---|---|
BASS_VST_AEFFECT |
Basic VST Effect class as returned in the aeffect member of the BASS_VST_INFO class as obtained by BASS_VST_GetInfo(Int32, BASS_VST_INFO).
See the VST SDK for more informaton. | |
BASS_VST_AUDIO_MASTER_PARAM |
This class is only needed if you subclass the audioMaster callback using BASS_VST_AUDIO_MASTER in the VSTPROC (see the VST DSK for more information).
| |
BASS_VST_INFO | BASS_VST_GetInfo(Int32, BASS_VST_INFO) writes some information about a vstHandle returned by BASS_VST_ChannelSetDSP(Int32, String, BASSVSTDsp, Int32) to this BASS_VST_INFO structure.
| |
BASS_VST_PARAM_INFO |
Common information structure about an editable parameter to a VST plugin parameter to be used with BASS_VST_GetParamInfo(Int32, Int32, BASS_VST_PARAM_INFO).
| |
BassVst |
BASS.NET API wrapper for BASS_VST.DLL
Requires: bass_vst.dll - VST plugin support Add-On. |
Delegate | Description | |
---|---|---|
VST_AEFFECT_Dispatcher |
The general VST plugin dispatcher callback delegate).
| |
VST_AEFFECT_GetParameter |
Gets a value of automatable parameter.
| |
VST_AEFFECT_Process |
The VST plugin process callback delegate. Accumulating process mode is deprecated in VST 2.4, use VST_AEFFECT_ProcessReplacing instead.
See Steinberg VST SDK documentaion for more information. | |
VST_AEFFECT_ProcessDoubleProc |
The VST plugin process callback delegate (non accumulating, double-precision).
See Steinberg VST SDK documentaion for more information. | |
VST_AEFFECT_ProcessReplacing |
The VST plugin process callback delegate (non accumulating).
See Steinberg VST SDK documentaion for more information. | |
VST_AEFFECT_SetParameter |
Set new value of automatable parameter.
| |
VSTPROC |
User defined VST callback method to be used with BASS_VST_SetCallback(Int32, VSTPROC, IntPtr).
|
Enumeration | Description | |
---|---|---|
BASSVSTAction |
VST action parameters as used within the VSTPROC callback.
| |
BASSVSTAEffectFlags | BASS_VST_AEFFECT bit flags.
| |
BASSVSTDispatcherOpCodes |
VST Dispatcher OpCodes to be used within the VST_AEFFECT_Dispatcher callback when using BASS_VST_AEFFECT.
For more info see the Steinberg VST SDK documentation. | |
BASSVSTDsp |
VST DSP flags to be used within the BASS_VST_ChannelSetDSP(Int32, String, BASSVSTDsp, Int32) method.
|