HomeSort by relevance Sort by last modified time
    Searched refs:whenUs (Results 1 - 5 of 5) sorted by null

  /frameworks/av/media/libstagefright/
ThrottledSource.cpp 56 int64_t whenUs = mStartTimeUs + durationUs;
58 if (whenUs > nowUs) {
59 usleep(whenUs - nowUs);
  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 167 int64_t whenUs;
169 whenUs = GetNowUs() + delayUs;
171 whenUs = GetNowUs();
175 while (it != mEventQueue.end() && (*it).mWhenUs <= whenUs) {
180 event.mWhenUs = whenUs;
202 int64_t whenUs = (*mEventQueue.begin()).mWhenUs;
205 if (whenUs > nowUs) {
206 int64_t delayUs = whenUs - nowUs;
  /frameworks/av/media/libstagefright/rtsp/
UDPPusher.cpp 104 int64_t whenUs = mFirstTimeUs + timeMs * 1000ll;
106 (new AMessage(kWhatPush, this))->post(whenUs - nowUs);
  /frameworks/av/media/libstagefright/wifi-display/source/
Converter.cpp 381 int64_t whenUs;
382 if (msg->findInt64("whenUs", &whenUs)) {
385 mIsVideo ? "video" : "audio", nowUs - whenUs);
490 notify->setInt64("whenUs", ALooper::GetNowUs());
PlaybackSession.cpp 838 int64_t whenUs = sampleTimeUs - mFirstSampleTimeUs + mFirstSampleTimeRealUs;
839 delayUs = whenUs - nowUs;

Completed in 3567 milliseconds