Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioclient/aidl/android/media/
DCreateTrackResponse.aidl41 long afFrameCount;
/frameworks/av/media/libaudioclient/
DIAudioFlinger.cpp112 aidl.afFrameCount = VALUE_OR_RETURN(convertIntegral<int64_t>(afFrameCount)); in toAidl()
141 legacy.afFrameCount = VALUE_OR_RETURN(convertIntegral<size_t>(aidl.afFrameCount)); in fromAidl()
DAudioTrack.cpp138 size_t afFrameCount; in getMinFrameCount() local
139 status = AudioSystem::getOutputFrameCount(&afFrameCount, streamType); in getMinFrameCount()
155 *frameCount = AudioSystem::calculateMinFrameCount(afLatency, afFrameCount, afSampleRate, in getMinFrameCount()
167 __func__, *frameCount, afFrameCount, afSampleRate, afLatency); in getMinFrameCount()
1907 mAfFrameCount = output.afFrameCount; in createTrack_l()
DAudioSystem.cpp401 uint32_t afLatencyMs, uint32_t afFrameCount, uint32_t afSampleRate, in calculateMinFrameCount() argument
404 uint32_t minBufCount = afLatencyMs / ((1000 * afFrameCount) / afSampleRate); in calculateMinFrameCount()
417 afLatencyMs, afFrameCount, afSampleRate, sampleRate, speed, minBufCount in calculateMinFrameCount()
420 sampleRate, afFrameCount, afSampleRate, speed); in calculateMinFrameCount()
/frameworks/av/media/libmediaplayerservice/
DMediaPlayerService.cpp2112 size_t afFrameCount; in open() local
2113 if (AudioSystem::getOutputFrameCount(&afFrameCount, mStreamType) != NO_ERROR) { in open()
2123 (unsigned long long)sampleRate * afFrameCount / afSampleRate; in open()
/frameworks/av/media/libaudioclient/include/media/
DAudioSystem.h198 uint32_t afLatencyMs, uint32_t afFrameCount, uint32_t afSampleRate,
DIAudioFlinger.h118 size_t afFrameCount; variable
/frameworks/av/services/audioflinger/
DAudioFlinger.cpp1121 output.afFrameCount = thread->frameCount(); in createTrack()