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

  /frameworks/av/media/libmedia/
AudioTrack.cpp 67 int afFrameCount;
68 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
77 uint32_t minBufCount = afLatency / ((1000 * afFrameCount) / afSampleRate);
80 *frameCount = (sampleRate == 0) ? afFrameCount * minBufCount :
81 afFrameCount * minBufCount * sampleRate / afSampleRate;
82 ALOGV("getMinFrameCount=%d: afFrameCount=%d, minBufCount=%d, afSampleRate=%d, afLatency=%d",
83 *frameCount, afFrameCount, minBufCount, afSampleRate, afLatency);
788 int afFrameCount;
789 if (AudioSystem::getFrameCount(output, streamType, &afFrameCount) != NO_ERROR) {
792 frameCount = afFrameCount;
    [all...]
SoundPool.cpp 571 int afFrameCount;
574 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) {
575 afFrameCount = kDefaultFrameCount;
582 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorPlayer.cpp 410 int afFrameCount;
413 if (AudioSystem::getOutputFrameCount(&afFrameCount, mStreamType) !=
422 frameCount = (sampleRate*afFrameCount*bufferCount)/afSampleRate;
  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.cpp 173 int afFrameCount;
174 if (android::AudioSystem::getOutputFrameCount(&afFrameCount,
184 uint32_t minBufCount = afLatency / ((1000 * afFrameCount)/afSampleRate);
187 return (afFrameCount*sampleRate*minBufCount)/afSampleRate;
    [all...]
  /frameworks/base/core/jni/
android_media_AudioTrack.cpp 210 int afFrameCount;
212 if (AudioSystem::getOutputFrameCount(&afFrameCount, (audio_stream_type_t) streamType) != NO_ERROR) {
    [all...]
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerService.cpp     [all...]

Completed in 681 milliseconds