Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DAudioResamplerSinc.cpp345 c->pShift = kNumPhaseBits - c->coefsBits - pLerpBits; in init_routine()
346 c->pMask = ((1<< pLerpBits)-1) << c->pShift; in init_routine()
382 c->pShift = kNumPhaseBits - c->coefsBits - pLerpBits; in init_routine()
383 c->pMask = ((1<<pLerpBits)-1) << c->pShift; in init_routine()
656 uint32_t lerpP = ( phase & c.pMask) >> c.pShift; in filterCoefficient()
658 uint32_t lerpN = ((ONE-phase) & c.pMask) >> c.pShift; in filterCoefficient()
DAudioResamplerSinc.h84 int pShift; member