aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/DeHiss/DeHiss.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/LV2/src/DeHiss/DeHiss.cpp')
-rw-r--r--plugins/LV2/src/DeHiss/DeHiss.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/LV2/src/DeHiss/DeHiss.cpp b/plugins/LV2/src/DeHiss/DeHiss.cpp
new file mode 100644
index 0000000..b6d78c5
--- /dev/null
+++ b/plugins/LV2/src/DeHiss/DeHiss.cpp
@@ -0,0 +1,45 @@
+#include "DeHiss.h"
+#include <iostream>
+#include <lv2wrapper.h>
+
+DeHiss::DeHiss(double rate)
+ : LV2Plugin(rate)
+{
+}
+
+void DeHiss::activate()
+{
+ A = 0.0;
+ B = 1.0;
+
+ storedL[0] = storedL[1] = 0.0;
+ diffL[0] = diffL[1] = diffL[2] = diffL[3] = diffL[4] = diffL[5] = 0.0;
+ gateL = 1.0;
+ rawL = 2.0;
+
+ storedR[0] = storedR[1] = 0.0;
+ diffR[0] = diffR[1] = diffR[2] = diffR[3] = diffR[4] = diffR[5] = 0.0;
+ gateR = 1.0;
+ rawR = 2.0;
+
+ fpd = 17;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+}
+
+void DeHiss::run(uint32_t num_samples)
+{
+ A = *params[0];
+ B = *params[1];
+
+ processReplacing(const_cast<float **>(in), out, num_samples);
+}
+
+//
+// Include the processing code from the VST version.
+//
+#include <cmath>
+#include "../../../LinuxVST/src/DeHiss/DeHissProc.cpp"
+
+// Create the LV2Wrapper and register the plugin
+LV2Wrapper<DeHiss> plugin;