Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioprocessing/
DAudioResamplerSinc.cpp97 c->pShift = kNumPhaseBits - c->coefsBits - pLerpBits; in init_routine()
98 c->pMask = ((1<< pLerpBits)-1) << c->pShift; in init_routine()
134 c->pShift = kNumPhaseBits - c->coefsBits - pLerpBits; in init_routine()
135 c->pMask = ((1<<pLerpBits)-1) << c->pShift; in init_routine()
414 uint32_t lerpP = ( phase & c.pMask) >> c.pShift; in filterCoefficient()
416 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift; in filterCoefficient()
DAudioResamplerSinc.h84 int pShift; member