Home | History | Annotate | Download | only in libmediaplayerservice

Lines Matching refs:mMinBufferCount

201 /* static */ int MediaPlayerService::AudioOutput::mMinBufferCount = 4;
1330 mMinBufferCount = 12; // to prevent systematic buffer underrun for emulator
1343 return mMinBufferCount;
1444 if (bufferCount < mMinBufferCount) {
1445 ALOGD("bufferCount (%d) is too small and increased to %d", bufferCount, mMinBufferCount);
1446 bufferCount = mMinBufferCount;