Searched refs:whenUs (Results 1 - 5 of 5) 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/foundation/
H A DALooper.cpp171 int64_t whenUs; local
173 whenUs = GetNowUs() + delayUs;
175 whenUs = GetNowUs();
179 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) {
184 event.mWhenUs = whenUs;
206 int64_t whenUs = (*mEventQueue.begin()).mWhenUs; local
209 if (whenUs > nowUs) {
210 int64_t delayUs = whenUs - nowUs;
/frameworks/av/media/libstagefright/rtsp/
H A DUDPPusher.cpp104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll; local
106 (new AMessage(kWhatPush, this))->post(whenUs - nowUs);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DConverter.cpp382 int64_t whenUs;
383 if (msg->findInt64("whenUs", &whenUs)) {
386 mIsVideo ? "video" : "audio", nowUs - whenUs);
491 notify->setInt64("whenUs", ALooper::GetNowUs());
H A DPlaybackSession.cpp835 int64_t whenUs = sampleTimeUs - mFirstSampleTimeUs + mFirstSampleTimeRealUs; local
836 delayUs = whenUs - nowUs;

Completed in 214 milliseconds