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

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp62 size_t minFrameCount; local
63 status_t status = AudioRecord::getMinFrameCount(&minFrameCount,
74 while ((bufCount * frameCount) < minFrameCount) {
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp1059 size_t minFrameCount = afFrameCount * minBufCount * uint64_t(mSampleRate) / afSampleRate; local
1060 ALOGV("minFrameCount: %zu, afFrameCount=%zu, minBufCount=%d, sampleRate=%u, afSampleRate=%u"
1062 minFrameCount, afFrameCount, minBufCount, mSampleRate, afSampleRate, afLatency);
1065 frameCount = minFrameCount;
1066 } else if (frameCount < minFrameCount) {
1069 frameCount, minFrameCount);
1070 frameCount = minFrameCount;
/frameworks/av/services/audioflinger/
H A DThreads.cpp1432 size_t minFrameCount = mNormalFrameCount * minBufCount; local
1433 if (frameCount < minFrameCount) {
1434 frameCount = minFrameCount;
5703 const size_t minFrameCount = maxNotificationFrames *
5705 frameCount = max(frameCount, minFrameCount);

Completed in 839 milliseconds