Searched defs: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.cpp1042 size_t minFrameCount = afFrameCount * minBufCount * uint64_t(mSampleRate) / afSampleRate; local
1043 ALOGV("minFrameCount: %zu, afFrameCount=%zu, minBufCount=%d, sampleRate=%u, afSampleRate=%u"
1045 minFrameCount, afFrameCount, minBufCount, mSampleRate, afSampleRate, afLatency);
1048 frameCount = minFrameCount;
1049 } else if (frameCount < minFrameCount) {
1052 frameCount, minFrameCount);
1053 frameCount = minFrameCount;
/frameworks/av/services/audioflinger/
H A DThreads.cpp1434 size_t minFrameCount = mNormalFrameCount * minBufCount; local
1435 if (frameCount < minFrameCount) {
1436 frameCount = minFrameCount;
5596 const size_t minFrameCount = maxNotificationFrames *
5598 frameCount = max(frameCount, minFrameCount);

Completed in 128 milliseconds