Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DAudioResamplerFirProcess.h340 const int coefShift, const int halfNumCoefs, const TC* const coefs, in fir() argument
351 uint32_t indexP = phase >> coefShift; in fir()
352 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir()
364 uint32_t indexP = phase >> coefShift; in fir()
365 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir()
385 TC lerpP = TC(phase << (sizeof(phase)*8 - coefShift)) * scale; in fir()
390 uint32_t lerpP = phase << (sizeof(phase)*8 - coefShift) in fir()
DAudioResamplerDyn.cpp558 const int coefShift = c.mShift; in resample() local
577 coefShift, halfNumCoefs, coefs, in resample()