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

  /frameworks/base/media/libstagefright/
ThrottledSource.cpp 55 int64_t nowUs = getNowUs();
58 mStartTimeUs = nowUs;
68 if (whenUs > nowUs) {
69 usleep(whenUs - nowUs);
AwesomePlayer.cpp     [all...]
  /frameworks/base/media/libstagefright/foundation/
ALooper.cpp 185 int64_t nowUs = GetNowUs();
187 if (whenUs > nowUs) {
188 int64_t delayUs = whenUs - nowUs;
  /frameworks/base/media/libstagefright/rtsp/
UDPPusher.cpp 105 int64_t nowUs = ALooper::GetNowUs();
106 (new AMessage(kWhatPush, id()))->post(whenUs - nowUs);
ARTPSource.cpp 200 int64_t nowUs = ALooper::GetNowUs();
201 if (mLastFIRRequestUs >= 0 && mLastFIRRequestUs + 5000000ll > nowUs) {
206 mLastFIRRequestUs = nowUs;
ARTPConnection.cpp 303 int64_t nowUs = ALooper::GetNowUs();
305 || mLastReceiverReportTimeUs + 5000000ll <= nowUs) {
342 mLastReceiverReportTimeUs = nowUs;
ARTPWriter.cpp 419 uint64_t nowUs = ALooper::GetNowUs();
421 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll;
423 uint64_t hi = nowUs / 1000000ll;
424 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;
MyTransmitter.h 141 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec;
143 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll;
145 uint64_t hi = nowUs / 1000000ll;
146 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;

Completed in 247 milliseconds