HomeSort by relevance Sort by last modified time
    Searched refs:nowUs (Results 1 - 25 of 25) 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 158 int64_t nowUs = 0;
161 while (segmentIndex < mSegments.size() && nowUs < *timeUs) {
162 nowUs += segmentDurationUs;
168 *timeUs = nowUs;
AwesomePlayer.cpp     [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerRenderer.cpp 205 int64_t *mediaUs, int64_t nowUs, bool allowPastQueuedVideo) {
211 return getCurrentPositionFromAnchor(mediaUs, nowUs, allowPastQueuedVideo);
225 int64_t *mediaUs, int64_t nowUs, bool allowPastQueuedVideo) {
235 int64_t positionUs = (nowUs - mAnchorTimeRealUs) + mAnchorTimeMediaUs;
238 positionUs -= (nowUs - mPauseStartedTimeRealUs);
645 int64_t nowUs = ALooper::GetNowUs();
646 setAnchorTime(mAudioFirstAnchorTimeMediaUs, nowUs - getPlayedOutAudioDurationUs(nowUs));
767 int64_t NuPlayer::Renderer::getPendingAudioPlayoutDurationUs(int64_t nowUs) {
770 return writtenAudioDurationUs - getPlayedOutAudioDurationUs(nowUs);
    [all...]
NuPlayerRenderer.h 202 int64_t *mediaUs, int64_t nowUs, bool allowPastQueuedVideo = false);
205 int64_t *mediaUs, int64_t nowUs, bool allowPastQueuedVideo = false);
210 int64_t getPendingAudioPlayoutDurationUs(int64_t nowUs);
211 int64_t getPlayedOutAudioDurationUs(int64_t nowUs);
215 int64_t getRealTimeUs(int64_t mediaTimeUs, int64_t nowUs);
  /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 827 int64_t nowUs = ALooper::GetNowUs();
830 mFirstSampleTimeRealUs = nowUs;
838 msg->post(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 200 int64_t nowUs = GetNowUs();
202 if (whenUs > nowUs) {
203 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...]
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
MediaCodecVideoDecoder.java 244 long nowUs = System.currentTimeMillis() * 1000;
245 deltaTimeUs = nowUs - mediaTimeUs;
319 long nowUs = System.currentTimeMillis() * 1000;
320 long lateUs = nowUs - realTimeUs;
  /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 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 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/rtp/
RTPSender.cpp 272 int64_t nowUs = ALooper::GetNowUs();
273 uint32_t rtpTime = (nowUs * 9) / 100ll;
497 uint64_t nowUs = tv.tv_sec * 1000000ll + tv.tv_usec;
499 nowUs += ((70ll * 365 + 17) * 24) * 60 * 60 * 1000000ll;
501 uint64_t hi = nowUs / 1000000ll;
502 uint64_t lo = ((1ll << 32) * (nowUs % 1000000ll)) / 1000000ll;
  /cts/tests/tests/media/src/android/media/cts/
CodecState.java 324 long nowUs = mMediaTimeProvider.getNowUs();
326 long lateUs = nowUs - realTimeUs;
MediaCodecCencPlayer.java 509 long nowUs = getNowUs();
510 mDeltaTimeUs = nowUs - mediaTimeUs;
MediaCodecTunneledPlayer.java 478 long nowUs = getNowUs();
479 mDeltaTimeUs = nowUs - mediaTimeUs;
  /frameworks/base/media/java/android/media/
MediaPlayer.java     [all...]
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 512 int64_t nowUs = ALooper::GetNowUs();
515 mStartTimeRealUs = nowUs + 1000000ll;
525 int64_t lateByUs = nowUs - whenRealUs;
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.cpp 123 int64_t nowUs = ALooper::GetNowUs();
182 int64_t delayUs = mLastPlaylistFetchTimeUs + minPlaylistAgeUs - nowUs;
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 331 milliseconds