Home | History | Annotate | Download | only in httplive

Lines Matching refs:delayUs

182     int64_t delayUs = mLastPlaylistFetchTimeUs + minPlaylistAgeUs - nowUs;
183 return delayUs > 0ll ? delayUs : 0ll;
320 void PlaylistFetcher::postMonitorQueue(int64_t delayUs, int64_t minDelayUs) {
325 if (delayUs > maxDelayUs) {
327 delayUs = maxDelayUs;
331 msg->post(delayUs);
685 int64_t delayUs = mPrepared ? kMaxMonitorDelayUs : targetDurationUs / 2;
687 delayUs, bufferedDurationUs, durationToBufferUs);
690 postMonitorQueue(delayUs, mPrepared ? targetDurationUs * 2 : 0);
812 int64_t delayUs = kMaxMonitorDelayUs;
816 delayUs = mPlaylist->size() * targetDurationSecs *
819 if (delayUs > kMaxMonitorDelayUs) {
820 delayUs = kMaxMonitorDelayUs;
825 lastSeqNumberInPlaylist, delayUs, mNumRetries);
826 postMonitorQueue(delayUs);