Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioprocessing/
DAudioResamplerFirProcess.h378 const int coefShift, const int halfNumCoefs, const TC* const coefs, in fir() argument
389 uint32_t indexP = phase >> coefShift; in fir()
390 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift; in fir()
402 uint32_t indexP = phase >> coefShift; in fir()
403 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement. in fir()
423 TC lerpP = TC(phase << (sizeof(phase)*8 - coefShift)) * scale; in fir()
428 uint32_t lerpP = phase << (sizeof(phase)*8 - coefShift) in fir()
DAudioResamplerDyn.cpp695 const int coefShift = c.mShift; in resample() local
714 coefShift, halfNumCoefs, coefs, in resample()