comparison dsp/signalconditioning/DFProcess.h @ 299:5f2c9119a94a

* A few fixes prompted by vamp-plugin-tester
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 08 Jun 2009 12:30:20 +0000
parents 343915d55ec5
children e5907ae6de17
comparison
equal deleted inserted replaced
298:255e431ae3d4 299:5f2c9119a94a
38 void initialise( DFProcConfig Config ); 38 void initialise( DFProcConfig Config );
39 void deInitialise(); 39 void deInitialise();
40 void removeDCNormalize( double *src, double*dst ); 40 void removeDCNormalize( double *src, double*dst );
41 void medianFilter( double* src, double* dst ); 41 void medianFilter( double* src, double* dst );
42 42
43 unsigned int m_length; 43 int m_length;
44 unsigned int m_FFOrd; 44 int m_FFOrd;
45 45
46 unsigned int m_winPre; 46 int m_winPre;
47 unsigned int m_winPost; 47 int m_winPost;
48 48
49 double m_alphaNormParam; 49 double m_alphaNormParam;
50 50
51 double* filtSrc; 51 double* filtSrc;
52 double* filtDst; 52 double* filtDst;