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

/frameworks/av/services/audioflinger/
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.cpp501 size_t inFrameCount = (phaseIncrement * (uint64_t)outFrameCount + phaseFraction) local
503 // sanity check that inFrameCount is in signed 32 bit integer range.
504 ALOG_ASSERT(0 <= inFrameCount && inFrameCount < (1U << 31));
506 //ALOGV("inFrameCount:%d outFrameCount:%d"
508 // inFrameCount, outFrameCount, phaseIncrement, phaseFraction, phaseWrapLimit);
518 //ALOGV("LOOP: inFrameCount:%d outputIndex:%d outFrameCount:%d"
520 // inFrameCount, outputIndex, outFrameCount, phaseFraction, phaseWrapLimit);
525 // Buffer is empty, fetch a new one if necessary (inFrameCount > 0).
527 while (mBuffer.frameCount == 0 && inFrameCount >
[all...]
H A DAudioResamplerSinc.cpp306 size_t inFrameCount = getInFrameCountRequired(outFrameCount); local
311 mBuffer.frameCount = inFrameCount;

Completed in 510 milliseconds