Home | History | Annotate | Download | only in libaudioclient

Lines Matching refs:loopStart

538 void StaticAudioTrackClientProxy::setLoop(size_t loopStart, size_t loopEnd, int loopCount)
541 if (loopStart > UINT32_MAX || loopEnd > UINT32_MAX) {
545 mState.mLoopStart = (uint32_t) loopStart;
584 void StaticAudioTrackClientProxy::setBufferPositionAndLoop(size_t position, size_t loopStart,
587 setLoop(loopStart, loopEnd, loopCount);
908 const size_t loopStart = update.mLoopStart;
914 if (loopStart < loopEnd && loopEnd <= mFrameCount &&
915 loopEnd - loopStart >= MIN_LOOP) {
919 position = loopStart;
930 localState->mLoopStart = loopStart;
980 // as will not overflow if loopStart and loopEnd are Java "ints".