Mercurial > hg > qm-dsp
diff dsp/rateconversion/Decimator.h @ 55:7fe29d8a7eaf
* Various fixes related to the bar estimator code
author | cannam |
---|---|
date | Tue, 10 Feb 2009 16:37:11 +0000 |
parents | 5bec06ecc88a |
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;