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

/frameworks/base/media/libstagefright/foundation/
H A DALooper.cpp149 int64_t whenUs; local
151 whenUs = GetNowUs() + delayUs;
153 whenUs = GetNowUs();
157 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) {
162 event.mWhenUs = whenUs;
184 int64_t whenUs = (*mEventQueue.begin()).mWhenUs; local
187 if (whenUs > nowUs) {
188 int64_t delayUs = whenUs - nowUs;
/frameworks/base/media/libstagefright/
H A DThrottledSource.cpp66 int64_t whenUs = mStartTimeUs + durationUs; local
68 if (whenUs > nowUs) {
69 usleep(whenUs - nowUs);
/frameworks/base/media/libstagefright/rtsp/
H A DUDPPusher.cpp104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll; local
106 (new AMessage(kWhatPush, id()))->post(whenUs - nowUs);

Completed in 84 milliseconds