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.java3044 long nextTimeUs = nowUs;
3080 } else if (nextTimeUs == nowUs || mTimes[ix] < nextTimeUs) {
3081 nextTimeUs = mTimes[ix];
3085 if (nextTimeUs > nowUs && !mPaused) {
3086 // schedule callback at nextTimeUs
3087 if (DEBUG) Log.d(TAG, "scheduling for " + nextTimeUs + " and " + nowUs);
3088 scheduleNotification(NOTIFY_TIME, nextTimeUs - nowUs);
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp2008 int64_t nextTimeUs; local
2009 CHECK(mVideoBuffer->meta_data()->findInt64(kKeyTime, &nextTimeUs));
2010 int64_t delayUs = nextTimeUs - ts->getRealTimeUs() + mTimeSourceDeltaUs;

Completed in 126 milliseconds