Home | History | Annotate | Download | only in libaudioclient

Lines Matching refs:localState

904         StaticAudioTrackState *localState, const StaticAudioTrackState &update) const
906 if (localState->mLoopSequence != update.mLoopSequence) {
910 size_t position = localState->mPosition;
927 localState->mPosition = position;
928 localState->mLoopCount = update.mLoopCount;
929 localState->mLoopEnd = loopEnd;
930 localState->mLoopStart = loopStart;
931 localState->mLoopSequence = update.mLoopSequence;
937 StaticAudioTrackState *localState, const StaticAudioTrackState &update) const
939 if (localState->mPositionSequence != update.mPositionSequence) {
942 } else if (localState->mLoopCount != 0 && update.mPosition >= localState->mLoopEnd) {
943 localState->mLoopCount = 0; // disable loop count if position is beyond loop end.
945 localState->mPosition = update.mPosition;
946 localState->mPositionSequence = update.mPositionSequence;