diff dsp/signalconditioning/FiltFilt.h @ 505:930b5b0f707d

Merge branch 'codestyle-and-tidy'
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 05 Jun 2019 12:55:15 +0100
parents b1f72e469ec8
children 285f18c0992a
line wrap: on
line diff
--- a/dsp/signalconditioning/FiltFilt.h	Thu May 30 16:18:13 2019 +0100
+++ b/dsp/signalconditioning/FiltFilt.h	Wed Jun 05 12:55:15 2019 +0100
@@ -1,5 +1,4 @@
 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
-
 /*
     QM DSP Library
 
@@ -13,8 +12,8 @@
     COPYING included with this distribution for more information.
 */
 
-#ifndef FILTFILT_H
-#define FILTFILT_H
+#ifndef QM_DSP_FILTFILT_H
+#define QM_DSP_FILTFILT_H
 
 #include "Filter.h"
 
@@ -30,7 +29,7 @@
     virtual ~FiltFilt();
 
     void reset();
-    void process( double* src, double* dst, unsigned int length );
+    void process(double* src, double* dst, int length);
 
 private:
     Filter m_filter;