Mercurial > hg > qm-dsp
diff dsp/rateconversion/Resampler.h @ 364:01d7da967123
Save extra samples from one process to next (+ other fixes and debug out)
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 14 Oct 2013 08:15:51 +0100 |
parents | 2fe2ab316c8e |
children | 54c9e0811ae7 |
line wrap: on
line diff
--- a/dsp/rateconversion/Resampler.h Sun Oct 13 12:47:50 2013 +0100 +++ b/dsp/rateconversion/Resampler.h Mon Oct 14 08:15:51 2013 +0100 @@ -55,10 +55,10 @@ Phase *m_phaseData; int m_phase; - double *m_buffer; + std::vector<double> m_buffer; void initialise(); - double reconstructOne(const double **); + double reconstructOne(const double *); }; #endif