Home | History | Annotate | Download | only in libstagefright

Lines Matching refs:delayUs

2058         int64_t delayUs = nextTimeUs - estimateRealTimeUs(ts, systemTimeUs) + mTimeSourceDeltaUs;
2060 ALOGV("next frame in %" PRId64, delayUs);
2062 postVideoEvent_l(delayUs > 60000 ? 30000 : (delayUs < 30000 ? 0 : delayUs - 30000));
2077 void AwesomePlayer::postVideoEvent_l(int64_t delayUs) {
2085 mQueue.postEventWithDelay(mVideoEvent, delayUs < 0 ? 10000 : delayUs);
2114 void AwesomePlayer::postCheckAudioStatusEvent(int64_t delayUs) {
2122 delayUs = 0;
2124 mQueue.postEventWithDelay(mCheckAudioStatusEvent, delayUs);
2127 void AwesomePlayer::postAudioTearDownEvent(int64_t delayUs) {
2133 mQueue.postEventWithDelay(mAudioTearDownEvent, delayUs);
2541 void AwesomePlayer::postAudioEOS(int64_t delayUs) {
2542 postCheckAudioStatusEvent(delayUs);