/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 | 99 int64_t nowUs = ALooper::GetNowUs(); 101 anchorTimeMediaUs + (nowUs - anchorTimeRealUs) * (double)mPlaybackRate; 112 mAnchorTimeMediaUs + (nowUs - mAnchorTimeRealUs) * (double)mPlaybackRate; 118 updateAnchorTimesAndPlaybackRate_l(nowMediaUs, nowUs, mPlaybackRate); 137 int64_t nowUs = ALooper::GetNowUs(); 138 int64_t nowMediaUs = mAnchorTimeMediaUs + (nowUs - mAnchorTimeRealUs) * (double)mPlaybackRate; 143 updateAnchorTimesAndPlaybackRate_l(nowMediaUs, nowUs, rate); 198 int64_t nowUs = ALooper::GetNowUs(); 201 getMediaTime_l(nowUs, &nowMediaUs, true /* allowPastMaxTime */); 205 *outRealUs = (targetMediaUs - nowMediaUs) / (double)mPlaybackRate + nowUs; [all...] |
MediaSync.cpp | 314 int64_t nowUs = ALooper::GetNowUs(); 317 + getPlayedOutAudioDurationMedia_l(nowUs); 323 oldRealTime = getRealTime(mNextBufferItemMediaUs, nowUs); 326 mMediaClock->updateAnchor(nowMediaUs, nowUs, maxMediaTimeUs); 330 int64_t newRealTime = getRealTime(mNextBufferItemMediaUs, nowUs); 466 int64_t MediaSync::getRealTime(int64_t mediaTimeUs, int64_t nowUs) { 471 return nowUs; 480 int64_t MediaSync::getPlayedOutAudioDurationMedia_l(int64_t nowUs) { 497 numFramesPlayedAtUs = nowUs; 504 numFramesPlayedAtUs = nowUs; [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
UDPPusher.cpp | 105 int64_t nowUs = ALooper::GetNowUs(); 106 (new AMessage(kWhatPush, this))->post(whenUs - nowUs);
|
ARTPSource.cpp | 182 int64_t nowUs = ALooper::GetNowUs(); 183 if (mLastFIRRequestUs >= 0 && mLastFIRRequestUs + 5000000ll > nowUs) { 188 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/extractors/mp3/ |
VBRISeeker.cpp | 172 int64_t nowUs = 0; 175 while (segmentIndex < mSegments.size() && nowUs < *timeUs) { 176 nowUs += segmentDurationUs; 182 *timeUs = nowUs;
|
/frameworks/av/media/libstagefright/foundation/ |
ALooper.cpp | 207 int64_t nowUs = GetNowUs(); 209 if (whenUs > nowUs) { 210 int64_t delayUs = whenUs - nowUs;
|
ANetworkSession.cpp | 283 int64_t nowUs = ALooper::GetNowUs(); 284 buf->meta()->setInt64("arrivalTimeUs", nowUs); 362 int64_t nowUs = ALooper::GetNowUs(); 363 packet->meta()->setInt64("arrivalTimeUs", nowUs); 396 int64_t nowUs = ALooper::GetNowUs(); 397 data->meta()->setInt64("arrivalTimeUs", nowUs); 515 int64_t nowUs = ALooper::GetNowUs(); 516 int64_t delayMs = (nowUs - frag.mTimeUs) / 1000ll; 662 int64_t nowUs = ALooper::GetNowUs(); 665 || nowUs > mLastStallReportUs + 100000ll) [all...] |
/frameworks/av/cmds/stagefright/ |
SimplePlayer.cpp | 512 int64_t nowUs = ALooper::GetNowUs(); 515 mStartTimeRealUs = nowUs + 1000000ll; 525 int64_t lateByUs = nowUs - whenRealUs;
|
/frameworks/base/core/java/com/android/internal/os/ |
KernelUidCpuTimeReader.java | 73 long nowUs = SystemClock.elapsedRealtime() * 1000; 94 final long timeDiffUs = nowUs - mLastTimeReadUs; 134 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));
|
/cts/tests/tests/media/src/android/media/cts/ |
CodecState.java | 335 long nowUs = mMediaTimeProvider.getNowUs(); 337 long lateUs = nowUs - realTimeUs;
|
MediaCodecTunneledPlayer.java | 478 long nowUs = getNowUs(); 479 mDeltaTimeUs = nowUs - mediaTimeUs;
|
MediaCodecClearKeyPlayer.java | 612 long nowUs = getNowUs(); 613 mDeltaTimeUs = nowUs - mediaTimeUs;
|
VideoDecoderPerfTest.java | 236 long nowUs = (System.nanoTime() + 500) / 1000; 238 frameTimeUsDiff[outputNum - 1] = nowUs - lastOutputTimeUs; 240 lastOutputTimeUs = nowUs; [all...] |
/frameworks/av/media/libmediaplayer2/nuplayer2/ |
NuPlayer2Renderer.cpp | 359 int64_t nowUs = ALooper::GetNowUs(); 360 int64_t nowMediaUs = mAudioSink->getPlayedOutDurationUs(nowUs) 362 mMediaClock->updateAnchor(nowMediaUs, nowUs, -1); 901 int64_t nowUs = ALooper::GetNowUs(); 903 mAudioFirstAnchorTimeMediaUs + mAudioSink->getPlayedOutDurationUs(nowUs); 905 mMediaClock->updateAnchor(nowMediaUs, nowUs, INT64_MAX); [all...] |
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayerRenderer.cpp | 360 int64_t nowUs = ALooper::GetNowUs(); 361 int64_t nowMediaUs = mAudioSink->getPlayedOutDurationUs(nowUs) 363 mMediaClock->updateAnchor(nowMediaUs, nowUs, -1); 902 int64_t nowUs = ALooper::GetNowUs(); 904 mAudioFirstAnchorTimeMediaUs + mAudioSink->getPlayedOutDurationUs(nowUs); 906 mMediaClock->updateAnchor(nowMediaUs, nowUs, INT64_MAX); [all...] |
/frameworks/av/media/libstagefright/httplive/ |
LiveSession.cpp | 103 int64_t nowUs = ALooper::GetNowUs(); 105 entry.mTimestampUs = nowUs; 129 if (nowUs - it->mTimestampUs < kMaxBandwidthHistoryAgeUs && [all...] |
PlaylistFetcher.cpp | 240 int64_t nowUs = ALooper::GetNowUs(); 296 int64_t delayUs = mLastPlaylistFetchTimeUs + minPlaylistAgeUs - nowUs; [all...] |
/cts/tests/video/src/android/video/cts/ |
VideoEncoderDecoderTest.java | [all...] |
/frameworks/base/media/java/android/media/ |
MediaPlayer2Impl.java | [all...] |
MediaPlayer.java | [all...] |