Home | History | Annotate | Download | only in httplive

Lines Matching refs:timeUs

127             int64_t timeUs;
128 CHECK((*accessUnit)->meta()->findInt64("timeUs", &timeUs));
129 ALOGV("[%s] read buffer at time %lld us", streamStr, timeUs);
131 mLastDequeuedTimeUs = timeUs;
132 mRealTimeBaseUs = ALooper::GetNowUs() - timeUs;
184 status_t LiveSession::seekTo(int64_t timeUs) {
186 msg->setInt64("timeUs", timeUs);
456 0ll /* timeUs */, initialBandwidthIndex, true /* pickTrack */);
767 int64_t timeUs;
768 CHECK(msg->findInt64("timeUs", &timeUs));
771 changeConfiguration(timeUs, getBandwidthIndex());
814 int64_t timeUs, size_t bandwidthIndex, bool pickTrack) {
820 ALOGV("changeConfiguration => timeUs:%lld us, bwIndex:%d, pickTrack:%d",
821 timeUs, bandwidthIndex, pickTrack);
855 if (timeUs < 0ll) {
872 msg->setInt64("timeUs", timeUs);
897 changeConfiguration(-1ll /* timeUs */, getBandwidthIndex());
983 int64_t timeUs;
984 CHECK(msg->findInt64("timeUs", &timeUs));
986 if (timeUs < 0ll) {
987 timeUs = mLastDequeuedTimeUs;
989 mRealTimeBaseUs = ALooper::GetNowUs() - timeUs;
1081 fetcher->startAsync(audioSource, videoSource, subtitleSource, timeUs);
1117 changeConfiguration(-1ll /* timeUs */, bandwidthIndex);