diff dsp/onsets/DetectionFunction.h @ 279:c8908cdc8c32

* First cut at Matthew's downbeat estimator -- untested so far
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 10 Feb 2009 12:52:43 +0000
parents a98dd8ec96f8
children 7fe29d8a7eaf
line wrap: on
line diff
--- a/dsp/onsets/DetectionFunction.h	Mon Feb 09 16:05:32 2009 +0000
+++ b/dsp/onsets/DetectionFunction.h	Tue Feb 10 12:52:43 2009 +0000
@@ -23,7 +23,6 @@
 #define DF_BROADBAND (5)
 
 struct DFConfig{
-    double stepSecs; // DF step in seconds
     unsigned int stepSize; // DF step in samples
     unsigned int frameLength; // DF analysis window - usually 2*step
     int DFType; // type of detection function ( see defines )
@@ -59,7 +58,6 @@
     int m_DFType;
     unsigned int m_dataLength;
     unsigned int m_halfLength;
-    double m_stepSecs;
     unsigned int m_stepSize;
     double m_dbRise;
     bool m_whiten;