Remove AudioDSPTools dependency. Do simple DC blocker instead of HPF.

This commit is contained in:
Mike Oliphant
2023-10-17 12:25:14 -07:00
parent 34c7628202
commit 34be69df6d
5 changed files with 16 additions and 22 deletions
+2 -2
View File
@@ -22,7 +22,6 @@
#include <lv2/units/units.h>
#include <NAM/dsp.h>
#include <dsp/RecursiveLinearFilter.h>
#define PlUGIN_URI "http://github.com/mikeoliphant/neural-amp-modeler-lv2"
#define MODEL_URI PlUGIN_URI "#model"
@@ -73,7 +72,8 @@ namespace NAM {
::DSP* currentModel = nullptr;
std::string currentModelPath;
recursive_linear_filter::HighPass mHighPass;
float prevDCInput = 0;
float prevDCOutput = 0;
Plugin();
~Plugin();