HomeSort by relevance Sort by last modified time
    Searched refs:targetDurationUs (Results 1 - 3 of 3) sorted by null

  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 243 int64_t targetDurationUs = mPlaylist->getTargetDuration();
267 minPlaylistAgeUs = targetDurationUs / 2;
273 minPlaylistAgeUs = (targetDurationUs * 3) / 2;
279 minPlaylistAgeUs = targetDurationUs * 3;
790 int64_t targetDurationUs = kMinBufferedDurationUs;
792 targetDurationUs = mPlaylist->getTargetDuration();
843 // (or after targetDurationUs / 2, whichever is smaller).
845 if (delayUs > targetDurationUs / 2) {
846 delayUs = targetDurationUs / 2;
945 int64_t targetDurationUs = mPlaylist->getTargetDuration()
    [all...]
LiveSession.cpp 720 int64_t targetDurationUs;
721 CHECK(msg->findInt64("targetDurationUs", &targetDurationUs));
722 mUpSwitchMark = min(kUpSwitchMarkUs, targetDurationUs * 7 / 4);
723 mDownSwitchMark = min(kDownSwitchMarkUs, targetDurationUs * 9 / 4);
724 mUpSwitchMargin = min(kUpSwitchMarginUs, targetDurationUs);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFlushFinishTests.cpp 296 const deUint64 targetDurationUs = MAX_SAMPLE_DURATION_US/100;
301 m_testCtx.getLog() << TestLog::Message << "Calibrating shader iteration count, target duration = " << targetDurationUs << " us" << TestLog::EndMessage;
318 if (curDuration > targetDurationUs)
325 const float est = (float(targetDurationUs) - b) / a;

Completed in 48 milliseconds