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

  /frameworks/av/media/libaudioprocessing/
AudioResamplerDyn.cpp 400 const uint32_t phaseWrapLimit = c.mL << c.mShift;
403 * phaseWrapLimit / oldPhaseWrapLimit;
404 mPhaseFraction %= phaseWrapLimit; // should not do anything, but just in case.
405 mPhaseIncrement = static_cast<uint32_t>(static_cast<uint64_t>(phaseWrapLimit)
510 const uint32_t phaseWrapLimit = c.mL << c.mShift;
512 / phaseWrapLimit;
517 // " phaseIncrement:%u phaseFraction:%u phaseWrapLimit:%u",
518 // inFrameCount, outFrameCount, phaseIncrement, phaseFraction, phaseWrapLimit);
529 // " phaseFraction:%u phaseWrapLimit:%u",
530 // inFrameCount, outputIndex, outFrameCount, phaseFraction, phaseWrapLimit);
    [all...]
AudioResamplerFirProcess.h 321 * phase >= 0 && phase < phaseWrapLimit. It can be thought of as a rational fraction
322 * of phase/phaseWrapLimit.
324 * @param phaseWrapLimit is #polyphases<<coefShift, where #polyphases is the number of polyphases
325 * in the polyphase filter. Likewise, #polyphases can be obtained as (phaseWrapLimit>>coefShift).
353 * phaseIncrement is calculated as inputSampling * phaseWrapLimit / outputSampling.
377 const uint32_t phase, const uint32_t phaseWrapLimit,
390 uint32_t indexN = (phaseWrapLimit - phase) >> coefShift;
403 uint32_t indexN = (phaseWrapLimit - phase - 1) >> coefShift; // one's complement.

Completed in 326 milliseconds