Home
last modified time | relevance | path

Searched refs:loopStart (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/media/libmedia/
DAudioTrack.cpp540 status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount) in setLoop() argument
543 return setLoop_l(loopStart, loopEnd, loopCount); in setLoop()
547 status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount) in setLoop_l() argument
554 cblk->loopStart = UINT_MAX; in setLoop_l()
561 if (loopStart >= loopEnd || in setLoop_l()
562 loopEnd - loopStart > cblk->frameCount || in setLoop_l()
563 cblk->server > loopStart) { in setLoop_l()
564 …value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, user %d", loopStart, loopEnd, loopCo… in setLoop_l()
570 loopStart, loopEnd, cblk->frameCount); in setLoop_l()
574 cblk->loopStart = loopStart; in setLoop_l()
[all …]
/frameworks/base/include/media/
DAudioTrack.h283 status_t setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount);
284 status_t getLoop(uint32_t *loopStart, uint32_t *loopEnd, int *loopCount);
449 status_t setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount);
/frameworks/base/include/private/media/
DAudioTrackShared.h71 uint32_t loopStart; member
/frameworks/base/core/jni/
Dandroid_media_AudioTrack.cpp731 jint loopStart, jint loopEnd, jint loopCount) { in android_media_AudioTrack_set_loop() argument
736 return android_media_translateErrorCode( lpTrack->setLoop(loopStart, loopEnd, loopCount) ); in android_media_AudioTrack_set_loop()