From 70053909c6ffd23094b13552b2c8ca6076c36681 Mon Sep 17 00:00:00 2001 From: m-m-adams Date: Thu, 9 Nov 2023 01:00:56 -0500 Subject: [PATCH] dbt format --- src/deluge/dsp/master_compressor/master_compressor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deluge/dsp/master_compressor/master_compressor.cpp b/src/deluge/dsp/master_compressor/master_compressor.cpp index f7ebce6570..dd88713ece 100644 --- a/src/deluge/dsp/master_compressor/master_compressor.cpp +++ b/src/deluge/dsp/master_compressor/master_compressor.cpp @@ -94,7 +94,7 @@ void MasterCompressor::render(StereoSample* buffer, uint16_t numSamples, q31_t v } while (++thisSample != bufferEnd); //for LEDs //9 converts to dB, quadrupled for display range since a 30db reduction is basically killing the signal - gainReduction = std::clamp(-(reduction) * 9 * 4, 0, 127); + gainReduction = std::clamp(-(reduction)*9 * 4, 0, 127); //calc compression for next round (feedback compressor) rms = calc_rms(buffer, numSamples); }