Home | History | Annotate | Download | only in stagefright

Lines Matching defs:seekTimeUs

228         int64_t seekTimeUs = -1;
249 if (seekTimeUs >= 0) {
250 int64_t diff = timestampUs - seekTimeUs;
259 seekTimeUs / 1E6, timestampUs / 1E6);
283 seekTimeUs = -1;
286 seekTimeUs = (rand() * (float)durationUs) / RAND_MAX;
287 options.setSeekTo(seekTimeUs);
290 seekTimeUs, seekTimeUs / 1E6);
541 for (int64_t seekTimeUs = 0; seekTimeUs <= durationUs;
542 seekTimeUs += 60000ll) {
545 seekTimeUs, MediaSource::ReadOptions::SEEK_PREVIOUS_SYNC);
578 printf("%lld\t%lld\t%lld\n", seekTimeUs, timeUs, seekTimeUs - timeUs);