HomeSort by relevance Sort by last modified time
    Searched refs:minFrameCount (Results 1 - 3 of 3) sorted by null

  /frameworks/base/media/libmedia/
AudioRecord.cpp 167 int minFrameCount = 0;
168 status_t status = getMinFrameCount(&minFrameCount, sampleRate, format, channelCount);
172 LOGV("AudioRecord::set() minFrameCount = %d", minFrameCount);
175 frameCount = minFrameCount;
176 } else if (frameCount < minFrameCount) {
AudioTrack.cpp 694 int minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate;
698 frameCount = minFrameCount;
708 if (frameCount < minFrameCount) {
710 LOGE("Invalid buffer size: minFrameCount %d, frameCount %d", minFrameCount, frameCount);
713 frameCount = minFrameCount;
    [all...]
  /frameworks/base/packages/TtsService/jni/
android_tts_SynthProxy.cpp 230 int minFrameCount = (afFrameCount * rate * minBufCount)/afSampleRate;
235 minFrameCount > 4096 ? minFrameCount : 4096,

Completed in 69 milliseconds