HomeSort by relevance Sort by last modified time
    Searched defs:inFrameCount (Results 1 - 3 of 3) sorted by null

  /frameworks/av/services/audioflinger/
AudioResamplerCubic.cpp 64 size_t inFrameCount = getInFrameCountRequired(outFrameCount);
68 mBuffer.frameCount = inFrameCount;
99 mBuffer.frameCount = inFrameCount;
133 size_t inFrameCount = getInFrameCountRequired(outFrameCount);
137 mBuffer.frameCount = inFrameCount;
168 mBuffer.frameCount = inFrameCount;
AudioResamplerDyn.cpp 502 size_t inFrameCount = (phaseIncrement * (uint64_t)outFrameCount + phaseFraction)
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 > 0)
    [all...]
AudioResamplerSinc.cpp 298 size_t inFrameCount = getInFrameCountRequired(outFrameCount);
303 mBuffer.frameCount = inFrameCount;

Completed in 121 milliseconds