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

  /frameworks/base/media/libmedia/
AudioTrack.cpp 61 int afFrameCount;
62 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
71 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
74 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
75 afFrameCount * minBufCount * sampleRate / afSampleRate;
732 int afFrameCount;
733 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
748 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
751 int minFrameCount = (afFrameCount*sampleRate*minBufCount)/afSampleRate;
    [all...]
  /frameworks/media/libvideoeditor/lvpp/
VideoEditorPlayer.cpp 398 int afFrameCount;
401 if (AudioSystem::getOutputFrameCount(&afFrameCount, mStreamType) !=
410 frameCount = (sampleRate*afFrameCount*bufferCount)/afSampleRate;
  /frameworks/base/media/jni/soundpool/
SoundPool.cpp 571 int afFrameCount;
574 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
575 afFrameCount = kDefaultFrameCount;
582 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate;
  /system/media/wilhelm/src/android/
AudioPlayer_to_android.cpp 170 int afFrameCount;
171 if (android::AudioSystem::getOutputFrameCount(&afFrameCount,
181 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
184 return (afFrameCount*sampleRate*minBufCount)/afSampleRate;
    [all...]
  /frameworks/base/core/jni/
android_media_AudioTrack.cpp 176 int afFrameCount;
178 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
    [all...]
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp     [all...]

Completed in 238 milliseconds