aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/Console6Buss/Console6Buss.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/Console6Buss/Console6Buss.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/Console6Buss/Console6Buss.cpp')
-rw-r--r--plugins/LV2/src/Console6Buss/Console6Buss.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/LV2/src/Console6Buss/Console6Buss.cpp b/plugins/LV2/src/Console6Buss/Console6Buss.cpp
new file mode 100644
index 0000000..261830c
--- /dev/null
+++ b/plugins/LV2/src/Console6Buss/Console6Buss.cpp
@@ -0,0 +1,32 @@
+#include "Console6Buss.h"
+#include <iostream>
+#include <lv2wrapper.h>
+
+Console6Buss::Console6Buss(double rate)
+ : LV2Plugin(rate)
+{
+}
+
+void Console6Buss::activate()
+{
+ A = 1.0;
+ fpd = 17;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+}
+
+void Console6Buss::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/Console6Buss/Console6BussProc.cpp"
+
+// Create the LV2Wrapper and register the plugin
+LV2Wrapper<Console6Buss> plugin;