aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/Console6Channel/Console6Channel.cpp
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-04-03 15:07:02 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-04-03 15:30:28 +0200
commit7881b2698cee2b0187adbe8a2c0a66a90cc371c1 (patch)
tree97634f663c6f24ae7d03a9400be2320671a494f1 /plugins/LV2/src/Console6Channel/Console6Channel.cpp
parent44faf659b6dd2de36d086e1cb5dfa5a978d89d37 (diff)
downloadairwindows-lv2-port-7881b2698cee2b0187adbe8a2c0a66a90cc371c1.tar.gz
airwindows-lv2-port-7881b2698cee2b0187adbe8a2c0a66a90cc371c1.tar.bz2
airwindows-lv2-port-7881b2698cee2b0187adbe8a2c0a66a90cc371c1.zip
Add more plugins, Console5Buss to curve
Diffstat (limited to 'plugins/LV2/src/Console6Channel/Console6Channel.cpp')
-rw-r--r--plugins/LV2/src/Console6Channel/Console6Channel.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/LV2/src/Console6Channel/Console6Channel.cpp b/plugins/LV2/src/Console6Channel/Console6Channel.cpp
new file mode 100644
index 0000000..f52ef8e
--- /dev/null
+++ b/plugins/LV2/src/Console6Channel/Console6Channel.cpp
@@ -0,0 +1,32 @@
+#include "Console6Channel.h"
+#include <iostream>
+#include <lv2wrapper.h>
+
+Console6Channel::Console6Channel(double rate)
+ : LV2Plugin(rate)
+{
+}
+
+void Console6Channel::activate()
+{
+ A = 1.0;
+ fpd = 17;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+}
+
+void Console6Channel::run(uint32_t num_samples)
+{
+ A = *params[0];
+
+ processReplacing(const_cast<float **>(in), out, num_samples);
+}
+
+//
+// Include the processing code from the VST version.
+//
+#include <cmath>
+#include "../../../LinuxVST/src/Console6Channel/Console6ChannelProc.cpp"
+
+// Create the LV2Wrapper and register the plugin
+LV2Wrapper<Console6Channel> plugin;