Home
last modified time | relevance | path

Searched refs:whenUs (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
DALooper.cpp171 int64_t whenUs; in post() local
173 whenUs = GetNowUs() + delayUs; in post()
175 whenUs = GetNowUs(); in post()
179 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) { in post()
184 event.mWhenUs = whenUs; in post()
206 int64_t whenUs = (*mEventQueue.begin()).mWhenUs; in loop() local
209 if (whenUs > nowUs) { in loop()
210 int64_t delayUs = whenUs - nowUs; in loop()
/frameworks/av/media/libstagefright/
DThrottledSource.cpp56 int64_t whenUs = mStartTimeUs + durationUs; in readAt() local
58 if (whenUs > nowUs) { in readAt()
59 usleep(whenUs - nowUs); in readAt()
/frameworks/av/media/libstagefright/rtsp/
DUDPPusher.cpp104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll; in onPush() local
106 (new AMessage(kWhatPush, this))->post(whenUs - nowUs); in onPush()
/frameworks/av/media/libstagefright/wifi-display/source/
DConverter.cpp381 int64_t whenUs; in onMessageReceived()
382 if (msg->findInt64("whenUs", &whenUs)) { in onMessageReceived()
385 mIsVideo ? "video" : "audio", nowUs - whenUs); in onMessageReceived()
DPlaybackSession.cpp838 int64_t whenUs = sampleTimeUs - mFirstSampleTimeUs + mFirstSampleTimeRealUs; in schedulePullExtractor() local
839 delayUs = whenUs - nowUs; in schedulePullExtractor()