Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioprocessing/
DAudioResamplerSinc.cpp94 c->cShift = kNumPhaseBits - c->coefsBits; in init_routine()
95 c->cMask = ((1<< c->coefsBits)-1) << c->cShift; in init_routine()
131 c->cShift = kNumPhaseBits - c->coefsBits; in init_routine()
132 c->cMask = ((1<<c->coefsBits)-1) << c->cShift; in init_routine()
412 uint32_t indexP = ( phase & c.cMask) >> c.cShift; in filterCoefficient()
414 uint32_t indexN = ((ONE-phase) & c.cMask) >> c.cShift; in filterCoefficient()
DAudioResamplerSinc.h82 int cShift; member