Searched defs:targetDurationUs (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp137 int64_t targetDurationUs = targetDurationSecs * 1000000ll; local
161 minPlaylistAgeUs = targetDurationUs / 2;
167 minPlaylistAgeUs = (targetDurationUs * 3) / 2;
173 minPlaylistAgeUs = targetDurationUs * 3;
612 int64_t targetDurationUs = kMinBufferedDurationUs; local
620 targetDurationUs = targetDurationSecs * 1000000ll;
624 int64_t durationToBufferUs = targetDurationUs * 3;
659 if (!mPrepared && bufferedDurationUs > targetDurationUs && downloadMore) {
663 bufferedDurationUs, targetDurationUs);
685 int64_t delayUs = mPrepared ? kMaxMonitorDelayUs : targetDurationUs /
1311 int64_t targetDurationUs = targetDurationSecs * 1000000ll; local
1623 int64_t targetDurationUs = targetDurationSecs * 1000000ll; local
[all...]
H A DLiveSession.cpp164 int64_t targetDurationUs = targetDuration * 1000000ll; local
165 if (targetDurationUs == 0 ||
166 targetDurationUs > PlaylistFetcher::kMinBufferedDurationUs) {
169 targetDurationUs = PlaylistFetcher::kMinBufferedDurationUs;
175 || packetSource->getEstimatedDurationUs() > targetDurationUs) {
1645 int64_t targetDurationUs = targetDuration * 1000000ll; local
1647 if (bufferedDurationUs < targetDurationUs / 3) {

Completed in 311 milliseconds