Home
last modified time | relevance | path

Searched refs:indexN (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libaudioprocessing/
DAudioResamplerFirProcess.h390 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir() local
392 const TC* coefsN = coefs + indexN*halfNumCoefs; in fir()
403 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir() local
405 const TC* coefsN = coefs + indexN*halfNumCoefs; in fir()
DAudioResamplerSinc.cpp414 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift; in filterCoefficient() local
419 indexN *= offset; in filterCoefficient()
422 int32_t const* coefsN = mFirCoefs + indexN; in filterCoefficient()