HomeSort by relevance Sort by last modified time
    Searched refs:nTaps (Results 1 - 2 of 2) sorted by null

  /external/srec/audio/AudioIn/UNIX/include/
filter.h 42 unsigned int nTaps; // length of FIR filter
55 extern FIR_struct* FIR_construct(unsigned int nTaps, const typeCoeff *pCoeffs, int scale, int factor_up, int factor_down);
  /external/srec/audio/AudioIn/UNIX/src/
filter.c 66 * FIR_struct *FIR_construct(unsigned int nTaps, FIR_type *pCoeffs)
72 * nTaps - length of FIR filter
79 FIR_struct* FIR_construct(unsigned int nTaps, const typeCoeff *pCoeffs, int scale, int factor_up, int factor_down)
83 if (nTaps == 0)
92 pFIR->z = calloc(nTaps * sizeof(typeSample), 1);
104 pFIR->nTaps = nTaps;
156 memset(pFIR->z, pFIR->nTaps, sizeof(typeSample));
174 * pFIR->nTaps = 8
195 * (otherwise, update state -= nInput-1; wrap by adding nTaps if < 0
    [all...]

Completed in 29 milliseconds