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

  /frameworks/av/media/libmedia/
AudioTrack.cpp 93 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
94 if (minBufCount < 2) {
95 minBufCount = 2;
98 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
99 afFrameCount * minBufCount * uint64_t(sampleRate) / afSampleRate;
107 ALOGV("getMinFrameCount=%zu: afFrameCount=%zu, minBufCount=%d, afSampleRate=%d, afLatency=%d",
108 *frameCount, afFrameCount, minBufCount, afSampleRate, afLatency);
    [all...]
  /frameworks/av/services/audioflinger/
Threads.cpp 157 // See the client's minBufCount and mNotificationFramesAct calculations for details.
    [all...]

Completed in 132 milliseconds