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

/frameworks/av/services/audioflinger/
H A DAudioResamplerCubic.cpp63 size_t inFrameCount = getInFrameCountRequired(outFrameCount); local
67 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.cpp502 size_t inFrameCount = (phaseIncrement * (uint64_t)outFrameCount + phaseFraction) local
504 // sanity check that inFrameCount is in signed 32 bit integer range.
505 ALOG_ASSERT(0 <= inFrameCount && inFrameCount < (1U << 31));
507 //ALOGV("inFrameCount:%d outFrameCount:%d"
509 // inFrameCount, outFrameCount, phaseIncrement, phaseFraction, phaseWrapLimit);
519 //ALOGV("LOOP: inFrameCount:%d outputIndex:%d outFrameCount:%d"
521 // inFrameCount, outputIndex, outFrameCount, phaseFraction, phaseWrapLimit);
526 // Buffer is empty, fetch a new one if necessary (inFrameCount > 0).
528 while (mBuffer.frameCount == 0 && inFrameCount >
[all...]
H A DAudioResamplerSinc.cpp549 size_t inFrameCount = getInFrameCountRequired(outFrameCount); local
554 mBuffer.frameCount = inFrameCount;

Completed in 64 milliseconds