Mercurial > hg > qm-dsp
changeset 504:f1070135c8ea
Fix typo
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Wed, 05 Jun 2019 11:20:40 +0100 |
parents | b1f72e469ec8 |
children | 930b5b0f707d |
files | dsp/signalconditioning/DFProcess.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/dsp/signalconditioning/DFProcess.cpp Wed Jun 05 11:18:11 2019 +0100 +++ b/dsp/signalconditioning/DFProcess.cpp Wed Jun 05 11:20:40 2019 +0100 @@ -63,9 +63,9 @@ Filter::Parameters params; params.a = std::vector<double> - (Config.LPACoeffs, Config.LPACoeffs + Config.LPOrd + 1); + (config.LPACoeffs, config.LPACoeffs + config.LPOrd + 1); params.b = std::vector<double> - (Config.LPBCoeffs, Config.LPBCoeffs + Config.LPOrd + 1); + (config.LPBCoeffs, config.LPBCoeffs + config.LPOrd + 1); m_FiltFilt = new FiltFilt(params);