Searched defs:inFrameCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerCubic.cpp64 size_t inFrameCount = getInFrameCountRequired(outFrameCount); local
68 mBuffer.frameCount = inFrameCount;
98 mBuffer.frameCount = inFrameCount;
131 size_t inFrameCount = getInFrameCountRequired(outFrameCount); local
135 mBuffer.frameCount = inFrameCount;
166 mBuffer.frameCount = inFrameCount;
H A DAudioResamplerDyn.cpp511 size_t inFrameCount = (phaseIncrement * (uint64_t)outFrameCount + phaseFraction) local
513 // sanity check that inFrameCount is in signed 32 bit integer range.
514 ALOG_ASSERT(0 <= inFrameCount && inFrameCount < (1U << 31));
516 //ALOGV("inFrameCount:%d outFrameCount:%d"
518 // inFrameCount, outFrameCount, phaseIncrement, phaseFraction, phaseWrapLimit);
528 //ALOGV("LOOP: inFrameCount:%d outputIndex:%d outFrameCount:%d"
530 // inFrameCount, outputIndex, outFrameCount, phaseFraction, phaseWrapLimit);
535 // Buffer is empty, fetch a new one if necessary (inFrameCount > 0).
537 while (mBuffer.frameCount == 0 && inFrameCount >
[all...]
H A DAudioResamplerSinc.cpp306 size_t inFrameCount = getInFrameCountRequired(outFrameCount); local
311 mBuffer.frameCount = inFrameCount;

Completed in 1556 milliseconds