comparison 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
comparison
equal deleted inserted replaced
363:2fe2ab316c8e 364:01d7da967123
53 int take; 53 int take;
54 }; 54 };
55 55
56 Phase *m_phaseData; 56 Phase *m_phaseData;
57 int m_phase; 57 int m_phase;
58 double *m_buffer; 58 std::vector<double> m_buffer;
59 59
60 void initialise(); 60 void initialise();
61 double reconstructOne(const double **); 61 double reconstructOne(const double *);
62 }; 62 };
63 63
64 #endif 64 #endif
65 65