OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pFIR
(Results
1 - 2
of
2
) sorted by null
/external/srec/audio/AudioIn/UNIX/src/
filter.c
81
FIR_struct *
pFIR
;
86
pFIR
= malloc(sizeof(FIR_struct));
87
if (
pFIR
== NULL)
92
pFIR
->z = calloc(nTaps * sizeof(typeSample), 1);
93
if (
pFIR
->z == NULL)
95
free(
pFIR
);
99
pFIR
->factor_up = factor_up;
100
pFIR
->factor_down = factor_down;
102
pFIR
->state = 0;
103
pFIR
->h = pCoeffs
[
all
...]
audioin.c
159
static FIR_struct *
pFIR
= NULL; /* pointer to FIR structure */
457
for ( x = 0, y = 0; x < iReadSamples; x +=
pFIR
->factor_down )
459
FIR_downsample (
pFIR
->factor_down, &( CodecBuffer[x] ), &( CodecBuffer[y++] ),
pFIR
);
654
for ( x = 0, y = 0; x < iReadSamples; x +=
pFIR
->factor_down )
656
FIR_downsample (
pFIR
->factor_down, &( CodecBuffer[x] ), &( CodecBuffer[y++] ),
pFIR
);
[
all
...]
Completed in 949 milliseconds