comparison dsp/signalconditioning/DFProcess.h @ 74:769da847732b

* A few fixes prompted by vamp-plugin-tester
author cannam
date Mon, 08 Jun 2009 12:30:20 +0000
parents da277e8b5244
children e5907ae6de17
comparison
equal deleted inserted replaced
73:dcb555b90924 74:769da847732b
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;