FiltFilt.h
Go to the documentation of this file.
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2 /*
3  QM DSP Library
4 
5  Centre for Digital Music, Queen Mary, University of London.
6  This file 2005-2006 Christian Landone.
7 
8  This program is free software; you can redistribute it and/or
9  modify it under the terms of the GNU General Public License as
10  published by the Free Software Foundation; either version 2 of the
11  License, or (at your option) any later version. See the file
12  COPYING included with this distribution for more information.
13 */
14 
15 #ifndef QM_DSP_FILTFILT_H
16 #define QM_DSP_FILTFILT_H
17 
18 #include "Filter.h"
19 
25 class FiltFilt
26 {
27 public:
29  virtual ~FiltFilt();
30 
31  void process(const double *const QM_R__ src,
32  double *const QM_R__ dst,
33  const int length);
34 
35 private:
37  int m_ord;
38 };
39 
40 #endif
Zero-phase digital filter, implemented by processing the data through a filter specified by the given...
Definition: FiltFilt.h:25
#define QM_R__
Definition: Restrict.h:15
Definition: Filter.h:22
int m_ord
Definition: FiltFilt.h:37
virtual ~FiltFilt()
Definition: FiltFilt.cpp:24
void process(const double *const QM_R__ src, double *const QM_R__ dst, const int length)
Definition: FiltFilt.cpp:28
FiltFilt(Filter::Parameters)
Definition: FiltFilt.cpp:18
Filter m_filter
Definition: FiltFilt.h:36