Searched refs:dspFrames (Results 1 – 9 of 9) sorted by relevance
/frameworks/av/media/libmedia/ |
D | IAudioFlinger.cpp | 528 virtual status_t getRenderPosition(size_t *halFrames, size_t *dspFrames, in getRenderPosition() argument 542 if (dspFrames) { in getRenderPosition() 543 *dspFrames = tmp; in getRenderPosition() 1017 size_t dspFrames; in onTransact() local 1018 status_t status = getRenderPosition(&halFrames, &dspFrames, output); in onTransact() 1022 reply->writeInt32(dspFrames); in onTransact()
|
D | AudioSystem.cpp | 374 size_t *dspFrames, audio_stream_type_t stream) in getRenderPosition() argument 387 return af->getRenderPosition(halFrames, dspFrames, output); in getRenderPosition()
|
D | AudioTrack.cpp | 761 uint32_t dspFrames = 0; in getPosition() local 771 AudioSystem::getRenderPosition(mOutput, &halFrames, &dspFrames); in getPosition() 773 *position = dspFrames; in getPosition()
|
/frameworks/av/include/media/ |
D | IAudioFlinger.h | 170 virtual status_t getRenderPosition(size_t *halFrames, size_t *dspFrames,
|
D | AudioSystem.h | 131 size_t *dspFrames,
|
/frameworks/av/services/audioflinger/ |
D | AudioFlinger.h | 189 virtual status_t getRenderPosition(size_t *halFrames, size_t *dspFrames,
|
D | Threads.h | 449 status_t getRenderPosition(size_t *halFrames, size_t *dspFrames);
|
D | Threads.cpp | 1723 status_t AudioFlinger::PlaybackThread::getRenderPosition(size_t *halFrames, size_t *dspFrames) in getRenderPosition() argument 1725 if (halFrames == NULL || dspFrames == NULL) { in getRenderPosition() 1738 *dspFrames = framesWritten >= latencyFrames ? framesWritten - latencyFrames : 0; in getRenderPosition() 1741 return mOutput->stream->get_render_position(mOutput->stream, dspFrames); in getRenderPosition()
|
D | AudioFlinger.cpp | 1047 status_t AudioFlinger::getRenderPosition(size_t *halFrames, size_t *dspFrames, in getRenderPosition() argument 1056 return playbackThread->getRenderPosition(halFrames, dspFrames); in getRenderPosition()
|