Home | History | Annotate | Download | only in mp4

Lines Matching full:media_time

456             int64_t media_time = track->elst_media_time;
458 ALOGV("segment_duration = %" PRId64 ", media_time = %" PRId64
461 media_time,
466 // delay = ((media_time * samplerate) + halfscale) / mHeaderTimescale;
467 if (__builtin_mul_overflow(media_time, samplerate, &delay) ||
486 // padding = scaled_duration - ((segment_duration + media_time) * 1000000);
487 if (__builtin_add_overflow(segment_duration, media_time, &segment_end) ||
1058 int64_t media_time;
1062 !mDataSource->getUInt64(entriesoffset + 8, (uint64_t*)&media_time)) {
1073 media_time = mt;
1082 mLastTrack->elst_media_time = media_time;