Home | History | Annotate | Download | only in audioflinger

Lines Matching defs:frameCount

92     const size_t frameCount = current->mFrameCount;
126 if ((!Format_isEqual(format, previousFormat)) || (frameCount != previous->mFrameCount)) {
130 if (frameCount > 0 && sampleRate > 0) {
136 readBuffer = new short[frameCount * channelCount];
137 periodNs = (frameCount * 1000000000LL) / sampleRate; // 1.00
138 underrunNs = (frameCount * 1750000000LL) / sampleRate; // 1.75
139 overrunNs = (frameCount * 500000000LL) / sampleRate; // 0.50
140 forceNs = (frameCount * 950000000LL) / sampleRate; // 0.95
141 warmupNs = (frameCount * 500000000LL) / sampleRate; // 0.50
150 dumpState->mFrameCount = frameCount;
160 const size_t frameCount = current->mFrameCount;
167 ssize_t framesRead = inputSource->read(readBuffer, frameCount,
172 LOG_ALWAYS_FATAL_IF((size_t) framesRead > frameCount);
190 memset(readBuffer, 0, frameCount * channelCount * sizeof(short));
191 readBufferState = frameCount;