#include "PurestAir.h" #include #include PurestAir::PurestAir(double rate) : LV2Plugin(rate) { } void PurestAir::activate() { A = 0.5; B = 0.0; C = 1.0; last1SampleL = 0.0; halfwaySampleL = halfDrySampleL = halfDiffSampleL = diffSampleL = 0.0; lastSampleL = 0.0; s1L = s2L = s3L = 0.0; applyL = 0.0; last1SampleR = 0.0; halfwaySampleR = halfDrySampleR = halfDiffSampleR = diffSampleR = 0.0; lastSampleR = 0.0; s1R = s2R = s3R = 0.0; applyR = 0.0; fpd = 17; //this is reset: values being initialized only once. Startup values, whatever they are. } void PurestAir::run(uint32_t num_samples) { A = *params[0]; B = *params[1]; C = *params[2]; processReplacing(const_cast(in), out, num_samples); } // // Include the processing code from the VST version. // #include #include "../../../LinuxVST/src/PurestAir/PurestAirProc.cpp" // Create the LV2Wrapper and register the plugin LV2Wrapper plugin;