Lines Matching refs:framesOut
7909 size_t framesOut = activeTrack->mSink.frameCount; in threadLoop() local
7910 LOG_ALWAYS_FATAL_IF((status == OK) != (framesOut > 0)); in threadLoop()
7920 if (framesOut == 0 || framesIn == 0) { in threadLoop()
7928 framesOut = min(framesOut, in threadLoop()
7936 buffer.frameCount = framesOut; in threadLoop()
7939 ALOGV_IF(buffer.frameCount != framesOut, in threadLoop()
7941 __func__, buffer.frameCount, framesOut); in threadLoop()
7942 framesOut = buffer.frameCount; in threadLoop()
7946 framesOut = 0; in threadLoop()
7953 framesOut = activeTrack->mRecordBufferConverter->convert( in threadLoop()
7956 framesOut); in threadLoop()
7959 if (framesOut > 0 && (overrun == OVERRUN_UNKNOWN)) { in threadLoop()
7964 if (framesOut > 0) { in threadLoop()
7965 activeTrack->mSink.frameCount = framesOut; in threadLoop()
7969 memset(activeTrack->mSink.raw, 0, framesOut * activeTrack->frameSize()); in threadLoop()
7976 activeTrack->mFramesToDrop -= (ssize_t)framesOut; in threadLoop()
7981 activeTrack->mFramesToDrop += framesOut; in threadLoop()
7995 if (framesOut == 0) { in threadLoop()