Asterisk - The Open Source Telephony Project
18.5.0
|
Go to the source code of this file.
Functions | |
void | AllPoleFilter (float *InOut, float *Coef, int lengthInOut, int orderCoef) |
void | AllZeroFilter (float *In, float *Coef, int lengthInOut, int orderCoef, float *Out) |
void | DownSample (float *In, float *Coef, int lengthIn, float *state, float *Out) |
void | ZeroPoleFilter (float *In, float *ZeroCoef, float *PoleCoef, int lengthInOut, int orderCoef, float *Out) |
void AllPoleFilter | ( | float * | InOut, |
float * | Coef, | ||
int | lengthInOut, | ||
int | orderCoef | ||
) |
Definition at line 19 of file filter.c.
Referenced by AbsQuantW(), iCBSearch(), and ZeroPoleFilter().
void AllZeroFilter | ( | float * | In, |
float * | Coef, | ||
int | lengthInOut, | ||
int | orderCoef, | ||
float * | Out | ||
) |
Definition at line 52 of file filter.c.
Referenced by ZeroPoleFilter().
void DownSample | ( | float * | In, |
float * | Coef, | ||
int | lengthIn, | ||
float * | state, | ||
float * | Out | ||
) |
Definition at line 110 of file filter.c.
References DELAY_DS, FACTOR_DS, FILTERORDER_DS, and stop.
Referenced by enhancerInterface().
void ZeroPoleFilter | ( | float * | In, |
float * | ZeroCoef, | ||
float * | PoleCoef, | ||
int | lengthInOut, | ||
int | orderCoef, | ||
float * | Out | ||
) |
Definition at line 80 of file filter.c.
References AllPoleFilter(), and AllZeroFilter().
Referenced by StateConstructW(), and StateSearchW().