Home | History | Annotate | Download | only in libmedia

Lines Matching refs:minFrames

1699     uint32_t minFrames = ~0;
1701 minFrames = markerPosition - position;
1703 if (loopPeriod > 0 && loopPeriod < minFrames) {
1704 minFrames = loopPeriod;
1706 if (updatePeriod > 0 && updatePeriod < minFrames) {
1707 minFrames = updatePeriod;
1712 if (kPoll > 0 && mTransfer == TRANSFER_CALLBACK && kPoll * notificationFrames < minFrames) {
1713 minFrames = kPoll * notificationFrames;
1718 if (minFrames != (uint32_t) ~0) {
1721 ns = ((minFrames * 1000000000LL) / sampleRate) + kFudgeNs;