From c5fcdf9e5a0d2fa085864ebaed31fb00ee40c245 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 8 Nov 2015 23:32:25 +0100 Subject: [PATCH] Correct a dB comment. --- mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixer.cpp b/mixer.cpp index a91b3d8..d4678b6 100644 --- a/mixer.cpp +++ b/mixer.cpp @@ -591,7 +591,7 @@ void Mixer::process_audio_one_frame() float ratio = 20.0f; float attack_time = 0.005f; float release_time = 0.040f; - float makeup_gain = 2.0f; // +3 dB. + float makeup_gain = 2.0f; // +6 dB. compressor.process(samples_out.data(), samples_out.size() / 2, threshold, ratio, attack_time, release_time, makeup_gain); // compressor_att = compressor.get_attenuation(); } -- 2.39.2