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 --- plugins/LV2/src/Calibre/Calibre.cpp | 40 +++++++++++++++++++ plugins/LV2/src/Calibre/Calibre.h | 40 +++++++++++++++++++ plugins/LV2/src/Calibre/Calibre.ttl | 68 +++++++++++++++++++++++++++++++++ plugins/LV2/src/Calibre/manifest.ttl.in | 6 +++ 4 files changed, 154 insertions(+) create mode 100644 plugins/LV2/src/Calibre/Calibre.cpp create mode 100644 plugins/LV2/src/Calibre/Calibre.h create mode 100644 plugins/LV2/src/Calibre/Calibre.ttl create mode 100644 plugins/LV2/src/Calibre/manifest.ttl.in (limited to 'plugins/LV2/src/Calibre') diff --git a/plugins/LV2/src/Calibre/Calibre.cpp b/plugins/LV2/src/Calibre/Calibre.cpp new file mode 100644 index 0000000..2b08e8b --- /dev/null +++ b/plugins/LV2/src/Calibre/Calibre.cpp @@ -0,0 +1,40 @@ +#include "Calibre.h" +#include +#include + +Calibre::Calibre(double rate) + : LV2Plugin(rate) +{ +} + +void Calibre::activate() +{ + A = 0.74; + B = 0.3333333; + C = 0.3333333; + D = 1.0; + for(int count = 0; count < 34; count++) {bR[count] = 0;bL[count] = 0;} + lastSampleR = 0.0;lastSampleL = 0.0; + fpd = 17; + //this is reset: values being initialized only once. Startup values, whatever they are. + +} + +void Calibre::run(uint32_t num_samples) +{ + A = *params[0]; + B = *params[1]; + C = *params[2]; + D = *params[3]; + + processReplacing(const_cast(in), out, num_samples); +} + +// +// Include the processing code from the VST version. +// +#include +#include "../../../LinuxVST/src/Calibre/CalibreProc.cpp" + +// Create the LV2Wrapper and register the plugin +LV2Wrapper plugin; diff --git a/plugins/LV2/src/Calibre/Calibre.h b/plugins/LV2/src/Calibre/Calibre.h new file mode 100644 index 0000000..7ec7991 --- /dev/null +++ b/plugins/LV2/src/Calibre/Calibre.h @@ -0,0 +1,40 @@ +#ifndef __Calibre_H +#define __Calibre_H + +#include + +class Calibre : public LV2Plugin<4> { +public: + Calibre(double rate); + + void activate(); + void run(uint32_t num_samples); + + static constexpr const char * URI = "https://www.airwindows.com/calibre"; + +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. + */ + + double bR[35]; + double lastSampleR; + double bL[35]; + double lastSampleL; + uint32_t fpd; + //default stuff + + float A; + float B; + float C; + float D; +}; + +#endif diff --git a/plugins/LV2/src/Calibre/Calibre.ttl b/plugins/LV2/src/Calibre/Calibre.ttl new file mode 100644 index 0000000..7ea6ce9 --- /dev/null +++ b/plugins/LV2/src/Calibre/Calibre.ttl @@ -0,0 +1,68 @@ +# Airwindows Calibre plugin description + +@prefix lv2: . +@prefix rdf: . +@prefix rdfs: . +@prefix units: . + + + a lv2:Plugin , + lv2:DistortionPlugin ; + 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 "Hardns" ; + 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 "Persnlty" ; + 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 "Drive" ; + 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:AudioPort ; + lv2:index 4 ; + lv2:symbol "in_l" ; + lv2:name "In left" ; + ] , [ + a lv2:InputPort , lv2:AudioPort ; + lv2:index 5 ; + lv2:symbol "in_r" ; + lv2:name "In right" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 6 ; + lv2:symbol "out_l" ; + lv2:name "Out left" ; + ] , [ + a lv2:OutputPort , lv2:AudioPort ; + lv2:index 7 ; + lv2:symbol "out_r" ; + lv2:name "Out right" ; + ] . diff --git a/plugins/LV2/src/Calibre/manifest.ttl.in b/plugins/LV2/src/Calibre/manifest.ttl.in new file mode 100644 index 0000000..645be4f --- /dev/null +++ b/plugins/LV2/src/Calibre/manifest.ttl.in @@ -0,0 +1,6 @@ +airwindows:calibre + a lv2:Plugin ; + doap:name "Airwindows Calibre" ; + doap:license ; + lv2:binary ; + rdfs:seeAlso . -- cgit v1.2.3