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

/frameworks/av/media/libstagefright/
H A DAudioSource.cpp60 int minFrameCount; local
61 status_t status = AudioRecord::getMinFrameCount(&minFrameCount,
72 while ((bufCount * frameCount) < minFrameCount) {
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp185 int minFrameCount = 0; local
186 status_t status = getMinFrameCount(&minFrameCount, sampleRate, format, channelCount);
190 ALOGV("AudioRecord::set() minFrameCount = %d", minFrameCount);
193 frameCount = minFrameCount;
194 } else if (frameCount < minFrameCount) {
H A DAudioTrack.cpp833 int minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate; local
834 ALOGV("minFrameCount: %d, afFrameCount=%d, minBufCount=%d, sampleRate=%d, afSampleRate=%d"
836 minFrameCount, afFrameCount, minBufCount, sampleRate, afSampleRate, afLatency);
839 frameCount = minFrameCount;
849 if (frameCount < minFrameCount) {
852 frameCount, minFrameCount);
853 frameCount = minFrameCount;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1733 int minFrameCount = mNormalFrameCount * minBufCount; local
1734 if (frameCount < minFrameCount) {
1735 frameCount = minFrameCount;

Completed in 1295 milliseconds