Mercurial > hg > qm-dsp
diff dsp/tempotracking/TempoTrack.h @ 39:200677638f5b
* Updated tempo tracking code from Matthew Davies
author | cannam |
---|---|
date | Fri, 01 Feb 2008 16:45:14 +0000 |
parents | 2e3f5d2d62c1 |
children | 38bf09927942 |
line wrap: on
line diff
--- a/dsp/tempotracking/TempoTrack.h Thu Jan 31 13:01:48 2008 +0000 +++ b/dsp/tempotracking/TempoTrack.h Fri Feb 01 16:45:14 2008 +0000 @@ -77,6 +77,7 @@ double m_lockedTempo; double* m_tempoScratch; + double* m_smoothRCF; // Smoothed Output of Comb Filterbank (m_tempoScratch) // Processing Buffers double* m_rawDFFrame; // Original Detection Function Analysis Frame @@ -91,9 +92,16 @@ Framer m_DFFramer; DFProcess* m_DFConditioning; Correlation m_correlator; - // Config structure for DFProcess DFProcConfig m_DFPParams; + + // also want to smooth m_tempoScratch + DFProcess* m_RCFConditioning; + // Config structure for RCFProcess + DFProcConfig m_RCFPParams; + + + }; #endif