Home
last modified time | relevance | path

Searched refs:dspFrames (Results 1 – 9 of 9) sorted by relevance

/frameworks/av/media/libmedia/
DIAudioFlinger.cpp528 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()
DAudioSystem.cpp374 size_t *dspFrames, audio_stream_type_t stream) in getRenderPosition() argument
387 return af->getRenderPosition(halFrames, dspFrames, output); in getRenderPosition()
DAudioTrack.cpp761 uint32_t dspFrames = 0; in getPosition() local
771 AudioSystem::getRenderPosition(mOutput, &halFrames, &dspFrames); in getPosition()
773 *position = dspFrames; in getPosition()
/frameworks/av/include/media/
DIAudioFlinger.h170 virtual status_t getRenderPosition(size_t *halFrames, size_t *dspFrames,
DAudioSystem.h131 size_t *dspFrames,
/frameworks/av/services/audioflinger/
DAudioFlinger.h189 virtual status_t getRenderPosition(size_t *halFrames, size_t *dspFrames,
DThreads.h449 status_t getRenderPosition(size_t *halFrames, size_t *dspFrames);
DThreads.cpp1723 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()
DAudioFlinger.cpp1047 status_t AudioFlinger::getRenderPosition(size_t *halFrames, size_t *dspFrames, in getRenderPosition() argument
1056 return playbackThread->getRenderPosition(halFrames, dspFrames); in getRenderPosition()