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

  /frameworks/av/media/libstagefright/
ThrottledSource.cpp 55 int64_t nowUs = getNowUs();
58 mStartTimeUs = nowUs;
68 if (whenUs > nowUs) {
69 usleep(whenUs - nowUs);
VBRISeeker.cpp 155 int64_t nowUs = 0;
158 while (segmentIndex < mSegments.size() && nowUs < *timeUs) {
159 nowUs += segmentDurationUs;
165 *timeUs = nowUs;
AwesomePlayer.cpp     [all...]
  /frameworks/av/media/libstagefright/rtsp/
UDPPusher.cpp 105 int64_t nowUs = ALooper::GetNowUs();
106 (new AMessage(kWhatPush, id()))->post(whenUs - nowUs);
ARTPSource.cpp 168 int64_t nowUs = ALooper::GetNowUs();
169 if (mLastFIRRequestUs >= 0 && mLastFIRRequestUs + 5000000ll > nowUs) {
174 mLastFIRRequestUs = nowUs;
ARTPConnection.cpp 306 int64_t nowUs = ALooper::GetNowUs();
308 || mLastReceiverReportTimeUs + 5000000ll <= nowUs) {
359 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;
  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 199 int64_t nowUs = GetNowUs();
201 if (whenUs > nowUs) {
202 int64_t delayUs = whenUs - nowUs;
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 508 int64_t nowUs = ALooper::GetNowUs();
511 mStartTimeRealUs = nowUs + 1000000ll;
521 int64_t lateByUs = nowUs - whenRealUs;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerRenderer.cpp 605 int64_t nowUs = ALooper::GetNowUs();
608 && nowUs < mLastPositionUpdateUs + kMinPositionUpdateDelayUs) {
611 mLastPositionUpdateUs = nowUs;
613 int64_t positionUs = (nowUs - mAnchorTimeRealUs) + mAnchorTimeMediaUs;
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 446 bool LiveSession::timeToRefreshPlaylist(int64_t nowUs) const {
500 return mLastPlaylistFetchTimeUs + minPlaylistAgeUs <= nowUs;
507 int64_t nowUs = ALooper::GetNowUs();
511 || (!mPlaylist->isComplete() && timeToRefreshPlaylist(nowUs))) {
  /frameworks/av/libvideoeditor/lvpp/
PreviewPlayer.cpp 945 int64_t nowUs = ts->getRealTimeUs() - mTimeSourceDeltaUs;
947 int64_t latenessUs = nowUs - timeUs;
    [all...]

Completed in 95 milliseconds