|
VST 3 Examples
VST 3.7
SDK for developing VST plug-in
|
#include <mdaBaseProcessor.h>
Inheritance diagram for SampleAccurateBaseProcessor:Public Member Functions | |
| SampleAccurateBaseProcessor () | |
| void | allocParameters (int32 numParams) final |
| tresult | process (ProcessData &data) final |
| bool | processParameterChanges (IParameterChanges *changes) final |
Additional Inherited Members | |
Public Types inherited from IProcessContextRequirements | |
| enum | Flags |
Public Attributes inherited from AudioEffect | |
| OBJ_METHODS(AudioEffect, Component) DEFINE_INTERFACES DEF_INTERFACE(IAudioProcessor) DEF_INTERFACE(IProcessContextRequirements) END_DEFINE_INTERFACES(Component) REFCOUNT_METHODS(Component) protected ProcessContextRequirements | processContextRequirements |
| OBJ_METHODS(Component, ComponentBase) DEFINE_INTERFACES DEF_INTERFACE(IComponent) END_DEFINE_INTERFACES(ComponentBase) REFCOUNT_METHODS(ComponentBase) protected BusList | audioInputs |
| BusList | audioOutputs |
| BusList | eventInputs |
| BusList | eventOutputs |
| OBJ_METHODS(ComponentBase, FObject) DEFINE_INTERFACES DEF_INTERFACE(IPluginBase) DEF_INTERFACE(IConnectionPoint) END_DEFINE_INTERFACES(FObject) REFCOUNT_METHODS(FObject) protected IPtr < IConnectionPoint > | peerConnection |
Static Public Attributes inherited from IPluginBase | |
| static const FUID | iid |
Static Public Attributes inherited from IConnectionPoint | |
| static const FUID | iid |
Static Public Attributes inherited from IComponent | |
| static const FUID | iid |
Static Public Attributes inherited from IAudioProcessor | |
| static const FUID | iid |
Static Public Attributes inherited from IProcessContextRequirements | |
| static const FUID | iid |
Protected Types inherited from Processor | |
| using | StateT = std::vector< ParamValue > |
Protected Member Functions inherited from Processor | |
| Processor () | |
| ~Processor () | |
| virtual void | doProcessing (ProcessData &data)=0 |
| virtual void | preProcess () |
| virtual bool | bypassProcessing (ProcessData &data) |
| virtual void | processEvent (const Event &) |
| virtual void | checkSilence (ProcessData &data) |
| virtual void | setBypass (bool state, int32 sampleOffset) |
| virtual void | setParameter (ParamID index, ParamValue newValue, int32 sampleOffset) |
| virtual void | recalculate () |
| virtual bool | hasProgram () const |
| virtual uint32 | getCurrentProgram () const |
| virtual uint32 | getNumPrograms () const |
| virtual void | setCurrentProgram (uint32) |
| virtual void | setCurrentProgramNormalized (ParamValue) |
| virtual int32 | getVst2UniqueId () const =0 |
| void | processEvents (IEventList *events) |
| bool | isBypassed () const |
| double | getSampleRate () const |
| tresult | setupProcessing (ProcessSetup &setup) SMTG_OVERRIDE |
| tresult | setActive (TBool state) SMTG_OVERRIDE |
| tresult | setBusArrangements (SpeakerArrangement *inputs, int32 numIns, SpeakerArrangement *outputs, int32 numOuts) SMTG_OVERRIDE |
| tresult | setState (IBStream *state) final |
| tresult | getState (IBStream *state) final |
| bool | checkStateTransfer () |
Protected Attributes inherited from Processor | |
| ParamValue * | params |
| uint32 | numParams |
| int32 | bypassRamp |
| float * | bypassBuffer0 |
| float * | bypassBuffer1 |
| bool | bypassState |
| RTTransferT< StateT > | stateTransfer |
|
finalvirtual |
Reimplemented from Processor.
|
finalvirtual |
Reimplemented from Processor.