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

/frameworks/av/media/libstagefright/
H A DThrottledSource.cpp56 int64_t whenUs = mStartTimeUs + durationUs; local
58 if (whenUs > nowUs) {
59 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.cpp164 int64_t whenUs; local
166 whenUs = GetNowUs() + delayUs;
168 whenUs = GetNowUs();
172 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) {
177 event.mWhenUs = whenUs;
199 int64_t whenUs = (*mEventQueue.begin()).mWhenUs; local
202 if (whenUs > nowUs) {
203 int64_t delayUs = whenUs - nowUs;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp834 int64_t whenUs = sampleTimeUs - mFirstSampleTimeUs + mFirstSampleTimeRealUs; local
838 msg->post(whenUs - nowUs);

Completed in 378 milliseconds