Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DAudioResamplerSinc.cpp92 c->pShift = kNumPhaseBits - c->coefsBits - pLerpBits; in init_routine()
93 c->pMask = ((1<< pLerpBits)-1) << c->pShift; in init_routine()
129 c->pShift = kNumPhaseBits - c->coefsBits - pLerpBits; in init_routine()
130 c->pMask = ((1<<pLerpBits)-1) << c->pShift; in init_routine()
406 uint32_t lerpP = ( phase & c.pMask) >> c.pShift; in filterCoefficient()
408 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift; in filterCoefficient()
DAudioResamplerSinc.h84 int pShift; member