/frameworks/av/media/libstagefright/ |
ThrottledSource.cpp | 45 int64_t nowUs = ALooper::GetNowUs(); 48 mStartTimeUs = nowUs; 58 if (whenUs > nowUs) { 59 usleep(whenUs - nowUs);
|
MediaClock.cpp | 64 int64_t nowUs = ALooper::GetNowUs(); 66 anchorTimeMediaUs + (nowUs - anchorTimeRealUs) * (double)mPlaybackRate; 77 mAnchorTimeMediaUs + (nowUs - mAnchorTimeRealUs) * (double)mPlaybackRate; 83 mAnchorTimeRealUs = nowUs; 100 int64_t nowUs = ALooper::GetNowUs(); 101 mAnchorTimeMediaUs += (nowUs - mAnchorTimeRealUs) * (double)mPlaybackRate; 106 mAnchorTimeRealUs = nowUs; 157 int64_t nowUs = ALooper::GetNowUs(); 160 getMediaTime_l(nowUs, &nowMediaUs, true /* allowPastMaxTime */); 164 *outRealUs = (targetMediaUs - nowMediaUs) / (double)mPlaybackRate + nowUs; [all...] |
VBRISeeker.cpp | 158 int64_t nowUs = 0; 161 while (segmentIndex < mSegments.size() && nowUs < *timeUs) { 162 nowUs += segmentDurationUs; 168 *timeUs = nowUs;
|
MediaSync.cpp | 311 int64_t nowUs = ALooper::GetNowUs(); 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) { 468 return nowUs; 477 int64_t MediaSync::getPlayedOutAudioDurationMedia_l(int64_t nowUs) { 491 const int64_t timestampAge = nowUs - numFramesPlayedAt; 500 ALOGV("getTimestamp: returned stale timestamp nowUs(%lld) [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
UDPPusher.cpp | 105 int64_t nowUs = ALooper::GetNowUs(); 106 (new AMessage(kWhatPush, this))->post(whenUs - nowUs);
|
ARTPSource.cpp | 178 int64_t nowUs = ALooper::GetNowUs(); 179 if (mLastFIRRequestUs >= 0 && mLastFIRRequestUs + 5000000ll > nowUs) { 184 mLastFIRRequestUs = nowUs;
|
ARTPConnection.cpp | 308 int64_t nowUs = ALooper::GetNowUs(); 310 || mLastReceiverReportTimeUs + 5000000ll <= nowUs) { 361 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 | 144 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec; 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/ |
RepeaterSource.cpp | 131 int64_t nowUs = ALooper::GetNowUs(); 132 int64_t delayUs = bufferTimeUs - nowUs; 149 int64_t nowUs = ALooper::GetNowUs(); 150 if (nowUs - mLastBufferUpdateUs > 1000000ll) {
|
Converter.cpp | 350 int64_t nowUs = ALooper::GetNowUs(); 353 mFirstSilentFrameUs = nowUs; 354 } else if (nowUs >= mFirstSilentFrameUs + 10000000ll) { 383 int64_t nowUs = ALooper::GetNowUs(); 385 mIsVideo ? "video" : "audio", nowUs - whenUs);
|
PlaybackSession.cpp | 831 int64_t nowUs = ALooper::GetNowUs(); 834 mFirstSampleTimeRealUs = nowUs; 839 delayUs = whenUs - nowUs;
|
TSPacketizer.cpp | 848 int64_t nowUs = ALooper::GetNowUs(); 850 uint64_t PCR = nowUs * 27; // PCR based on a 27MHz clock
|
/frameworks/av/media/libstagefright/foundation/ |
ALooper.cpp | 207 int64_t nowUs = GetNowUs(); 209 if (whenUs > nowUs) { 210 int64_t delayUs = whenUs - nowUs;
|
ANetworkSession.cpp | 294 int64_t nowUs = ALooper::GetNowUs(); 295 buf->meta()->setInt64("arrivalTimeUs", nowUs); 373 int64_t nowUs = ALooper::GetNowUs(); 374 packet->meta()->setInt64("arrivalTimeUs", nowUs); 407 int64_t nowUs = ALooper::GetNowUs(); 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 > mLastStallReportUs + 100000ll) [all...] |
/frameworks/av/cmds/stagefright/ |
SimplePlayer.cpp | 509 int64_t nowUs = ALooper::GetNowUs(); 512 mStartTimeRealUs = nowUs + 1000000ll; 522 int64_t lateByUs = nowUs - whenRealUs;
|
/frameworks/base/core/java/com/android/internal/os/ |
KernelUidCpuTimeReader.java | 70 long nowUs = SystemClock.elapsedRealtime() * 1000; 98 final long timeDiffUs = nowUs - mLastTimeReadUs; 143 mLastTimeReadUs = nowUs;
|
/frameworks/base/media/jni/ |
android_media_MediaSync.cpp | 285 int64_t nowUs = ALooper::GetNowUs(); 287 if (mediaClock->getMediaTime(nowUs, &mediaUs) != OK) { 294 (jlong)(nowUs * 1000));
|
/frameworks/av/media/libstagefright/wifi-display/rtp/ |
RTPSender.cpp | 270 int64_t nowUs = ALooper::GetNowUs(); 271 uint32_t rtpTime = (nowUs * 9) / 100ll; 495 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec; 497 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll; 499 uint64_t hi = nowUs / 1000000ll; 500 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;
|
/cts/tests/tests/media/src/android/media/cts/ |
CodecState.java | 337 long nowUs = mMediaTimeProvider.getNowUs(); 339 long lateUs = nowUs - realTimeUs;
|
MediaCodecTunneledPlayer.java | 478 long nowUs = getNowUs(); 479 mDeltaTimeUs = nowUs - mediaTimeUs;
|
MediaCodecClearKeyPlayer.java | 541 long nowUs = getNowUs(); 542 mDeltaTimeUs = nowUs - mediaTimeUs;
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayerRenderer.cpp | 345 int64_t nowUs = ALooper::GetNowUs(); 346 int64_t nowMediaUs = mAudioSink->getPlayedOutDurationUs(nowUs) 348 mMediaClock->updateAnchor(nowMediaUs, nowUs, -1); 813 int64_t nowUs = ALooper::GetNowUs(); 815 mAudioFirstAnchorTimeMediaUs + mAudioSink->getPlayedOutDurationUs(nowUs); 817 mMediaClock->updateAnchor(nowMediaUs, nowUs, INT64_MAX); [all...] |
/frameworks/av/media/libstagefright/httplive/ |
LiveSession.cpp | 104 int64_t nowUs = ALooper::GetNowUs(); 106 entry.mTimestampUs = nowUs; 130 if (nowUs - it->mTimestampUs < kMaxBandwidthHistoryAgeUs && [all...] |
PlaylistFetcher.cpp | 232 int64_t nowUs = ALooper::GetNowUs(); 288 int64_t delayUs = mLastPlaylistFetchTimeUs + minPlaylistAgeUs - nowUs; [all...] |