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

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp61 size_t minFrameCount; local
62 status_t status = AudioRecord::getMinFrameCount(&minFrameCount,
73 while ((bufCount * frameCount) < minFrameCount) {
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp200 size_t minFrameCount = 0; local
201 status_t status = getMinFrameCount(&minFrameCount, sampleRate, format, channelMask);
205 ALOGV("AudioRecord::set() minFrameCount = %d", minFrameCount);
208 frameCount = minFrameCount;
209 } else if (frameCount < minFrameCount) {
H A DAudioTrack.cpp821 size_t minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate; local
822 ALOGV("minFrameCount: %u, afFrameCount=%d, minBufCount=%d, sampleRate=%u, afSampleRate=%u"
824 minFrameCount, afFrameCount, minBufCount, sampleRate, afSampleRate, afLatency);
827 frameCount = minFrameCount;
837 if (frameCount < minFrameCount) {
840 frameCount, minFrameCount);
841 frameCount = minFrameCount;
/frameworks/av/services/audioflinger/
H A DThreads.cpp1167 size_t minFrameCount = mNormalFrameCount * minBufCount; local
1168 if (frameCount < minFrameCount) {
1169 frameCount = minFrameCount;

Completed in 83 milliseconds