Home | History | Annotate | Download | only in libmedia

Lines Matching refs:loopCount

437         // would not stop until loopCount reaches 0).
586 status_t AudioTrack::setLoop(uint32_t loopStart, uint32_t loopEnd, int loopCount)
589 return setLoop_l(loopStart, loopEnd, loopCount);
593 status_t AudioTrack::setLoop_l(uint32_t loopStart, uint32_t loopEnd, int loopCount)
599 loopCount == 0) {
602 cblk->loopCount = 0;
614 ALOGE("setLoop invalid value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, user %d", loopStart, loopEnd, loopCount, cblk->frameCount, cblk->user);
626 cblk->loopCount = loopCount;
627 mLoopCount = loopCount;
1216 while (mLoopCount > cblk->loopCount) {
1217 int loopCount = -1;
1219 if (mLoopCount >= 0) loopCount = mLoopCount;
1221 mCbf(EVENT_LOOP_END, mUserData, (void *)&loopCount);
1360 setLoop_l(cblk->loopStart, cblk->loopEnd, cblk->loopCount);
1512 loopStart(UINT_MAX), loopEnd(UINT_MAX), loopCount(0), mVolumeLR(0x10001000),
1587 if (--loopCount == 0) {
1652 if (loopCount >= 0) {
1653 frames = (loopEnd - loopStart)*loopCount + u - s;