aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/Chorus/Chorus.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/LV2/src/Chorus/Chorus.h')
-rw-r--r--plugins/LV2/src/Chorus/Chorus.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/plugins/LV2/src/Chorus/Chorus.h b/plugins/LV2/src/Chorus/Chorus.h
new file mode 100644
index 0000000..fb602b3
--- /dev/null
+++ b/plugins/LV2/src/Chorus/Chorus.h
@@ -0,0 +1,51 @@
+#ifndef __Chorus_H
+#define __Chorus_H
+
+#include <lv2plugin.h>
+
+class Chorus : public LV2Plugin<3> {
+public:
+ Chorus(double rate);
+
+ void activate();
+ void run(uint32_t num_samples);
+
+ static constexpr const char * URI = "https://www.airwindows.com/chorus";
+
+private:
+ /*
+ * These are the original DSP functions from the VST plugin.
+ * They need to be called from the LV2 plugins `run` function.
+ */
+ void processReplacing(float **in, float **out, VstInt32 samples);
+ void processDoubleReplacing(double **in, double **out, VstInt32 samples);
+
+ /*
+ * Members needed by the processing functions.
+ */
+
+ long double fpNShapeL;
+ long double fpNShapeR;
+ //default stuff
+ const static int totalsamples = 16386;
+ float dL[totalsamples];
+ float dR[totalsamples];
+ double sweep;
+ int gcount;
+ double airPrevL;
+ double airEvenL;
+ double airOddL;
+ double airFactorL;
+ double airPrevR;
+ double airEvenR;
+ double airOddR;
+ double airFactorR;
+ bool fpFlip;
+
+ float A;
+ float B;
+ float C;
+
+};
+
+#endif