Home | History | Annotate | Download | only in matroska

Lines Matching refs:seekTimeUs

103             int64_t seekTimeUs, bool isAudio,
375 int64_t seekTimeUs, bool isAudio,
381 if (seekTimeUs > INT64_MAX / 1000ll ||
382 seekTimeUs < INT64_MIN / 1000ll ||
384 (seekTimeUs * 1000ll) < INT64_MIN + mExtractor->mSeekPreRollNs) ||
386 (seekTimeUs * 1000ll) > INT64_MAX + mExtractor->mSeekPreRollNs)) {
387 ALOGE("cannot seek to %lld", (long long) seekTimeUs);
391 const int64_t seekTimeNs = seekTimeUs * 1000ll - mExtractor->mSeekPreRollNs;
398 ALOGV("Seek to beginning: %" PRId64, seekTimeUs);
407 ALOGV("Seeking to: %" PRId64, seekTimeUs);
502 if (thisTrack->GetType() == 1 || frameTimeUs >= seekTimeUs) {
505 seekTimeUs, *actualFrameTimeUs);
665 int64_t seekTimeUs;
667 if (options && options->getSeekTo(&seekTimeUs, &mode)
675 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);