Searched defs:whenUs (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/
H A DThrottledSource.cpp60 int64_t whenUs = mStartTimeUs + durationUs; local
62 if (whenUs > nowUs) {
63 usleep(whenUs - nowUs);
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll; local
106 (new AMessage(kWhatPush, id()))->post(whenUs - nowUs);
/frameworks/av/media/libstagefright/foundation/
H A DALooper.cpp160 int64_t whenUs; local
162 whenUs = GetNowUs() + delayUs;
164 whenUs = GetNowUs();
168 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) {
173 event.mWhenUs = whenUs;
195 int64_t whenUs = (*mEventQueue.begin()).mWhenUs; local
198 if (whenUs > nowUs) {
199 int64_t delayUs = whenUs - nowUs;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DSender.cpp370 int64_t whenUs; local
374 mFirstOutputBufferSentTimeUs = whenUs = ALooper::GetNowUs();
379 whenUs = (timeUs - mFirstOutputBufferReadyTimeUs)
382 delayUs = whenUs - nowUs;
389 packets->meta()->setInt64("whenUs", whenUs);
568 int64_t whenUs;
569 CHECK(packets->meta()->findInt64("whenUs", &whenUs));
582 if (nowUs - whenUs > 200
[all...]

Completed in 194 milliseconds