Mercurial > hg > qm-dsp
diff dsp/onsets/PeakPicking.cpp @ 410:c5e1b25d5177
Fix some uninitialised values
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 07 Sep 2015 14:00:30 +0100 |
parents | 6dd7c8bb5e3a |
children | fdaa63607c15 |
line wrap: on
line diff
--- a/dsp/onsets/PeakPicking.cpp Tue Jul 21 07:34:15 2015 +0100 +++ b/dsp/onsets/PeakPicking.cpp Mon Sep 07 14:00:30 2015 +0100 @@ -58,7 +58,7 @@ m_DFProcessingParams.winPost = Config.WinT.post; m_DFProcessingParams.AlphaNormParam = Config.alpha; m_DFProcessingParams.isMedianPositive = false; - m_DFProcessingParams.Delta = Config.delta; //add the delta threshold as an adjustable parameter + m_DFProcessingParams.delta = Config.delta; //add the delta threshold as an adjustable parameter m_DFSmoothing = new DFProcess( m_DFProcessingParams );