Home | History | Annotate | Download | only in libstagefright

Lines Matching defs:timeUs

244     out->meta()->setInt64("timeUs", 0ll);
264 int64_t timeUs;
265 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
266 copy->meta()->setInt64("timeUs", timeUs);
295 int64_t timeUs;
296 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
298 mAACBuffer->meta()->setInt64("timeUs", timeUs);
453 int64_t timeUs;
454 CHECK(mLastAccessUnit->meta()->findInt64("timeUs", &timeUs));
456 return timeUs;
669 int64_t timeUs = source->lastAccessUnitTimeUs();
670 if (timeUs < 0) {
673 } else if (minTimeUs < 0 || timeUs < minTimeUs) {
674 minTimeUs = timeUs;
883 int64_t timeUs;
884 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs));
886 uint32_t PTS = (timeUs * 9ll) / 100ll;