Searched refs:nextTimeUs (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp42 int64_t nextTimeUs = mStartTimeUs + (mFrameCount * 1000000ll) / mRateHz; local
43 mStartTimeUs = nextTimeUs;
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java3324 long nextTimeUs = nowUs;
3360 } else if (nextTimeUs == nowUs || mTimes[ix] < nextTimeUs) {
3361 nextTimeUs = mTimes[ix];
3365 if (nextTimeUs > nowUs && !mPaused) {
3366 // schedule callback at nextTimeUs
3367 if (DEBUG) Log.d(TAG, "scheduling for " + nextTimeUs + " and " + nowUs);
3368 scheduleNotification(NOTIFY_TIME, nextTimeUs - nowUs);
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp2055 int64_t nextTimeUs; local
2056 CHECK(mVideoBuffer->meta_data()->findInt64(kKeyTime, &nextTimeUs));
2058 int64_t delayUs = nextTimeUs - estimateRealTimeUs(ts, systemTimeUs) + mTimeSourceDeltaUs;
2059 ATRACE_INT("Frame delta (ms)", (nextTimeUs - timeUs) / 1E3);

Completed in 16 milliseconds