AnalogTapeModel

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

commit 56831989beb6f7c82c740cb9245d6359afa5321a
parent 67df9bc019f474750d6dadb556f8975e3fde861d
Author: jatinchowdhury18 <jatinchowdhury18@gmail.com>
Date:   Thu, 22 Dec 2022 12:55:26 -0800

Tweak clip gaurd level for RK2 mode
Diffstat:
MPlugin/Source/Processors/Hysteresis/HysteresisProcessor.cpp | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/Plugin/Source/Processors/Hysteresis/HysteresisProcessor.cpp b/Plugin/Source/Processors/Hysteresis/HysteresisProcessor.cpp @@ -76,6 +76,9 @@ void HysteresisProcessor::setSolver (int newSolver) switch (solver) { case RK2: + clipLevel = 8.0f; + return; + case RK4: clipLevel = 10.0f; return;