Home | History | Annotate | Download | only in libmedia

Lines Matching refs:minFrames

1542     uint32_t minFrames = ~0;
1544 minFrames = markerPosition - position;
1546 if (loopPeriod > 0 && loopPeriod < minFrames) {
1547 minFrames = loopPeriod;
1549 if (updatePeriod > 0 && updatePeriod < minFrames) {
1550 minFrames = updatePeriod;
1555 if (kPoll > 0 && mTransfer == TRANSFER_CALLBACK && kPoll * notificationFrames < minFrames) {
1556 minFrames = kPoll * notificationFrames;
1561 if (minFrames != (uint32_t) ~0) {
1564 ns = ((minFrames * 1000000000LL) / sampleRate) + kFudgeNs;