Searched refs:ntpTime (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/rtsp/
H A DARTPSession.cpp151 uint64_t ntpTime; local
153 "ntp-time", (int64_t *)&ntpTime));
158 accessUnit->size(), ntpTime);
161 accessUnit->size(), ntpTime);
175 accessUnit->meta()->setInt64("ntp-time", ntpTime);
H A DARTPSource.h41 void timeUpdate(uint32_t rtpTime, uint64_t ntpTime);
H A DARTPSource.cpp94 void ARTPSource::timeUpdate(uint32_t rtpTime, uint64_t ntpTime) { argument
95 mLastNTPTime = ntpTime;
101 notify->setInt64("ntp-time", ntpTime);
H A DARTPConnection.cpp606 uint64_t ntpTime = u64at(&data[8]); local
610 ALOGI("XXX timeUpdate: ssrc=0x%08x, rtpTime %u == ntpTime %.3f",
613 (ntpTime >> 32) + (double)(ntpTime & 0xffffffff) / (1ll << 32));
618 source->timeUpdate(rtpTime, ntpTime);
H A DMyHandler.h819 uint64_t ntpTime; local
821 CHECK(msg->findInt64("ntp-time", (int64_t *)&ntpTime));
823 onTimeUpdate(trackIndex, rtpTime, ntpTime);
1375 void onTimeUpdate(int32_t trackIndex, uint32_t rtpTime, uint64_t ntpTime) { argument
1376 ALOGV("onTimeUpdate track %d, rtpTime = 0x%08x, ntpTime = 0x%016llx",
1377 trackIndex, rtpTime, ntpTime);
1379 int64_t ntpTimeUs = (int64_t)(ntpTime * 1E6 / (1ll << 32));
H A DMyTransmitter.h137 uint64_t ntpTime() { function in struct:android::MyTransmitter
157 uint64_t ntp = ntpTime();
681 mLastNTPTime = ntpTime();
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DRTPSink.cpp630 uint64_t ntpTime = U64_AT(&data[8]); local
633 ALOGV("SR: ssrc 0x%08x, ntpTime 0x%016llx, rtpTime 0x%08x",
634 id, ntpTime, rtpTime);
/frameworks/base/services/java/com/android/server/
H A DThrottleService.java247 private long ntpToWallTime(long ntpTime) { argument
252 return localNow + (ntpTime - bestNow);

Completed in 629 milliseconds