From a42203c7ddd28f1b6a5d2c12cab5e6dd40f1622f Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sun, 28 Mar 2021 17:29:25 +0200 Subject: LV2: More plugins. Plugins added in this batch is: - C5RawBuss - C5RawChannel - Calibre - Channel4-7 - Chorus - ChorusEnsemble - ChromeOxide - Cider - ClipOnly - Coils - Cojones - Compresaturator --- .../LV2/src/Compresaturator/Compresaturator.cpp | 48 ++++++++++++++ plugins/LV2/src/Compresaturator/Compresaturator.h | 48 ++++++++++++++ .../LV2/src/Compresaturator/Compresaturator.ttl | 76 ++++++++++++++++++++++ plugins/LV2/src/Compresaturator/manifest.ttl.in | 6 ++ 4 files changed, 178 insertions(+) create mode 100644 plugins/LV2/src/Compresaturator/Compresaturator.cpp create mode 100644 plugins/LV2/src/Compresaturator/Compresaturator.h create mode 100644 plugins/LV2/src/Compresaturator/Compresaturator.ttl create mode 100644 plugins/LV2/src/Compresaturator/manifest.ttl.in (limited to 'plugins/LV2/src/Compresaturator') diff --git a/plugins/LV2/src/Compresaturator/Compresaturator.cpp b/plugins/LV2/src/Compresaturator/Compresaturator.cpp new file mode 100644 index 0000000..22b1167 --- /dev/null +++ b/plugins/LV2/src/Compresaturator/Compresaturator.cpp @@ -0,0 +1,48 @@ +#include "Compresaturator.h" +#include +#include + +Compresaturator::Compresaturator(double rate) + : LV2Plugin(rate) +{ +} + +void Compresaturator::activate() +{ + A = 0.5; //-12 to +12 dB + B = 0.5; //0 to 100% + C = 0.5; //50 to 5000 samples, default 500 + D = 1.0; + E = 1.0; + + for(int count = 0; count < 10990; count++) {dL[count] = 0.0; dR[count] = 0.0;} + dCount = 0; + lastWidthL = 500; + padFactorL = 0; + lastWidthR = 500; + padFactorR = 0; + + fpd = 17; + //this is reset: values being initialized only once. Startup values, whatever they are. + +} + +void Compresaturator::run(uint32_t num_samples) +{ + A = *params[0]; + B = *params[1]; + C = *params[2]; + D = *params[3]; + E = *params[4]; + + processReplacing(const_cast(in), out, num_samples); +} + +// +// Include the processing code from the VST version. +// +#include +#include "../../../LinuxVST/src/Compresaturator/CompresaturatorProc.cpp" + +// Create the LV2Wrapper and register the plugin +LV2Wrapper plugin; diff --git a/plugins/LV2/src/Compresaturator/Compresaturator.h b/plugins/LV2/src/Compresaturator/Compresaturator.h new file mode 100644 index 0000000..12b3b6c --- /dev/null +++ b/plugins/LV2/src/Compresaturator/Compresaturator.h @@ -0,0 +1,48 @@ +#ifndef __Compresaturator_H +#define __Compresaturator_H + +#include + +class Compresaturator : public LV2Plugin<5> { +public: + Compresaturator(double rate); + + void activate(); + void run(uint32_t num_samples); + + static constexpr const char * URI = "https://www.airwindows.com/compresaturator"; + +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. + */ + + uint32_t fpd; + //default stuff + + int dCount; + + float dL[11000]; + int lastWidthL; + double padFactorL; + + float dR[11000]; + int lastWidthR; + double padFactorR; + + float A; + float B; + float C; + float D; + float E; //parameters. Always 0-1, and we scale/alter them elsewhere. + +}; + +#endif diff --git a/plugins/LV2/src/Compresaturator/Compresaturator.ttl b/plugins/LV2/src/Compresaturator/Compresaturator.ttl new file mode 100644 index 0000000..0ae2cf9 --- /dev/null +++ b/plugins/LV2/src/Compresaturator/Compresaturator.ttl @@ -0,0 +1,76 @@ +# Airwindows Compresaturator plugin description + +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . +@prefix units: . + + + a lv2:Plugin , + lv2:CompressorPlugin ; + lv2:project ; + + 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 "Drive" ; + 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 "Clamp" ; + 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 "Expand" ; + lv2:default 0.5 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + ] , [ + a lv2:InputPort , lv2:ControlPort ; + lv2:index 3 ; + lv2:symbol "D" ; + lv2:name "Output" ; + lv2:default 0.5 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + ] , [ + a lv2:InputPort , lv2:ControlPort ; + lv2:index 4 ; + lv2:symbol "E" ; + lv2:name "Dry/Wet" ; + lv2:default 0.5 ; + lv2:minimum 0.0 ; + lv2:maximum 1.0 ; + ] , [ + a lv2:InputPort , lv2:AudioPort ; + lv2:index 5 ; + lv2:symbol "in_l" ; + lv2:name "In left" ; + ] , [ + a lv2:InputPort , lv2:AudioPort ; + lv2:index 6 ; + lv2:symbol "in_r" ; + lv2:name "In right" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 7 ; + lv2:symbol "out_l" ; + lv2:name "Out left" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 8 ; + lv2:symbol "out_r" ; + lv2:name "Out right" ; + ] . diff --git a/plugins/LV2/src/Compresaturator/manifest.ttl.in b/plugins/LV2/src/Compresaturator/manifest.ttl.in new file mode 100644 index 0000000..052045a --- /dev/null +++ b/plugins/LV2/src/Compresaturator/manifest.ttl.in @@ -0,0 +1,6 @@ +airwindows:compresaturator + a lv2:Plugin ; + doap:name "Airwindows Compresaturator" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . -- cgit v1.2.3