comparison garage-resampler/Resampler.h @ 2:bda8d2e803ee

Save extra samples from one process to next (+ other fixes and debug out)
author Chris Cannam
date Mon, 14 Oct 2013 08:15:51 +0100
parents af48ddb3542a
children 1c3ab56ee9b5
comparison
equal deleted inserted replaced
1:af48ddb3542a 2:bda8d2e803ee
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