Searched defs:nowUs (Results 1 - 21 of 21) sorted by relevance

/frameworks/av/media/libstagefright/
H A DThrottledSource.cpp45 int64_t nowUs = ALooper::GetNowUs(); local
48 mStartTimeUs = nowUs;
58 if (whenUs > nowUs) {
59 usleep(whenUs - nowUs);
H A DMediaClock.cpp64 int64_t nowUs = ALooper::GetNowUs(); local
66 anchorTimeMediaUs + (nowUs - anchorTimeRealUs) * (double)mPlaybackRate;
77 mAnchorTimeMediaUs + (nowUs - mAnchorTimeRealUs) * (double)mPlaybackRate;
83 mAnchorTimeRealUs = nowUs;
100 int64_t nowUs = ALooper::GetNowUs(); local
101 mAnchorTimeMediaUs += (nowUs - mAnchorTimeRealUs) * (double)mPlaybackRate;
106 mAnchorTimeRealUs = nowUs;
157 int64_t nowUs = ALooper::GetNowUs(); local
160 getMediaTime_l(nowUs, &nowMediaUs, true /* allowPastMaxTime */);
164 *outRealUs = (targetMediaUs - nowMediaUs) / (double)mPlaybackRate + nowUs;
[all...]
H A DVBRISeeker.cpp158 int64_t nowUs = 0; local
161 while (segmentIndex < mSegments.size() && nowUs < *timeUs) {
162 nowUs += segmentDurationUs;
168 *timeUs = nowUs;
H A DMediaSync.cpp311 int64_t nowUs = ALooper::GetNowUs(); local
314 + getPlayedOutAudioDurationMedia_l(nowUs);
320 oldRealTime = getRealTime(mNextBufferItemMediaUs, nowUs);
323 mMediaClock->updateAnchor(nowMediaUs, nowUs, maxMediaTimeUs);
327 int64_t newRealTime = getRealTime(mNextBufferItemMediaUs, nowUs);
463 int64_t MediaSync::getRealTime(int64_t mediaTimeUs, int64_t nowUs) { argument
468 return nowUs;
477 int64_t MediaSync::getPlayedOutAudioDurationMedia_l(int64_t nowUs) { argument
491 const int64_t timestampAge = nowUs - numFramesPlayedAt;
500 ALOGV("getTimestamp: returned stale timestamp nowUs(
554 int64_t nowUs = ALooper::GetNowUs(); local
801 int64_t nowUs = ALooper::GetNowUs(); local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp105 int64_t nowUs = ALooper::GetNowUs(); local
106 (new AMessage(kWhatPush, this))->post(whenUs - nowUs);
H A DARTPSource.cpp178 int64_t nowUs = ALooper::GetNowUs(); local
179 if (mLastFIRRequestUs >= 0 && mLastFIRRequestUs + 5000000ll > nowUs) {
184 mLastFIRRequestUs = nowUs;
H A DARTPConnection.cpp308 int64_t nowUs = ALooper::GetNowUs(); local
310 || mLastReceiverReportTimeUs + 5000000ll <= nowUs) {
361 mLastReceiverReportTimeUs = nowUs;
H A DARTPWriter.cpp419 uint64_t nowUs = ALooper::GetNowUs(); local
421 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll;
423 uint64_t hi = nowUs / 1000000ll;
424 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;
H A DMyTransmitter.h144 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec; local
146 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll;
148 uint64_t hi = nowUs / 1000000ll;
149 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp131 int64_t nowUs = ALooper::GetNowUs(); local
132 int64_t delayUs = bufferTimeUs - nowUs;
149 int64_t nowUs = ALooper::GetNowUs(); local
150 if (nowUs - mLastBufferUpdateUs > 1000000ll) {
H A DConverter.cpp350 int64_t nowUs = ALooper::GetNowUs(); local
353 mFirstSilentFrameUs = nowUs;
354 } else if (nowUs >= mFirstSilentFrameUs + 10000000ll) {
383 int64_t nowUs = ALooper::GetNowUs();
385 mIsVideo ? "video" : "audio", nowUs - whenUs);
H A DTSPacketizer.cpp848 int64_t nowUs = ALooper::GetNowUs(); local
850 uint64_t PCR = nowUs * 27; // PCR based on a 27MHz clock
H A DPlaybackSession.cpp831 int64_t nowUs = ALooper::GetNowUs(); local
834 mFirstSampleTimeRealUs = nowUs;
839 delayUs = whenUs - nowUs;
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp509 int64_t nowUs = ALooper::GetNowUs(); local
512 mStartTimeRealUs = nowUs + 1000000ll;
522 int64_t lateByUs = nowUs - whenRealUs;
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp207 int64_t nowUs = GetNowUs(); local
209 if (whenUs > nowUs) {
210 int64_t delayUs = whenUs - nowUs;
H A DANetworkSession.cpp294 int64_t nowUs = ALooper::GetNowUs(); local
295 buf->meta()->setInt64("arrivalTimeUs", nowUs);
373 int64_t nowUs = ALooper::GetNowUs(); local
374 packet->meta()->setInt64("arrivalTimeUs", nowUs);
407 int64_t nowUs = ALooper::GetNowUs(); local
408 data->meta()->setInt64("arrivalTimeUs", nowUs);
526 int64_t nowUs = ALooper::GetNowUs();
527 int64_t delayMs = (nowUs - frag.mTimeUs) / 1000ll;
673 int64_t nowUs = ALooper::GetNowUs();
676 || nowUs > mLastStallReportU
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaSync.cpp285 int64_t nowUs = ALooper::GetNowUs(); local
287 if (mediaClock->getMediaTime(nowUs, &mediaUs) != OK) {
294 (jlong)(nowUs * 1000));
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp270 int64_t nowUs = ALooper::GetNowUs(); local
271 uint32_t rtpTime = (nowUs * 9) / 100ll;
495 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec; local
497 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll;
499 uint64_t hi = nowUs / 1000000ll;
500 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerRenderer.cpp345 int64_t nowUs = ALooper::GetNowUs(); local
346 int64_t nowMediaUs = mAudioSink->getPlayedOutDurationUs(nowUs)
348 mMediaClock->updateAnchor(nowMediaUs, nowUs, -1);
813 int64_t nowUs = ALooper::GetNowUs(); local
815 mAudioFirstAnchorTimeMediaUs + mAudioSink->getPlayedOutDurationUs(nowUs);
817 mMediaClock->updateAnchor(nowMediaUs, nowUs, INT64_MAX);
1041 int64_t NuPlayer::Renderer::getPendingAudioPlayoutDurationUs(int64_t nowUs) { argument
1044 int64_t nowUs = ALooper::GetNowUs(); local
1046 if (mMediaClock->getMediaTime(nowUs, &mediaUs) != OK) {
1052 return writtenAudioDurationUs - mAudioSink->getPlayedOutDurationUs(nowUs);
1055 getRealTimeUs(int64_t mediaTimeUs, int64_t nowUs) argument
1081 int64_t nowUs = ALooper::GetNowUs(); local
1136 int64_t nowUs = ALooper::GetNowUs(); local
1231 int64_t nowUs = ALooper::GetNowUs(); local
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp104 int64_t nowUs = ALooper::GetNowUs(); local
106 entry.mTimestampUs = nowUs;
130 if (nowUs - it->mTimestampUs < kMaxBandwidthHistoryAgeUs &&
H A DPlaylistFetcher.cpp232 int64_t nowUs = ALooper::GetNowUs(); local
288 int64_t delayUs = mLastPlaylistFetchTimeUs + minPlaylistAgeUs - nowUs;

Completed in 286 milliseconds