aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/DeEss
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/LV2/src/DeEss')
-rw-r--r--plugins/LV2/src/DeEss/DeEss.cpp54
-rw-r--r--plugins/LV2/src/DeEss/DeEss.h85
-rw-r--r--plugins/LV2/src/DeEss/DeEss.ttl60
-rw-r--r--plugins/LV2/src/DeEss/manifest.ttl.in6
4 files changed, 205 insertions, 0 deletions
diff --git a/plugins/LV2/src/DeEss/DeEss.cpp b/plugins/LV2/src/DeEss/DeEss.cpp
new file mode 100644
index 0000000..c6e8e60
--- /dev/null
+++ b/plugins/LV2/src/DeEss/DeEss.cpp
@@ -0,0 +1,54 @@
+#include "DeEss.h"
+#include <iostream>
+#include <lv2wrapper.h>
+
+DeEss::DeEss(double rate)
+ : LV2Plugin(rate)
+{
+}
+
+void DeEss::activate()
+{
+ A = 0.0;
+ B = 0.5; //-48.0 to 0.0
+ C = 0.5;
+
+ s1L = s2L = s3L = s4L = s5L = s6L= s7L = 0.0;
+ m1L = m2L = m3L = m4L = m5L = m6L = 0.0;
+ c1L = c2L = c3L = c4L = c5L = 0.0;
+ ratioAL = ratioBL = 1.0;
+ iirSampleAL = 0.0;
+ iirSampleBL = 0.0;
+
+ s1R = s2R = s3R = s4R = s5R = s6R = s7R = 0.0;
+ m1R = m2R = m3R = m4R = m5R = m6R = 0.0;
+ c1R = c2R = c3R = c4R = c5R = 0.0;
+ ratioAR = ratioBR = 1.0;
+ iirSampleAR = 0.0;
+ iirSampleBR = 0.0;
+
+ flip = false;
+
+ fpNShapeL = 0.0;
+ fpNShapeR = 0.0;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+}
+
+void DeEss::run(uint32_t num_samples)
+{
+ A = *params[0];
+ B = *params[1];
+ C = *params[2];
+
+ processReplacing(const_cast<float **>(in), out, num_samples);
+}
+
+//
+// Include the processing code from the VST version.
+//
+#include <cmath>
+#include "../../../LinuxVST/src/DeEss/DeEssProc.cpp"
+
+// Create the LV2Wrapper and register the plugin
+LV2Wrapper<DeEss> plugin;
diff --git a/plugins/LV2/src/DeEss/DeEss.h b/plugins/LV2/src/DeEss/DeEss.h
new file mode 100644
index 0000000..b3c2d4e
--- /dev/null
+++ b/plugins/LV2/src/DeEss/DeEss.h
@@ -0,0 +1,85 @@
+#ifndef __DeEss_H
+#define __DeEss_H
+
+#include <lv2plugin.h>
+
+class DeEss : public LV2Plugin<3> {
+public:
+ DeEss(double rate);
+
+ void activate();
+ void run(uint32_t num_samples);
+
+ static constexpr const char * URI = "https://www.airwindows.com/deess";
+
+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.
+ */
+
+ double s1L;
+ double s2L;
+ double s3L;
+ double s4L;
+ double s5L;
+ double s6L;
+ double s7L;
+ double m1L;
+ double m2L;
+ double m3L;
+ double m4L;
+ double m5L;
+ double m6L;
+ double c1L;
+ double c2L;
+ double c3L;
+ double c4L;
+ double c5L;
+ double ratioAL;
+ double ratioBL;
+ double iirSampleAL;
+ double iirSampleBL;
+
+ double s1R;
+ double s2R;
+ double s3R;
+ double s4R;
+ double s5R;
+ double s6R;
+ double s7R;
+ double m1R;
+ double m2R;
+ double m3R;
+ double m4R;
+ double m5R;
+ double m6R;
+ double c1R;
+ double c2R;
+ double c3R;
+ double c4R;
+ double c5R;
+ double ratioAR;
+ double ratioBR;
+ double iirSampleAR;
+ double iirSampleBR;
+
+
+ bool flip;
+
+ long double fpNShapeL;
+ long double fpNShapeR;
+ //default stuff
+
+ float A;
+ float B;
+ float C;
+};
+
+#endif
diff --git a/plugins/LV2/src/DeEss/DeEss.ttl b/plugins/LV2/src/DeEss/DeEss.ttl
new file mode 100644
index 0000000..348bc69
--- /dev/null
+++ b/plugins/LV2/src/DeEss/DeEss.ttl
@@ -0,0 +1,60 @@
+# Airwindows DeEss plugin description
+
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix units: <http://lv2plug.in/ns/extensions/units#> .
+
+<https://www.airwindows.com/deess>
+ a lv2:Plugin ,
+ lv2:EffectsPlugin ;
+ lv2:project <https://www.airwindows.com> ;
+
+ lv2:optionalFeature lv2:hardRTCapable ;
+
+ # Define the ports for this plugin.
+ lv2:port [
+ a lv2:InputPort , lv2:ControlPort ;
+ lv2:index 0 ;
+ lv2:symbol "A" ;
+ lv2:name "Intense" ;
+ lv2:default 0.5 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ ] , [
+ a lv2:InputPort , lv2:ControlPort ;
+ lv2:index 1 ;
+ lv2:symbol "B" ;
+ lv2:name "Max DS" ;
+ lv2:default 0.5 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ ] , [
+ a lv2:InputPort , lv2:ControlPort ;
+ lv2:index 2 ;
+ lv2:symbol "C" ;
+ lv2:name "Freq" ;
+ lv2:default 0.5 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ ] , [
+ a lv2:InputPort , lv2:AudioPort ;
+ lv2:index 3 ;
+ lv2:symbol "in_l" ;
+ lv2:name "In left" ;
+ ] , [
+ a lv2:InputPort , lv2:AudioPort ;
+ lv2:index 4 ;
+ lv2:symbol "in_r" ;
+ lv2:name "In right" ;
+ ] , [
+ a lv2:OutputPort , lv2:AudioPort ;
+ lv2:index 5 ;
+ lv2:symbol "out_l" ;
+ lv2:name "Out left" ;
+ ] , [
+ a lv2:OutputPort , lv2:AudioPort ;
+ lv2:index 6 ;
+ lv2:symbol "out_r" ;
+ lv2:name "Out right" ;
+ ] .
diff --git a/plugins/LV2/src/DeEss/manifest.ttl.in b/plugins/LV2/src/DeEss/manifest.ttl.in
new file mode 100644
index 0000000..4228e29
--- /dev/null
+++ b/plugins/LV2/src/DeEss/manifest.ttl.in
@@ -0,0 +1,6 @@
+airwindows:deess
+ a lv2:Plugin ;
+ doap:name "Airwindows DeEss" ;
+ doap:license <http://opensource.org/licenses/mit> ;
+ lv2:binary <DeEss@CMAKE_SHARED_LIBRARY_SUFFIX@> ;
+ rdfs:seeAlso <DeEss.ttl> .