• Home
  • Raw
  • Download

Lines Matching refs:timeUs

676           int64_t timeUs, actualTimeUs;  in onMessageReceived()  local
679 timeUs = mAudioLastDequeueTimeUs; in onMessageReceived()
681 timeUs = mVideoLastDequeueTimeUs; in onMessageReceived()
683 readBuffer(trackType, timeUs, MediaPlayerSeekMode::SEEK_PREVIOUS_SYNC /* mode */, in onMessageReceived()
687 ALOGV("timeUs %lld actualTimeUs %lld", (long long)timeUs, (long long)actualTimeUs); in onMessageReceived()
738 int64_t timeUs; in fetchTextData() local
739 CHECK(msg->findInt64("timeUs", &timeUs)); in fetchTextData()
742 readBuffer(type, timeUs, MediaPlayerSeekMode::SEEK_PREVIOUS_SYNC /* mode */, &subTimeUs); in fetchTextData()
907 int64_t timeUs; in dequeueAccessUnit() local
909 CHECK((*accessUnit)->meta()->findInt64("timeUs", &timeUs)); in dequeueAccessUnit()
911 mAudioLastDequeueTimeUs = timeUs; in dequeueAccessUnit()
913 mVideoLastDequeueTimeUs = timeUs; in dequeueAccessUnit()
919 msg->setInt64("timeUs", timeUs); in dequeueAccessUnit()
927 msg->setInt64("timeUs", timeUs); in dequeueAccessUnit()
1027 status_t NuPlayer::GenericSource::selectTrack(size_t trackIndex, bool select, int64_t timeUs) { in selectTrack() argument
1087 msg->setInt64("timeUs", timeUs); in selectTrack()
1099 msg->setInt64("timeUs", timeUs); in selectTrack()
1236 int64_t timeUs; in mediaBufferToABuffer() local
1237 CHECK(mb->meta_data().findInt64(kKeyTime, &timeUs)); in mediaBufferToABuffer()
1238 meta->setInt64("timeUs", timeUs); in mediaBufferToABuffer()
1403 int64_t timeUs; in readBuffer() local
1405 if (!mbuf->meta_data().findInt64(kKeyTime, &timeUs)) { in readBuffer()
1411 mAudioTimeUs = timeUs; in readBuffer()
1413 mVideoTimeUs = timeUs; in readBuffer()
1420 *actualTimeUs = timeUs; in readBuffer()
1425 && seekTimeUs > timeUs) { in readBuffer()