Home | History | Annotate | Download | only in nuplayer

Lines Matching refs:timeUs

843           int64_t timeUs, actualTimeUs;
846 timeUs = mAudioLastDequeueTimeUs;
848 timeUs = mVideoLastDequeueTimeUs;
850 readBuffer(trackType, timeUs, &actualTimeUs, formatChange);
852 ALOGV("timeUs %lld actualTimeUs %lld", timeUs, actualTimeUs);
950 int64_t timeUs;
951 CHECK(msg->findInt64("timeUs", &timeUs));
954 readBuffer(type, timeUs, &subTimeUs);
956 int64_t delayUs = subTimeUs - timeUs;
1079 int64_t timeUs;
1081 CHECK((*accessUnit)->meta()->findInt64("timeUs", &timeUs));
1083 mAudioLastDequeueTimeUs = timeUs;
1085 mVideoLastDequeueTimeUs = timeUs;
1091 msg->setInt64("timeUs", timeUs);
1099 msg->setInt64("timeUs", timeUs);
1217 status_t NuPlayer::GenericSource::selectTrack(size_t trackIndex, bool select, int64_t timeUs) {
1222 msg->setInt64("timeUs", timeUs);
1235 int64_t timeUs;
1238 CHECK(msg->findInt64("timeUs", &timeUs));
1241 status_t err = doSelectTrack(trackIndex, select, timeUs);
1249 status_t NuPlayer::GenericSource::doSelectTrack(size_t trackIndex, bool select, int64_t timeUs) {
1306 msg->setInt64("timeUs", timeUs);
1314 msg->setInt64("timeUs", timeUs);
1432 int64_t timeUs;
1433 CHECK(mb->meta_data()->findInt64(kKeyTime, &timeUs));
1434 meta->setInt64("timeUs", timeUs);
1439 if (seekTimeUs > timeUs) {
1463 *actualTimeUs = timeUs;
1557 int64_t timeUs;
1558 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
1560 mAudioTimeUs = timeUs;
1562 mVideoTimeUs = timeUs;