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

  /frameworks/av/media/libmedia/
AudioTrack.cpp 77 size_t afFrameCount;
78 status = AudioSystem::getOutputFrameCount(&afFrameCount, streamType);
93 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
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);
951 size_t afFrameCount;
952 status = AudioSystem::getFrameCount(output, &afFrameCount);
999 frameCount = afFrameCount;
    [all...]
SoundPool.cpp 581 size_t afFrameCount;
584 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
585 afFrameCount = kDefaultFrameCount;
592 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate;
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp     [all...]

Completed in 1533 milliseconds