commit 4189b19880d30841d0a5510d49a3b921882c86e8
parent aa3f00093471e8d15a1db67b201cde2785f11881
Author: Christopher A. Oliver <[email protected]>
Date: Fri, 9 Oct 2015 13:22:45 -0400
Get Q from params; voice param filter Q gets ignored otherwise.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/DSP/FormantFilter.cpp b/src/DSP/FormantFilter.cpp
@@ -71,7 +71,7 @@ FormantFilter::FormantFilter(FilterParams *pars, Allocator *alloc, unsigned int
outgain = dB2rap(pars->getgain());
oldinput = -1.0f;
- Qfactor = 1.0f;
+ Qfactor = pars->getq();
oldQfactor = Qfactor;
firsttime = 1;
}