#include "VSTEffectBase.h"
#include "../StatelessPerTrackEffect.h"
#include "SampleFormat.h"
#include <optional>
#include <atomic>
Go to the source code of this file.
|
typedef intptr_t(* | dispatcherFn) (AEffect *effect, int opCode, int index, intptr_t value, void *ptr, float opt) |
|
typedef void(* | processFn) (AEffect *effect, float **inputs, float **outputs, int sampleframes) |
|
typedef void(* | setParameterFn) (AEffect *effect, int index, float parameter) |
|
typedef float(* | getParameterFn) (AEffect *effect, int index) |
|
typedef AEffect *(* | vstPluginMain) (audioMasterCallback audioMaster) |
|
◆ dispatcherFn
typedef intptr_t(* dispatcherFn) (AEffect *effect, int opCode, int index, intptr_t value, void *ptr, float opt) |
◆ getParameterFn
typedef float(* getParameterFn) (AEffect *effect, int index) |
◆ processFn
typedef void(* processFn) (AEffect *effect, float **inputs, float **outputs, int sampleframes) |
◆ setParameterFn
typedef void(* setParameterFn) (AEffect *effect, int index, float parameter) |
◆ vstPluginMain