Mercurial > hg > qm-dsp
diff dsp/chromagram/Chromagram.cpp @ 495:1bea13b8f951
Style fixes in constant-Q: avoid unsigned, reuse our Window class, fix
comments
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 31 May 2019 18:25:31 +0100 |
parents | fdaa63607c15 |
children |
line wrap: on
line diff
--- a/dsp/chromagram/Chromagram.cpp Fri May 31 18:15:59 2019 +0100 +++ b/dsp/chromagram/Chromagram.cpp Fri May 31 18:25:31 2019 +0100 @@ -57,8 +57,8 @@ m_uK = m_ConstantQ->getK(); // Initialise working arrays - m_frameSize = m_ConstantQ->getfftlength(); - m_hopSize = m_ConstantQ->gethop(); + m_frameSize = m_ConstantQ->getFFTLength(); + m_hopSize = m_ConstantQ->getHop(); // Initialise FFT object m_FFT = new FFTReal(m_frameSize);