OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FIR_struct
(Results
1 - 3
of
3
) sorted by null
/external/srec/audio/AudioIn/UNIX/include/
filter.h
34
typedef struct
fir_struct
struct
46
}
FIR_struct
;
53
typeSample *pOutput,
FIR_struct
*pFIR);
55
extern
FIR_struct
* FIR_construct(unsigned int nTaps, const typeCoeff *pCoeffs, int scale, int factor_up, int factor_down);
57
extern int FIR_deconstruct(
FIR_struct
*pFIR);
59
extern void FIR_reset(
FIR_struct
*pFIR);
/external/srec/audio/AudioIn/UNIX/src/
filter.c
66
*
FIR_struct
*FIR_construct(unsigned int nTaps, FIR_type *pCoeffs)
79
FIR_struct
* FIR_construct(unsigned int nTaps, const typeCoeff *pCoeffs, int scale, int factor_up, int factor_down)
81
FIR_struct
*pFIR;
86
pFIR = malloc(sizeof(
FIR_struct
));
112
* int FIR_deconstruct(
FIR_struct
*pFIR)
124
int FIR_deconstruct(
FIR_struct
*pFIR)
139
* void FIR_reset(
FIR_struct
*pFIR)
152
void FIR_reset(
FIR_struct
*pFIR)
161
* typeSample *pOutput,
FIR_struct
*pFIR)
229
typeSample *pOutput,
FIR_struct
*pFIR
[
all
...]
audioin.c
159
static
FIR_struct
*pFIR = NULL; /* pointer to FIR structure */
[
all
...]
Completed in 69 milliseconds