AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit bfa667185d089a206c923eaf3e02ac948421532c
parent ba9b6c50a833149e21f0f1f838db455f5513faf5
Author: jatinchowdhury18 <[email protected]>
Date:   Sat, 18 Apr 2020 21:19:27 -0700

Fix Linux compilation issues

Diffstat:
MPlugin/Source/Processors/Chew/Dropout.h | 2+-
MPlugin/Source/Processors/Degrade/DegradeProcessor.cpp | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Plugin/Source/Processors/Chew/Dropout.h b/Plugin/Source/Processors/Chew/Dropout.h @@ -59,7 +59,7 @@ public: else if (x > 0.0f) sign = 1.0f; - return std::powf (abs (x), power) * sign / power; + return powf (abs (x), power) * sign / power; } private: diff --git a/Plugin/Source/Processors/Degrade/DegradeProcessor.cpp b/Plugin/Source/Processors/Degrade/DegradeProcessor.cpp @@ -30,7 +30,7 @@ void DegradeProcessor::processBlock (AudioBuffer<float>& buffer, MidiBuffer& mid if (*amtParam == 0.0f || *depthParam == 0.0f) return; - float freqHz = 200.0f * std::powf (20000.0f / 200.0f, 1.0f - *amtParam); + float freqHz = 200.0f * powf (20000.0f / 200.0f, 1.0f - *amtParam); float gainDB = -24.0f * *depthParam; for (int ch = 0; ch < buffer.getNumChannels(); ++ch)