SmartGuitarAmp

Guitar plugin made with JUCE that uses neural networks to emulate a tube amplifier
Log | Files | Refs | Submodules | README

commit 46fcc5972ab3053e1cb4be6d9c0398bfbe1f2770
parent 229faae57d82fcc621acb5b1cf743c6a31b440d9
Author: Keith Bloemer <[email protected]>
Date:   Sun, 11 Oct 2020 09:51:58 -0500

Delete ResonantLowpassFilter.h
Diffstat:
Dplugins/SmartAmp/Source/ResonantLowpassFilter.h | 35-----------------------------------
1 file changed, 0 insertions(+), 35 deletions(-)

diff --git a/plugins/SmartAmp/Source/ResonantLowpassFilter.h b/plugins/SmartAmp/Source/ResonantLowpassFilter.h @@ -1,35 +0,0 @@ -/* - ============================================================================== - - ResonantLowpassFilter - - ============================================================================== -*/ - -#pragma once - -#include "../JuceLibraryCode/JuceHeader.h" - - -//============================================================================== - -class ResonantLowpassFilter -{ -public: - ResonantLowpassFilter(); - void process (AudioBuffer<float>& buffer, MidiBuffer& midiMessages, const int numSamples, const int numInputChannels); - void setParameters(float toneKnobValue, float sampleRate); - -private: - // Tone Knob related variables - float sampleRate = 44100; //TODO set from var - float toneFrequency = 9600; - float cut_lp = toneFrequency * 2 / sampleRate; - float res_lp = 0.7; // Resonance strength (range 0 to 1) - float fb_lp = res_lp / (1 - cut_lp); - float n3 = 0.0; - float n4 = 0.0; - - //============================================================================== - JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ResonantLowpassFilter) -};