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 70 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
71 if (minBufCount < 2) {
72 minBufCount = 2;
75 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
76 afFrameCount * minBufCount * sampleRate / afSampleRate;
77 ALOGV("getMinFrameCount=%d: afFrameCount=%d, minBufCount=%d, afSampleRate=%d, afLatency=%d",
78 *frameCount, afFrameCount, minBufCount, afSampleRate, afLatency);
915 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
916 ALOGV("afFrameCount=%d, minBufCount=%d, afSampleRate=%u, afLatency=%d",
917 afFrameCount, minBufCount, afSampleRate, afLatency)
    [all...]
  /frameworks/av/services/audioflinger/
Threads.cpp 142 // See the client's minBufCount and mNotificationFramesAct calculations for details.
    [all...]

Completed in 49 milliseconds