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

  /frameworks/av/media/libmedia/
AudioTrack.cpp 60 size_t afFrameCount;
61 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
70 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
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);
871 size_t afFrameCount;
872 status = AudioSystem::getFrameCount(output, streamType, &afFrameCount);
917 frameCount = afFrameCount;
    [all...]
SoundPool.cpp 569 size_t afFrameCount;
572 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
573 afFrameCount = kDefaultFrameCount;
580 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPlayer.cpp 410 size_t afFrameCount;
413 if (AudioSystem::getOutputFrameCount(&afFrameCount, mStreamType) !=
422 frameCount = (sampleRate*afFrameCount*bufferCount)/afSampleRate;
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp     [all...]
  /frameworks/base/core/jni/
android_media_AudioTrack.cpp 205 size_t afFrameCount;
207 if (AudioSystem::getOutputFrameCount(&afFrameCount, (audio_stream_type_t) streamType) != NO_ERROR) {
    [all...]

Completed in 3168 milliseconds