From 793283850f5b162ef7535af68e9252d9cdfa856c Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Mon, 25 Feb 2019 13:28:17 +0100 Subject: [PATCH] init lpf to 0.5 --- normalize.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalize.hh b/normalize.hh index 6f939bd..c815e7c 100644 --- a/normalize.hh +++ b/normalize.hh @@ -17,7 +17,7 @@ class NormalizeSine DSP::BlockDC hpf; DSP::EMA lpf; public: - constexpr NormalizeSine() : lpf(1) + constexpr NormalizeSine() : lpf(0.5) { } void samples(int s)