diff dsp/rateconversion/Resampler.h @ 141:54c9e0811ae7

More resampler fixes (particularly to latency calculation) and tests
author Chris Cannam
date Mon, 14 Oct 2013 16:15:32 +0100
parents 7fe0da91e9c3
children fe267879e022
line wrap: on
line diff
--- a/dsp/rateconversion/Resampler.h	Mon Oct 14 08:19:45 2013 +0100
+++ b/dsp/rateconversion/Resampler.h	Mon Oct 14 16:15:32 2013 +0100
@@ -50,7 +50,6 @@
         int nextPhase;
         std::vector<double> filter;
         int drop;
-        int take;
     };
 
     Phase *m_phaseData;
@@ -58,7 +57,7 @@
     std::vector<double> m_buffer;
 
     void initialise();
-    double reconstructOne(const double *);
+    double reconstructOne();
 };
 
 #endif