Lines Matching defs:duration

55      * the previous S element's earliest presentation time and contiguous duration
56 * (i.e. previous S@starttime + @duration * (@repeat + 1)).
61 * the same duration expressed by the value of @duration. This value is zero-based
65 /* duration: Element or Attribute Name
66 * specifies the Segment duration, in units of the value of the @timescale.
68 int64_t duration;
208 static uint32_t get_duration_insec(AVFormatContext *s, const char *duration)
210 /* ISO-8601 duration parser */
218 const char *ptr = duration;
267 start_time += pls->timelines[i]->duration;
270 start_time = pls->timelines[i]->duration * cur_seq_no;
278 start_time += pls->timelines[i]->duration;
301 start_time += pls->timelines[i]->duration;
306 start_time += pls->timelines[i]->duration;
688 tml->duration = (int64_t)strtoll(val, NULL, 10);
940 val = get_val_from_nodes_tab(fragment_templates_tab, 4, "duration");
1014 val = get_val_from_nodes_tab(segmentlists_tab, 3, "duration");
1311 // at now we can handle only one period, with the longest duration
1320 if (!av_strcasecmp(attr->name, "duration")) {
1436 int length_of_each_segment = pls->timelines[i]->duration / pls->fragment_timescale;
2040 /* If this isn't a live stream, fill the total duration of the
2043 s->duration = (int64_t) c->media_presentation_duration * AV_TIME_BASE;
2243 int64_t duration = 0;
2268 duration = pls->timelines[i]->starttime;
2270 duration += pls->timelines[i]->duration;
2271 if (seek_pos_msec < ((duration * 1000) / pls->fragment_timescale)) {
2275 duration += pls->timelines[i]->duration;
2277 if (seek_pos_msec < ((duration * 1000) / pls->fragment_timescale)) {