Searched refs:ntpTime (Results 1 - 6 of 6) sorted by relevance
/frameworks/av/media/libstagefright/rtsp/ |
H A D | ARTPSession.cpp | 151 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 D | ARTPSource.h | 41 void timeUpdate(uint32_t rtpTime, uint64_t ntpTime);
|
H A D | ARTPSource.cpp | 94 void ARTPSource::timeUpdate(uint32_t rtpTime, uint64_t ntpTime) { argument 95 mLastNTPTime = ntpTime; 101 notify->setInt64("ntp-time", ntpTime);
|
H A D | ARTPConnection.cpp | 607 uint64_t ntpTime = u64at(&data[8]); local 611 ALOGI("XXX timeUpdate: ssrc=0x%08x, rtpTime %u == ntpTime %.3f", 614 (ntpTime >> 32) + (double)(ntpTime & 0xffffffff) / (1ll << 32)); 619 source->timeUpdate(rtpTime, ntpTime);
|
H A D | MyHandler.h | 988 uint64_t ntpTime; local 990 CHECK(msg->findInt64("ntp-time", (int64_t *)&ntpTime)); 992 onTimeUpdate(trackIndex, rtpTime, ntpTime); 1747 void onTimeUpdate(int32_t trackIndex, uint32_t rtpTime, uint64_t ntpTime) { argument 1748 ALOGV("onTimeUpdate track %d, rtpTime = 0x%08x, ntpTime = %#016llx", 1749 trackIndex, rtpTime, (long long)ntpTime); 1751 int64_t ntpTimeUs = (int64_t)(ntpTime * 1E6 / (1ll << 32));
|
H A D | MyTransmitter.h | 137 uint64_t ntpTime() { function in struct:android::MyTransmitter 157 uint64_t ntp = ntpTime(); 681 mLastNTPTime = ntpTime();
|
Completed in 492 milliseconds