Searched refs:minFrameCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp72 size_t minFrameCount; local
73 status_t status = AudioRecord::getMinFrameCount(&minFrameCount,
84 while ((bufCount * frameCount) < minFrameCount) {
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp1348 size_t minFrameCount = 0; local
1359 minFrameCount = afFrameCountHAL * mNotificationsPerBufferReq;
1366 minFrameCount = calculateMinFrameCount(
1370 if (frameCount < minFrameCount) {
1371 frameCount = minFrameCount;
2266 const size_t minFrameCount = local
2269 ALOGV("isSampleRateSpeedAllowed_l mFrameCount %zu minFrameCount %zu",
2270 mFrameCount, minFrameCount);
2271 return mFrameCount >= minFrameCount;
/frameworks/av/services/audioflinger/
H A DThreads.cpp1823 size_t minFrameCount = local
1827 if (frameCount < minFrameCount) { // including frameCount == 0
1828 frameCount = minFrameCount;
6348 const size_t minFrameCount = maxNotificationFrames * local
6350 frameCount = max(frameCount, minFrameCount);

Completed in 66 milliseconds