HomeSort by relevance Sort by last modified time
    Searched refs:mHalfNumCoefs (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libaudioprocessing/
AudioResamplerDyn.h 63 mL(0), mShift(0), mHalfNumCoefs(0), mFirCoefs(NULL)
70 unsigned int mHalfNumCoefs; // filter half #coefs
AudioResamplerDyn.cpp 172 mHalfNumCoefs = halfNumCoefs;
229 double tbw = firKaiserTbw(c.mHalfNumCoefs, stopBandAtten);
231 (void)posix_memalign(reinterpret_cast<void**>(&buf), 32, (c.mL+1)*c.mHalfNumCoefs*sizeof(TC));
238 firKaiserGen(buf, c.mL, c.mHalfNumCoefs, stopBandAtten, fcr, atten);
247 c.mL, c.mHalfNumCoefs, stopBandAtten, fcr, atten, tbw);
253 testFir(buf, c.mL, c.mHalfNumCoefs, fp, fs, /*passSteps*/ 1000, /*stopSteps*/ 100000,
399 mInBuffer.resize(mChannelCount, c.mHalfNumCoefs);
418 // or half the filter length (mHalfNumCoefs) must be a multiple of 8.
421 int stride = ((c.mHalfNumCoefs & 7) == 0) ? 16 : 2;
484 stride, useS32 ? "S32" : "S16", 2*c.mHalfNumCoefs, c.mShift)
    [all...]

Completed in 301 milliseconds