aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/ADT/ADT.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/LV2/src/ADT/ADT.h')
-rw-r--r--plugins/LV2/src/ADT/ADT.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/plugins/LV2/src/ADT/ADT.h b/plugins/LV2/src/ADT/ADT.h
index e76ae87..fb6aab4 100644
--- a/plugins/LV2/src/ADT/ADT.h
+++ b/plugins/LV2/src/ADT/ADT.h
@@ -4,11 +4,10 @@
#include <cstdint>
#include <lv2plugin.h>
-class ADT : protected LV2Plugin {
+class ADT : public LV2Plugin<6> {
public:
ADT(double rate);
- void connect_port(uint32_t port, void * data);
void run(uint32_t num_samples);
static constexpr const char * URI = "https://www.airwindows.com/adt";
@@ -21,16 +20,6 @@ private:
void processReplacing(float **in, float **out, VstInt32 samples);
void processDoubleReplacing(double **in, double **out, VstInt32 samples);
- const float * headroom;
- const float * a_delay;
- const float * a_level;
- const float * b_delay;
- const float * b_level;
- const float * out_level;
-
- const float * in[2];
- float * out[2];
-
/*
* Members needed by the processing functions.
*/