Home
last modified time | relevance | path

Searched refs:nextTimeUs (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/wifi-display/source/
DRepeaterSource.cpp42 int64_t nextTimeUs = mStartTimeUs + (mFrameCount * 1000000ll) / mRateHz; in setFrameRate() local
43 mStartTimeUs = nextTimeUs; in setFrameRate()
/frameworks/base/media/java/android/media/
DMediaPlayer.java5397 long nextTimeUs = nowUs; in notifyTimedEvent() local
5433 } else if (nextTimeUs == nowUs || mTimes[ix] < nextTimeUs) { in notifyTimedEvent()
5434 nextTimeUs = mTimes[ix]; in notifyTimedEvent()
5438 if (nextTimeUs > nowUs && !mPaused) { in notifyTimedEvent()
5440 if (DEBUG) Log.d(TAG, "scheduling for " + nextTimeUs + " and " + nowUs); in notifyTimedEvent()
5441 scheduleNotification(NOTIFY_TIME, nextTimeUs - nowUs); in notifyTimedEvent()