diff dsp/rateconversion/Decimator.h @ 280:9c403afdd9e9

* Various fixes related to the bar estimator code
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 10 Feb 2009 16:37:11 +0000
parents c8908cdc8c32
children e5907ae6de17
line wrap: on
line diff
--- a/dsp/rateconversion/Decimator.h	Tue Feb 10 12:52:43 2009 +0000
+++ b/dsp/rateconversion/Decimator.h	Tue Feb 10 16:37:11 2009 +0000
@@ -14,7 +14,7 @@
 {
 public:
     void process( const double* src, double* dst );
-    void doAntiAlias( const double* src, double* dst, unsigned int length );
+    void process( const float* src, float* dst );
 
     /**
      * Construct a Decimator to operate on input blocks of length
@@ -36,6 +36,8 @@
     void resetFilter();
     void deInitialise();
     void initialise( unsigned int inLength, unsigned int decFactor );
+    void doAntiAlias( const double* src, double* dst, unsigned int length );
+    void doAntiAlias( const float* src, double* dst, unsigned int length );
 
     unsigned int m_inputLength;
     unsigned int m_outputLength;