Home | History | Annotate | Download | only in libmediaplayerservice

Lines Matching refs:bufferCount

1535         audio_format_t format, int bufferCount,
1543 format, bufferCount, mSessionId, flags);
1570 if (bufferCount == 0) {
1572 bufferCount = (suggestedFrameCount + framesPerBuffer - 1) / framesPerBuffer;
1574 // Check argument bufferCount against the mininum buffer count
1575 if (bufferCount != 0 && bufferCount < mMinBufferCount) {
1576 ALOGV("bufferCount (%d) increased to %d", bufferCount, mMinBufferCount);
1577 bufferCount = mMinBufferCount;
1581 frameCount = bufferCount * framesPerBuffer;