Home | History | Annotate | Download | only in libmedia

Lines Matching defs:loopCount

403         // would not stop until loopCount reaches 0).
551 status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount)
554 return setLoop_l(loopStart, loopEnd, loopCount);
558 status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount)
568 if (loopCount == 0) {
571 cblk->loopCount = 0;
579 loopCount %d, framecount %d, "
580 "user %d", loopStart, loopEnd, loopCount, mFrameCount, cblk->user);
593 cblk->loopCount = loopCount;
594 mLoopCount = loopCount;
1269 while (mLoopCount > cblk->loopCount) {
1270 int loopCount = -1;
1272 if (mLoopCount >= 0) loopCount = mLoopCount;
1274 mCbf(EVENT_LOOP_END, mUserData, (void *)&loopCount);
1420 setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount);