aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/Aura
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-09-02 21:35:47 +0200
committerHarald Eilertsen <haraldei@anduin.net>2020-09-02 21:42:47 +0200
commitcccd83938fd33631c36dd5e22ea2364a12fe5305 (patch)
treeeac0433654c31ea6b31c295c74088b60dc7bf607 /plugins/LV2/src/Aura
parent529eff1742ef8e62bc8ccb402fcaa21eba7e2ff7 (diff)
downloadairwindows-lv2-port-cccd83938fd33631c36dd5e22ea2364a12fe5305.tar.gz
airwindows-lv2-port-cccd83938fd33631c36dd5e22ea2364a12fe5305.tar.bz2
airwindows-lv2-port-cccd83938fd33631c36dd5e22ea2364a12fe5305.zip
LV2: Reset state on activate.
This makes sure all internal parameters are initializet to sane values before processing starts. The VST version does this on construction, but it seems better (at least for LV2) to do this as part of the activate callback. This should fix noise on the start of the audio processing with the plugins.
Diffstat (limited to 'plugins/LV2/src/Aura')
-rw-r--r--plugins/LV2/src/Aura/Aura.cpp16
-rw-r--r--plugins/LV2/src/Aura/Aura.h1
2 files changed, 17 insertions, 0 deletions
diff --git a/plugins/LV2/src/Aura/Aura.cpp b/plugins/LV2/src/Aura/Aura.cpp
index cb205ce..78f650d 100644
--- a/plugins/LV2/src/Aura/Aura.cpp
+++ b/plugins/LV2/src/Aura/Aura.cpp
@@ -7,6 +7,22 @@ Aura::Aura(double rate)
{
}
+void Aura::activate()
+{
+ for(int count = 0; count < 21; count++) {
+ bL[count] = 0.0;
+ bR[count] = 0.0;
+ f[count] = 0.0;
+ }
+ lastSampleL = 0.0;
+ previousVelocityL = 0.0;
+ lastSampleR = 0.0;
+ previousVelocityR = 0.0;
+
+ fpNShapeL = 0.0;
+ fpNShapeR = 0.0;
+}
+
void Aura::run(uint32_t num_samples)
{
A = *params[0];
diff --git a/plugins/LV2/src/Aura/Aura.h b/plugins/LV2/src/Aura/Aura.h
index 5692234..5328ffb 100644
--- a/plugins/LV2/src/Aura/Aura.h
+++ b/plugins/LV2/src/Aura/Aura.h
@@ -7,6 +7,7 @@ class Aura : public LV2Plugin<2> {
public:
Aura(double rate);
+ void activate() override;
void run(uint32_t num_samples);
static constexpr const char * URI = "https://www.airwindows.com/aura";