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

  /frameworks/av/media/libstagefright/
ThrottledSource.cpp 45 int64_t nowUs = ALooper::GetNowUs();
48 mStartTimeUs = nowUs;
58 if (whenUs > nowUs) {
59 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/wifi-display/source/
RepeaterSource.cpp 130 int64_t nowUs = ALooper::GetNowUs();
131 int64_t delayUs = bufferTimeUs - nowUs;
148 int64_t nowUs = ALooper::GetNowUs();
149 if (nowUs - mLastBufferUpdateUs > 1000000ll) {
Converter.cpp 355 int64_t nowUs = ALooper::GetNowUs();
358 mFirstSilentFrameUs = nowUs;
359 } else if (nowUs >= mFirstSilentFrameUs + 10000000ll) {
388 int64_t nowUs = ALooper::GetNowUs();
390 mIsVideo ? "video" : "audio", nowUs - whenUs);
PlaybackSession.cpp 736 int64_t nowUs = ALooper::GetNowUs();
739 mFirstSampleTimeRealUs = nowUs;
747 msg->post(whenUs - nowUs);
TSPacketizer.cpp 836 int64_t nowUs = ALooper::GetNowUs();
838 uint64_t PCR = nowUs * 27; // PCR based on a 27MHz clock
  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 196 int64_t nowUs = GetNowUs();
198 if (whenUs > nowUs) {
199 int64_t delayUs = whenUs - nowUs;
  /frameworks/av/media/libstagefright/rtsp/
UDPPusher.cpp 105 int64_t nowUs = ALooper::GetNowUs();
106 (new AMessage(kWhatPush, id()))->post(whenUs - nowUs);
ARTPSource.cpp 171 int64_t nowUs = ALooper::GetNowUs();
172 if (mLastFIRRequestUs >= 0 && mLastFIRRequestUs + 5000000ll > nowUs) {
177 mLastFIRRequestUs = nowUs;
ARTPConnection.cpp 307 int64_t nowUs = ALooper::GetNowUs();
309 || mLastReceiverReportTimeUs + 5000000ll <= nowUs) {
360 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/wifi-display/
ANetworkSession.cpp 263 int64_t nowUs = ALooper::GetNowUs();
264 buf->meta()->setInt64("arrivalTimeUs", nowUs);
342 int64_t nowUs = ALooper::GetNowUs();
343 packet->meta()->setInt64("arrivalTimeUs", nowUs);
376 int64_t nowUs = ALooper::GetNowUs();
377 data->meta()->setInt64("arrivalTimeUs", nowUs);
432 int64_t nowUs = ALooper::GetNowUs();
433 int64_t delayMs = (nowUs - frag.mTimeUs) / 1000ll;
579 int64_t nowUs = ALooper::GetNowUs();
582 || nowUs > mLastStallReportUs + 100000ll)
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 273 int64_t nowUs = ALooper::GetNowUs();
274 uint32_t rtpTime = (nowUs * 9) / 100ll;
498 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec;
500 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll;
502 uint64_t hi = nowUs / 1000000ll;
503 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;
  /frameworks/av/media/libstagefright/include/
LiveSession.h 150 bool timeToRefreshPlaylist(int64_t nowUs) const;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerRenderer.cpp 635 int64_t nowUs = ALooper::GetNowUs();
638 && nowUs < mLastPositionUpdateUs + kMinPositionUpdateDelayUs) {
641 mLastPositionUpdateUs = nowUs;
643 int64_t positionUs = (nowUs - mAnchorTimeRealUs) + mAnchorTimeMediaUs;
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 510 int64_t nowUs = ALooper::GetNowUs();
513 mStartTimeRealUs = nowUs + 1000000ll;
523 int64_t lateByUs = nowUs - whenRealUs;
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 480 bool LiveSession::timeToRefreshPlaylist(int64_t nowUs) const {
534 return mLastPlaylistFetchTimeUs + minPlaylistAgeUs <= nowUs;
541 int64_t nowUs = ALooper::GetNowUs();
545 || (!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 1987 milliseconds