Home | History | Annotate | Download | only in src

Lines Matching full:ninput

160  * FIR_type FIR_downsample(unsigned int nInput, typeSample *pInput,
165 * Apply FIR filter to input data. If nInput > 1, this will also
166 * decimate by a factor of nInput. That is, the filter will only be
167 * evaluated every nInput samples, not at each of the nInput samples.
176 * nInput = 1
194 * Since nInput == 1, state for newest sample is still 2
195 * (otherwise, update state -= nInput-1; wrap by adding nTaps if < 0)
219 * nInput - number of new input samples; evaluate FIR at this point
228 void FIR_downsample(unsigned int nInput, typeSample *pInput,
248 for (i = 0; i < nInput; i++)
256 pFIR->state -= nInput-1;