Searched defs:minFrameCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp76 size_t minFrameCount; local
77 status_t status = AudioRecord::getMinFrameCount(&minFrameCount,
88 while ((bufCount * frameCount) < minFrameCount) {
/frameworks/av/media/libaudioclient/
H A DAudioTrack.cpp1451 size_t minFrameCount = 0; local
1462 minFrameCount = afFrameCountHAL * mNotificationsPerBufferReq;
1469 minFrameCount = calculateMinFrameCount(
1473 if (frameCount < minFrameCount) {
1474 frameCount = minFrameCount;
2408 const size_t minFrameCount = local
2411 const bool allowed = mFrameCount >= minFrameCount;
2415 "mFrameCount:%zu < minFrameCount:%zu",
2417 mFrameCount, minFrameCount);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2749 size_t minFrameCount = 0; local
2755 if (frameCount != 0 && (minFrameCount == 0 || frameCount < minFrameCount ||
2756 (frameCount == minFrameCount && thread->hasFastMixer() &&
2758 minFrameCount = frameCount;
H A DThreads.cpp1953 size_t minFrameCount = local
1957 if (frameCount < minFrameCount) { // including frameCount == 0
1958 frameCount = minFrameCount;
6709 const size_t minFrameCount = maxNotificationFrames * local
6711 frameCount = max(frameCount, minFrameCount);

Completed in 282 milliseconds