mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 09:57:44 +01:00
update qm-dsp library
This commit is contained in:
parent
2a27cc4758
commit
f68d2e06bc
100 changed files with 58968 additions and 55091 deletions
|
|
@ -18,23 +18,22 @@
|
|||
|
||||
#include "Filter.h"
|
||||
|
||||
struct FiltFiltConfig{
|
||||
unsigned int ord;
|
||||
double* ACoeffs;
|
||||
double* BCoeffs;
|
||||
};
|
||||
|
||||
class FiltFilt
|
||||
/**
|
||||
* Zero-phase digital filter, implemented by processing the data
|
||||
* through a filter specified by the given FilterConfig structure (see
|
||||
* Filter) and then processing it again in reverse.
|
||||
*/
|
||||
class FiltFilt
|
||||
{
|
||||
public:
|
||||
FiltFilt( FiltFiltConfig Config );
|
||||
FiltFilt( FilterConfig Config );
|
||||
virtual ~FiltFilt();
|
||||
|
||||
void reset();
|
||||
void process( double* src, double* dst, unsigned int length );
|
||||
|
||||
private:
|
||||
void initialise( FiltFiltConfig Config );
|
||||
void initialise( FilterConfig Config );
|
||||
void deInitialise();
|
||||
|
||||
unsigned int m_ord;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue