Mercurial > hg > qm-dsp
comparison dsp/signalconditioning/DFProcess.h @ 489:701233f8ed41
Make include-guards consistent
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 31 May 2019 16:48:37 +0100 |
parents | fdaa63607c15 |
children | b1f72e469ec8 |
comparison
equal
deleted
inserted
replaced
488:7992d0923626 | 489:701233f8ed41 |
---|---|
19 published by the Free Software Foundation; either version 2 of the | 19 published by the Free Software Foundation; either version 2 of the |
20 License, or (at your option) any later version. See the file | 20 License, or (at your option) any later version. See the file |
21 COPYING included with this distribution for more information. | 21 COPYING included with this distribution for more information. |
22 */ | 22 */ |
23 | 23 |
24 #ifndef CDFPROCESS_H | 24 #ifndef QM_DSP_DFPROCESS_H |
25 #define CDFPROCESS_H | 25 #define QM_DSP_DFPROCESS_H |
26 | 26 |
27 #include <stdio.h> | 27 #include <stdio.h> |
28 #include "FiltFilt.h" | 28 #include "FiltFilt.h" |
29 | 29 |
30 struct DFProcConfig{ | 30 struct DFProcConfig{ |
57 public: | 57 public: |
58 DFProcess( DFProcConfig Config ); | 58 DFProcess( DFProcConfig Config ); |
59 virtual ~DFProcess(); | 59 virtual ~DFProcess(); |
60 | 60 |
61 void process( double* src, double* dst ); | 61 void process( double* src, double* dst ); |
62 | |
63 | 62 |
64 private: | 63 private: |
65 void initialise( DFProcConfig Config ); | 64 void initialise( DFProcConfig Config ); |
66 void deInitialise(); | 65 void deInitialise(); |
67 void removeDCNormalize( double *src, double*dst ); | 66 void removeDCNormalize( double *src, double*dst ); |