NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / qm-dsp / dsp / chromagram / Chromagram.h
index 37af153be314d82324be185cbaabe905647ab130..f04ffda83a612a34123e308866c40fca70d4e4d1 100644 (file)
@@ -32,17 +32,17 @@ struct ChromaConfig{
 class Chromagram
 {
 
-public:        
+public:
     Chromagram( ChromaConfig Config );
     ~Chromagram();
-       
+
     double* process( const double *data ); // time domain
     double* process( const double *real, const double *imag ); // frequency domain
     void unityNormalise( double* src );
 
     // Complex arithmetic
     double kabs( double real, double imag );
-       
+
     // Results
     unsigned int getK() { return m_uK;}
     unsigned int getFrameSize() { return m_frameSize; }
@@ -54,7 +54,7 @@ private:
 
     Window<double> *m_window;
     double *m_windowbuf;
-       
+
     double* m_chromadata;
     double m_FMin;
     double m_FMax;