Home
last modified time | relevance | path

Searched refs:afFrameCount (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libaudioclient/include/media/
DIAudioFlinger.h146 afFrameCount = parcel->readInt64(); in readFromParcel()
164 (void)parcel->writeInt64(afFrameCount); in writeToParcel()
181 size_t afFrameCount; variable
DAudioSystem.h120 uint32_t afLatencyMs, uint32_t afFrameCount, uint32_t afSampleRate,
/frameworks/base/media/jni/soundpool/
DSoundPool.cpp747 size_t afFrameCount; in play() local
751 if (AudioSystem::getOutputFrameCount(&afFrameCount, streamType) != NO_ERROR) { in play()
752 afFrameCount = kDefaultFrameCount; in play()
769 uint32_t totalFrames = (kDefaultBufferCount * afFrameCount * sampleRate) / afSampleRate; in play()
/frameworks/av/media/libaudioclient/
DAudioSystem.cpp261 uint32_t afLatencyMs, uint32_t afFrameCount, uint32_t afSampleRate, in calculateMinFrameCount() argument
265 uint32_t minBufCount = afLatencyMs / ((1000 * afFrameCount) / afSampleRate); in calculateMinFrameCount()
278 afLatencyMs, afFrameCount, afSampleRate, sampleRate, speed, minBufCount in calculateMinFrameCount()
281 sampleRate, afFrameCount, afSampleRate, speed); in calculateMinFrameCount()
DAudioTrack.cpp129 size_t afFrameCount; in getMinFrameCount() local
130 status = AudioSystem::getOutputFrameCount(&afFrameCount, streamType); in getMinFrameCount()
146 *frameCount = AudioSystem::calculateMinFrameCount(afLatency, afFrameCount, afSampleRate, in getMinFrameCount()
158 __func__, *frameCount, afFrameCount, afSampleRate, afLatency); in getMinFrameCount()
1495 mAfFrameCount = output.afFrameCount; in createTrack_l()
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.cpp1893 size_t afFrameCount; in open() local
1894 if (AudioSystem::getOutputFrameCount(&afFrameCount, mStreamType) != NO_ERROR) { in open()
1904 (unsigned long long)sampleRate * afFrameCount / afSampleRate; in open()
/frameworks/av/services/audioflinger/
DAudioFlinger.cpp849 output.afFrameCount = thread->frameCount(); in createTrack()