aboutsummaryrefslogtreecommitdiffstats
path: root/src/mdaRingMod.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mdaRingMod.h')
-rw-r--r--src/mdaRingMod.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/mdaRingMod.h b/src/mdaRingMod.h
new file mode 100644
index 0000000..d3934e2
--- /dev/null
+++ b/src/mdaRingMod.h
@@ -0,0 +1,41 @@
+#ifndef __mdaRingMod_H
+#define __mdaRingMod_H
+
+#include "audioeffectx.h"
+
+class mdaRingMod : public AudioEffectX
+{
+public:
+ mdaRingMod(audioMasterCallback audioMaster);
+ ~mdaRingMod();
+
+ virtual void process(float **inputs, float **outputs, LvzInt32 sampleFrames);
+ virtual void processReplacing(float **inputs, float **outputs, LvzInt32 sampleFrames);
+ virtual void setProgramName(char *name);
+ virtual void getProgramName(char *name);
+ virtual void setParameter(LvzInt32 index, float value);
+ virtual float getParameter(LvzInt32 index);
+ virtual void getParameterLabel(LvzInt32 index, char *label);
+ virtual void getParameterDisplay(LvzInt32 index, char *text);
+ virtual void getParameterName(LvzInt32 index, char *text);
+
+ virtual bool getEffectName(char *name);
+ virtual bool getVendorString(char *text);
+ virtual bool getProductString(char *text);
+ virtual LvzInt32 getVendorVersion() { return 1000; }
+
+protected:
+ float fParam1;
+ float fParam2;
+ float fParam3;
+ float fParam4;
+ float fPhi;
+ float fdPhi;
+ float nul;
+ float twoPi;
+ float ffb, fprev;
+
+ char programName[32];
+};
+
+#endif