]> git.sesse.net Git - ffmpeg/blob - libavformat/dashdec.c
libavformat/dashdec: Fix for ticket 6856 (filename limited to 1024)
[ffmpeg] / libavformat / dashdec.c
1 /*
2  * Dynamic Adaptive Streaming over HTTP demux
3  * Copyright (c) 2017 samsamsam@o2.pl based on HLS demux
4  * Copyright (c) 2017 Steven Liu
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 #include <libxml/parser.h>
23 #include "libavutil/intreadwrite.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/time.h"
26 #include "libavutil/parseutils.h"
27 #include "internal.h"
28 #include "avio_internal.h"
29 #include "dash.h"
30
31 #define INITIAL_BUFFER_SIZE 32768
32
33 struct fragment {
34     int64_t url_offset;
35     int64_t size;
36     char *url;
37 };
38
39 /*
40  * reference to : ISO_IEC_23009-1-DASH-2012
41  * Section: 5.3.9.6.2
42  * Table: Table 17 — Semantics of SegmentTimeline element
43  * */
44 struct timeline {
45     /* starttime: Element or Attribute Name
46      * specifies the MPD start time, in @timescale units,
47      * the first Segment in the series starts relative to the beginning of the Period.
48      * The value of this attribute must be equal to or greater than the sum of the previous S
49      * element earliest presentation time and the sum of the contiguous Segment durations.
50      * If the value of the attribute is greater than what is expressed by the previous S element,
51      * it expresses discontinuities in the timeline.
52      * If not present then the value shall be assumed to be zero for the first S element
53      * and for the subsequent S elements, the value shall be assumed to be the sum of
54      * the previous S element's earliest presentation time and contiguous duration
55      * (i.e. previous S@starttime + @duration * (@repeat + 1)).
56      * */
57     int64_t starttime;
58     /* repeat: Element or Attribute Name
59      * specifies the repeat count of the number of following contiguous Segments with
60      * the same duration expressed by the value of @duration. This value is zero-based
61      * (e.g. a value of three means four Segments in the contiguous series).
62      * */
63     int64_t repeat;
64     /* duration: Element or Attribute Name
65      * specifies the Segment duration, in units of the value of the @timescale.
66      * */
67     int64_t duration;
68 };
69
70 /*
71  * Each playlist has its own demuxer. If it is currently active,
72  * it has an opened AVIOContext too, and potentially an AVPacket
73  * containing the next packet from this stream.
74  */
75 struct representation {
76     char *url_template;
77     AVIOContext pb;
78     AVIOContext *input;
79     AVFormatContext *parent;
80     AVFormatContext *ctx;
81     AVPacket pkt;
82     int rep_idx;
83     int rep_count;
84     int stream_index;
85
86     enum AVMediaType type;
87     char id[20];
88     int bandwidth;
89     AVRational framerate;
90     AVStream *assoc_stream; /* demuxer stream associated with this representation */
91
92     int n_fragments;
93     struct fragment **fragments; /* VOD list of fragment for profile */
94
95     int n_timelines;
96     struct timeline **timelines;
97
98     int64_t first_seq_no;
99     int64_t last_seq_no;
100     int64_t start_number; /* used in case when we have dynamic list of segment to know which segments are new one*/
101
102     int64_t fragment_duration;
103     int64_t fragment_timescale;
104
105     int64_t presentation_timeoffset;
106
107     int64_t cur_seq_no;
108     int64_t cur_seg_offset;
109     int64_t cur_seg_size;
110     struct fragment *cur_seg;
111
112     /* Currently active Media Initialization Section */
113     struct fragment *init_section;
114     uint8_t *init_sec_buf;
115     uint32_t init_sec_buf_size;
116     uint32_t init_sec_data_len;
117     uint32_t init_sec_buf_read_offset;
118     int64_t cur_timestamp;
119     int is_restart_needed;
120 };
121
122 typedef struct DASHContext {
123     const AVClass *class;
124     char *base_url;
125
126     int n_videos;
127     struct representation **videos;
128     int n_audios;
129     struct representation **audios;
130
131     /* MediaPresentationDescription Attribute */
132     uint64_t media_presentation_duration;
133     uint64_t suggested_presentation_delay;
134     uint64_t availability_start_time;
135     uint64_t publish_time;
136     uint64_t minimum_update_period;
137     uint64_t time_shift_buffer_depth;
138     uint64_t min_buffer_time;
139
140     /* Period Attribute */
141     uint64_t period_duration;
142     uint64_t period_start;
143
144     int is_live;
145     AVIOInterruptCB *interrupt_callback;
146     char *user_agent;                    ///< holds HTTP user agent set as an AVOption to the HTTP protocol context
147     char *cookies;                       ///< holds HTTP cookie values set in either the initial response or as an AVOption to the HTTP protocol context
148     char *headers;                       ///< holds HTTP headers set as an AVOption to the HTTP protocol context
149     char *allowed_extensions;
150     AVDictionary *avio_opts;
151     int max_url_size;
152 } DASHContext;
153
154 static int ishttp(char *url)
155 {
156     const char *proto_name = avio_find_protocol_name(url);
157     return av_strstart(proto_name, "http", NULL);
158 }
159
160 static int aligned(int val)
161 {
162     return ((val + 0x3F) >> 6) << 6;
163 }
164
165 static uint64_t get_current_time_in_sec(void)
166 {
167     return  av_gettime() / 1000000;
168 }
169
170 static uint64_t get_utc_date_time_insec(AVFormatContext *s, const char *datetime)
171 {
172     struct tm timeinfo;
173     int year = 0;
174     int month = 0;
175     int day = 0;
176     int hour = 0;
177     int minute = 0;
178     int ret = 0;
179     float second = 0.0;
180
181     /* ISO-8601 date parser */
182     if (!datetime)
183         return 0;
184
185     ret = sscanf(datetime, "%d-%d-%dT%d:%d:%fZ", &year, &month, &day, &hour, &minute, &second);
186     /* year, month, day, hour, minute, second  6 arguments */
187     if (ret != 6) {
188         av_log(s, AV_LOG_WARNING, "get_utc_date_time_insec get a wrong time format\n");
189     }
190     timeinfo.tm_year = year - 1900;
191     timeinfo.tm_mon  = month - 1;
192     timeinfo.tm_mday = day;
193     timeinfo.tm_hour = hour;
194     timeinfo.tm_min  = minute;
195     timeinfo.tm_sec  = (int)second;
196
197     return av_timegm(&timeinfo);
198 }
199
200 static uint32_t get_duration_insec(AVFormatContext *s, const char *duration)
201 {
202     /* ISO-8601 duration parser */
203     uint32_t days = 0;
204     uint32_t hours = 0;
205     uint32_t mins = 0;
206     uint32_t secs = 0;
207     int size = 0;
208     float value = 0;
209     char type = '\0';
210     const char *ptr = duration;
211
212     while (*ptr) {
213         if (*ptr == 'P' || *ptr == 'T') {
214             ptr++;
215             continue;
216         }
217
218         if (sscanf(ptr, "%f%c%n", &value, &type, &size) != 2) {
219             av_log(s, AV_LOG_WARNING, "get_duration_insec get a wrong time format\n");
220             return 0; /* parser error */
221         }
222         switch (type) {
223             case 'D':
224                 days = (uint32_t)value;
225                 break;
226             case 'H':
227                 hours = (uint32_t)value;
228                 break;
229             case 'M':
230                 mins = (uint32_t)value;
231                 break;
232             case 'S':
233                 secs = (uint32_t)value;
234                 break;
235             default:
236                 // handle invalid type
237                 break;
238         }
239         ptr += size;
240     }
241     return  ((days * 24 + hours) * 60 + mins) * 60 + secs;
242 }
243
244 static int64_t get_segment_start_time_based_on_timeline(struct representation *pls, int64_t cur_seq_no)
245 {
246     int64_t start_time = 0;
247     int64_t i = 0;
248     int64_t j = 0;
249     int64_t num = 0;
250
251     if (pls->n_timelines) {
252         for (i = 0; i < pls->n_timelines; i++) {
253             if (pls->timelines[i]->starttime > 0) {
254                 start_time = pls->timelines[i]->starttime;
255             }
256             if (num == cur_seq_no)
257                 goto finish;
258
259             start_time += pls->timelines[i]->duration;
260             for (j = 0; j < pls->timelines[i]->repeat; j++) {
261                 num++;
262                 if (num == cur_seq_no)
263                     goto finish;
264                 start_time += pls->timelines[i]->duration;
265             }
266             num++;
267         }
268     }
269 finish:
270     return start_time;
271 }
272
273 static int64_t calc_next_seg_no_from_timelines(struct representation *pls, int64_t cur_time)
274 {
275     int64_t i = 0;
276     int64_t j = 0;
277     int64_t num = 0;
278     int64_t start_time = 0;
279
280     for (i = 0; i < pls->n_timelines; i++) {
281         if (pls->timelines[i]->starttime > 0) {
282             start_time = pls->timelines[i]->starttime;
283         }
284         if (start_time > cur_time)
285             goto finish;
286
287         start_time += pls->timelines[i]->duration;
288         for (j = 0; j < pls->timelines[i]->repeat; j++) {
289             num++;
290             if (start_time > cur_time)
291                 goto finish;
292             start_time += pls->timelines[i]->duration;
293         }
294         num++;
295     }
296
297     return -1;
298
299 finish:
300     return num;
301 }
302
303 static void free_fragment(struct fragment **seg)
304 {
305     if (!(*seg)) {
306         return;
307     }
308     av_freep(&(*seg)->url);
309     av_freep(seg);
310 }
311
312 static void free_fragment_list(struct representation *pls)
313 {
314     int i;
315
316     for (i = 0; i < pls->n_fragments; i++) {
317         free_fragment(&pls->fragments[i]);
318     }
319     av_freep(&pls->fragments);
320     pls->n_fragments = 0;
321 }
322
323 static void free_timelines_list(struct representation *pls)
324 {
325     int i;
326
327     for (i = 0; i < pls->n_timelines; i++) {
328         av_freep(&pls->timelines[i]);
329     }
330     av_freep(&pls->timelines);
331     pls->n_timelines = 0;
332 }
333
334 static void free_representation(struct representation *pls)
335 {
336     free_fragment_list(pls);
337     free_timelines_list(pls);
338     free_fragment(&pls->cur_seg);
339     free_fragment(&pls->init_section);
340     av_freep(&pls->init_sec_buf);
341     av_freep(&pls->pb.buffer);
342     if (pls->input)
343         ff_format_io_close(pls->parent, &pls->input);
344     if (pls->ctx) {
345         pls->ctx->pb = NULL;
346         avformat_close_input(&pls->ctx);
347     }
348
349     av_freep(&pls->url_template);
350     av_freep(&pls);
351 }
352
353 static void free_video_list(DASHContext *c)
354 {
355     int i;
356     for (i = 0; i < c->n_videos; i++) {
357         struct representation *pls = c->videos[i];
358         free_representation(pls);
359     }
360     av_freep(&c->videos);
361     c->n_videos = 0;
362 }
363
364 static void free_audio_list(DASHContext *c)
365 {
366     int i;
367     for (i = 0; i < c->n_audios; i++) {
368         struct representation *pls = c->audios[i];
369         free_representation(pls);
370     }
371     av_freep(&c->audios);
372     c->n_audios = 0;
373 }
374
375 static void set_httpheader_options(DASHContext *c, AVDictionary **opts)
376 {
377     // broker prior HTTP options that should be consistent across requests
378     av_dict_set(opts, "user-agent", c->user_agent, 0);
379     av_dict_set(opts, "cookies", c->cookies, 0);
380     av_dict_set(opts, "headers", c->headers, 0);
381     if (c->is_live) {
382         av_dict_set(opts, "seekable", "0", 0);
383     }
384 }
385 static void update_options(char **dest, const char *name, void *src)
386 {
387     av_freep(dest);
388     av_opt_get(src, name, AV_OPT_SEARCH_CHILDREN, (uint8_t**)dest);
389     if (*dest)
390         av_freep(dest);
391 }
392
393 static int open_url(AVFormatContext *s, AVIOContext **pb, const char *url,
394                     AVDictionary *opts, AVDictionary *opts2, int *is_http)
395 {
396     DASHContext *c = s->priv_data;
397     AVDictionary *tmp = NULL;
398     const char *proto_name = NULL;
399     int ret;
400
401     av_dict_copy(&tmp, opts, 0);
402     av_dict_copy(&tmp, opts2, 0);
403
404     if (av_strstart(url, "crypto", NULL)) {
405         if (url[6] == '+' || url[6] == ':')
406             proto_name = avio_find_protocol_name(url + 7);
407     }
408
409     if (!proto_name)
410         proto_name = avio_find_protocol_name(url);
411
412     if (!proto_name)
413         return AVERROR_INVALIDDATA;
414
415     // only http(s) & file are allowed
416     if (av_strstart(proto_name, "file", NULL)) {
417         if (strcmp(c->allowed_extensions, "ALL") && !av_match_ext(url, c->allowed_extensions)) {
418             av_log(s, AV_LOG_ERROR,
419                 "Filename extension of \'%s\' is not a common multimedia extension, blocked for security reasons.\n"
420                 "If you wish to override this adjust allowed_extensions, you can set it to \'ALL\' to allow all\n",
421                 url);
422             return AVERROR_INVALIDDATA;
423         }
424     } else if (av_strstart(proto_name, "http", NULL)) {
425         ;
426     } else
427         return AVERROR_INVALIDDATA;
428
429     if (!strncmp(proto_name, url, strlen(proto_name)) && url[strlen(proto_name)] == ':')
430         ;
431     else if (av_strstart(url, "crypto", NULL) && !strncmp(proto_name, url + 7, strlen(proto_name)) && url[7 + strlen(proto_name)] == ':')
432         ;
433     else if (strcmp(proto_name, "file") || !strncmp(url, "file,", 5))
434         return AVERROR_INVALIDDATA;
435
436     av_freep(pb);
437     ret = avio_open2(pb, url, AVIO_FLAG_READ, c->interrupt_callback, &tmp);
438     if (ret >= 0) {
439         // update cookies on http response with setcookies.
440         char *new_cookies = NULL;
441
442         if (!(s->flags & AVFMT_FLAG_CUSTOM_IO))
443             av_opt_get(*pb, "cookies", AV_OPT_SEARCH_CHILDREN, (uint8_t**)&new_cookies);
444
445         if (new_cookies) {
446             av_free(c->cookies);
447             c->cookies = new_cookies;
448         }
449
450         av_dict_set(&opts, "cookies", c->cookies, 0);
451     }
452
453     av_dict_free(&tmp);
454
455     if (is_http)
456         *is_http = av_strstart(proto_name, "http", NULL);
457
458     return ret;
459 }
460
461 static char *get_content_url(xmlNodePtr *baseurl_nodes,
462                              int n_baseurl_nodes,
463                              int max_url_size,
464                              char *rep_id_val,
465                              char *rep_bandwidth_val,
466                              char *val)
467 {
468     int i;
469     char *text;
470     char *url = NULL;
471     char *tmp_str = av_mallocz(max_url_size);
472     char *tmp_str_2 = av_mallocz(max_url_size);
473
474     if (!tmp_str || !tmp_str_2) {
475         return NULL;
476     }
477
478     for (i = 0; i < n_baseurl_nodes; ++i) {
479         if (baseurl_nodes[i] &&
480             baseurl_nodes[i]->children &&
481             baseurl_nodes[i]->children->type == XML_TEXT_NODE) {
482             text = xmlNodeGetContent(baseurl_nodes[i]->children);
483             if (text) {
484                 memset(tmp_str, 0, max_url_size);
485                 memset(tmp_str_2, 0, max_url_size);
486                 ff_make_absolute_url(tmp_str_2, max_url_size, tmp_str, text);
487                 av_strlcpy(tmp_str, tmp_str_2, max_url_size);
488                 xmlFree(text);
489             }
490         }
491     }
492
493     if (val)
494         av_strlcat(tmp_str, (const char*)val, max_url_size);
495
496     if (rep_id_val) {
497         url = av_strireplace(tmp_str, "$RepresentationID$", (const char*)rep_id_val);
498         if (!url) {
499             goto end;
500         }
501         av_strlcpy(tmp_str, url, max_url_size);
502     }
503     if (rep_bandwidth_val && tmp_str[0] != '\0') {
504         // free any previously assigned url before reassigning
505         av_free(url);
506         url = av_strireplace(tmp_str, "$Bandwidth$", (const char*)rep_bandwidth_val);
507         if (!url) {
508             goto end;
509         }
510     }
511 end:
512     av_free(tmp_str);
513     av_free(tmp_str_2);
514     return url;
515 }
516
517 static char *get_val_from_nodes_tab(xmlNodePtr *nodes, const int n_nodes, const char *attrname)
518 {
519     int i;
520     char *val;
521
522     for (i = 0; i < n_nodes; ++i) {
523         if (nodes[i]) {
524             val = xmlGetProp(nodes[i], attrname);
525             if (val)
526                 return val;
527         }
528     }
529
530     return NULL;
531 }
532
533 static xmlNodePtr find_child_node_by_name(xmlNodePtr rootnode, const char *nodename)
534 {
535     xmlNodePtr node = rootnode;
536     if (!node) {
537         return NULL;
538     }
539
540     node = xmlFirstElementChild(node);
541     while (node) {
542         if (!av_strcasecmp(node->name, nodename)) {
543             return node;
544         }
545         node = xmlNextElementSibling(node);
546     }
547     return NULL;
548 }
549
550 static enum AVMediaType get_content_type(xmlNodePtr node)
551 {
552     enum AVMediaType type = AVMEDIA_TYPE_UNKNOWN;
553     int i = 0;
554     const char *attr;
555     char *val = NULL;
556
557     if (node) {
558         for (i = 0; i < 2; i++) {
559             attr = i ? "mimeType" : "contentType";
560             val = xmlGetProp(node, attr);
561             if (val) {
562                 if (av_stristr((const char *)val, "video")) {
563                     type = AVMEDIA_TYPE_VIDEO;
564                 } else if (av_stristr((const char *)val, "audio")) {
565                     type = AVMEDIA_TYPE_AUDIO;
566                 }
567                 xmlFree(val);
568             }
569         }
570     }
571     return type;
572 }
573
574 static struct fragment * get_Fragment(char *range)
575 {
576     struct fragment * seg =  av_mallocz(sizeof(struct fragment));
577
578     if (!seg)
579         return NULL;
580
581     seg->size = -1;
582     if (range) {
583         char *str_end_offset;
584         char *str_offset = av_strtok(range, "-", &str_end_offset);
585         seg->url_offset = strtoll(str_offset, NULL, 10);
586         seg->size = strtoll(str_end_offset, NULL, 10) - seg->url_offset;
587     }
588
589     return seg;
590 }
591
592 static int parse_manifest_segmenturlnode(AVFormatContext *s, struct representation *rep,
593                                          xmlNodePtr fragmenturl_node,
594                                          xmlNodePtr *baseurl_nodes,
595                                          char *rep_id_val,
596                                          char *rep_bandwidth_val)
597 {
598     DASHContext *c = s->priv_data;
599     char *initialization_val = NULL;
600     char *media_val = NULL;
601     char *range_val = NULL;
602     int max_url_size = c ? c->max_url_size: MAX_URL_SIZE;
603
604     if (!av_strcasecmp(fragmenturl_node->name, (const char *)"Initialization")) {
605         initialization_val = xmlGetProp(fragmenturl_node, "sourceURL");
606         range_val = xmlGetProp(fragmenturl_node, "range");
607         if (initialization_val || range_val) {
608             rep->init_section = get_Fragment(range_val);
609             if (!rep->init_section) {
610                 xmlFree(initialization_val);
611                 xmlFree(range_val);
612                 return AVERROR(ENOMEM);
613             }
614             rep->init_section->url = get_content_url(baseurl_nodes, 4,
615                                                      max_url_size,
616                                                      rep_id_val,
617                                                      rep_bandwidth_val,
618                                                      initialization_val);
619
620             if (!rep->init_section->url) {
621                 av_free(rep->init_section);
622                 xmlFree(initialization_val);
623                 xmlFree(range_val);
624                 return AVERROR(ENOMEM);
625             }
626             xmlFree(initialization_val);
627             xmlFree(range_val);
628         }
629     } else if (!av_strcasecmp(fragmenturl_node->name, (const char *)"SegmentURL")) {
630         media_val = xmlGetProp(fragmenturl_node, "media");
631         range_val = xmlGetProp(fragmenturl_node, "mediaRange");
632         if (media_val || range_val) {
633             struct fragment *seg = get_Fragment(range_val);
634             if (!seg) {
635                 xmlFree(media_val);
636                 xmlFree(range_val);
637                 return AVERROR(ENOMEM);
638             }
639             seg->url = get_content_url(baseurl_nodes, 4,
640                                        max_url_size,
641                                        rep_id_val,
642                                        rep_bandwidth_val,
643                                        media_val);
644             if (!seg->url) {
645                 av_free(seg);
646                 xmlFree(media_val);
647                 xmlFree(range_val);
648                 return AVERROR(ENOMEM);
649             }
650             dynarray_add(&rep->fragments, &rep->n_fragments, seg);
651             xmlFree(media_val);
652             xmlFree(range_val);
653         }
654     }
655
656     return 0;
657 }
658
659 static int parse_manifest_segmenttimeline(AVFormatContext *s, struct representation *rep,
660                                           xmlNodePtr fragment_timeline_node)
661 {
662     xmlAttrPtr attr = NULL;
663     char *val  = NULL;
664
665     if (!av_strcasecmp(fragment_timeline_node->name, (const char *)"S")) {
666         struct timeline *tml = av_mallocz(sizeof(struct timeline));
667         if (!tml) {
668             return AVERROR(ENOMEM);
669         }
670         attr = fragment_timeline_node->properties;
671         while (attr) {
672             val = xmlGetProp(fragment_timeline_node, attr->name);
673
674             if (!val) {
675                 av_log(s, AV_LOG_WARNING, "parse_manifest_segmenttimeline attr->name = %s val is NULL\n", attr->name);
676                 continue;
677             }
678
679             if (!av_strcasecmp(attr->name, (const char *)"t")) {
680                 tml->starttime = (int64_t)strtoll(val, NULL, 10);
681             } else if (!av_strcasecmp(attr->name, (const char *)"r")) {
682                 tml->repeat =(int64_t) strtoll(val, NULL, 10);
683             } else if (!av_strcasecmp(attr->name, (const char *)"d")) {
684                 tml->duration = (int64_t)strtoll(val, NULL, 10);
685             }
686             attr = attr->next;
687             xmlFree(val);
688         }
689         dynarray_add(&rep->timelines, &rep->n_timelines, tml);
690     }
691
692     return 0;
693 }
694
695 static int resolve_content_path(AVFormatContext *s, const char *url, int *max_url_size, xmlNodePtr *baseurl_nodes, int n_baseurl_nodes) {
696
697     char *tmp_str = NULL;
698     char *path = NULL;
699     char *mpdName = NULL;
700     xmlNodePtr node = NULL;
701     char *baseurl = NULL;
702     char *root_url = NULL;
703     char *text = NULL;
704
705     int isRootHttp = 0;
706     char token ='/';
707     int start =  0;
708     int rootId = 0;
709     int updated = 0;
710     int size = 0;
711     int i;
712     int tmp_max_url_size = strlen(url);
713
714     for (i = n_baseurl_nodes-1; i >= 0 ; i--) {
715         text = xmlNodeGetContent(baseurl_nodes[i]);
716         if (!text)
717             continue;
718         tmp_max_url_size += strlen(text);
719         if (ishttp(text)) {
720             xmlFree(text);
721             break;
722         }
723         xmlFree(text);
724     }
725
726     tmp_max_url_size = aligned(tmp_max_url_size);
727     text = av_mallocz(tmp_max_url_size);
728     if (!text) {
729         updated = AVERROR(ENOMEM);
730         goto end;
731     }
732     av_strlcpy(text, url, strlen(url)+1);
733     while (mpdName = av_strtok(text, "/", &text))  {
734         size = strlen(mpdName);
735     }
736
737     path = av_mallocz(tmp_max_url_size);
738     tmp_str = av_mallocz(tmp_max_url_size);
739     if (!tmp_str || !path) {
740         updated = AVERROR(ENOMEM);
741         goto end;
742     }
743
744     av_strlcpy (path, url, strlen(url) - size + 1);
745     for (rootId = n_baseurl_nodes - 1; rootId > 0; rootId --) {
746         if (!(node = baseurl_nodes[rootId])) {
747             continue;
748         }
749         if (ishttp(xmlNodeGetContent(node))) {
750             break;
751         }
752     }
753
754     node = baseurl_nodes[rootId];
755     baseurl = xmlNodeGetContent(node);
756     root_url = (av_strcasecmp(baseurl, "")) ? baseurl : path;
757     if (node) {
758         xmlNodeSetContent(node, root_url);
759         updated = 1;
760     }
761
762     size = strlen(root_url);
763     isRootHttp = ishttp(root_url);
764
765     if (root_url[size - 1] != token) {
766         av_strlcat(root_url, "/", size + 2);
767         size += 2;
768     }
769
770     for (i = 0; i < n_baseurl_nodes; ++i) {
771         if (i == rootId) {
772             continue;
773         }
774         text = xmlNodeGetContent(baseurl_nodes[i]);
775         if (text) {
776             memset(tmp_str, 0, strlen(tmp_str));
777             if (!ishttp(text) && isRootHttp) {
778                 av_strlcpy(tmp_str, root_url, size + 1);
779             }
780             start = (text[0] == token);
781             av_strlcat(tmp_str, text + start, tmp_max_url_size);
782             xmlNodeSetContent(baseurl_nodes[i], tmp_str);
783             updated = 1;
784             xmlFree(text);
785         }
786     }
787
788 end:
789     if (tmp_max_url_size > *max_url_size) {
790         *max_url_size = tmp_max_url_size;
791     }
792     av_free(path);
793     av_free(tmp_str);
794     return updated;
795
796 }
797
798 static int parse_manifest_representation(AVFormatContext *s, const char *url,
799                                          xmlNodePtr node,
800                                          xmlNodePtr adaptionset_node,
801                                          xmlNodePtr mpd_baseurl_node,
802                                          xmlNodePtr period_baseurl_node,
803                                          xmlNodePtr period_segmenttemplate_node,
804                                          xmlNodePtr fragment_template_node,
805                                          xmlNodePtr content_component_node,
806                                          xmlNodePtr adaptionset_baseurl_node,
807                                          xmlNodePtr adaptionset_segmentlist_node)
808 {
809     int32_t ret = 0;
810     int32_t audio_rep_idx = 0;
811     int32_t video_rep_idx = 0;
812     DASHContext *c = s->priv_data;
813     struct representation *rep = NULL;
814     struct fragment *seg = NULL;
815     xmlNodePtr representation_segmenttemplate_node = NULL;
816     xmlNodePtr representation_baseurl_node = NULL;
817     xmlNodePtr representation_segmentlist_node = NULL;
818     xmlNodePtr segmentlists_tab[2];
819     xmlNodePtr fragment_timeline_node = NULL;
820     xmlNodePtr fragment_templates_tab[4];
821     char *duration_val = NULL;
822     char *presentation_timeoffset_val = NULL;
823     char *startnumber_val = NULL;
824     char *timescale_val = NULL;
825     char *initialization_val = NULL;
826     char *media_val = NULL;
827     xmlNodePtr baseurl_nodes[4];
828     xmlNodePtr representation_node = node;
829     char *rep_id_val = xmlGetProp(representation_node, "id");
830     char *rep_bandwidth_val = xmlGetProp(representation_node, "bandwidth");
831     char *rep_framerate_val = xmlGetProp(representation_node, "frameRate");
832     enum AVMediaType type = AVMEDIA_TYPE_UNKNOWN;
833
834     // try get information from representation
835     if (type == AVMEDIA_TYPE_UNKNOWN)
836         type = get_content_type(representation_node);
837     // try get information from contentComponen
838     if (type == AVMEDIA_TYPE_UNKNOWN)
839         type = get_content_type(content_component_node);
840     // try get information from adaption set
841     if (type == AVMEDIA_TYPE_UNKNOWN)
842         type = get_content_type(adaptionset_node);
843     if (type == AVMEDIA_TYPE_UNKNOWN) {
844         av_log(s, AV_LOG_VERBOSE, "Parsing '%s' - skipp not supported representation type\n", url);
845     } else if (type == AVMEDIA_TYPE_VIDEO || type == AVMEDIA_TYPE_AUDIO) {
846         // convert selected representation to our internal struct
847         rep = av_mallocz(sizeof(struct representation));
848         if (!rep) {
849             ret = AVERROR(ENOMEM);
850             goto end;
851         }
852         representation_segmenttemplate_node = find_child_node_by_name(representation_node, "SegmentTemplate");
853         representation_baseurl_node = find_child_node_by_name(representation_node, "BaseURL");
854         representation_segmentlist_node = find_child_node_by_name(representation_node, "SegmentList");
855
856         baseurl_nodes[0] = mpd_baseurl_node;
857         baseurl_nodes[1] = period_baseurl_node;
858         baseurl_nodes[2] = adaptionset_baseurl_node;
859         baseurl_nodes[3] = representation_baseurl_node;
860
861         ret = resolve_content_path(s, url, &c->max_url_size, baseurl_nodes, 4);
862         c->max_url_size = aligned(c->max_url_size  + strlen(rep_id_val) + strlen(rep_bandwidth_val));
863         if (ret == AVERROR(ENOMEM) || ret == 0) {
864             goto end;
865         }
866         if (representation_segmenttemplate_node || fragment_template_node || period_segmenttemplate_node) {
867             fragment_timeline_node = NULL;
868             fragment_templates_tab[0] = representation_segmenttemplate_node;
869             fragment_templates_tab[1] = adaptionset_segmentlist_node;
870             fragment_templates_tab[2] = fragment_template_node;
871             fragment_templates_tab[3] = period_segmenttemplate_node;
872
873             presentation_timeoffset_val = get_val_from_nodes_tab(fragment_templates_tab, 4, "presentationTimeOffset");
874             duration_val = get_val_from_nodes_tab(fragment_templates_tab, 4, "duration");
875             startnumber_val = get_val_from_nodes_tab(fragment_templates_tab, 4, "startNumber");
876             timescale_val = get_val_from_nodes_tab(fragment_templates_tab, 4, "timescale");
877             initialization_val = get_val_from_nodes_tab(fragment_templates_tab, 4, "initialization");
878             media_val = get_val_from_nodes_tab(fragment_templates_tab, 4, "media");
879
880             if (initialization_val) {
881                 rep->init_section = av_mallocz(sizeof(struct fragment));
882                 if (!rep->init_section) {
883                     av_free(rep);
884                     ret = AVERROR(ENOMEM);
885                     goto end;
886                 }
887                 c->max_url_size = aligned(c->max_url_size  + strlen(initialization_val));
888                 rep->init_section->url = get_content_url(baseurl_nodes, 4,  c->max_url_size, rep_id_val, rep_bandwidth_val, initialization_val);
889                 if (!rep->init_section->url) {
890                     av_free(rep->init_section);
891                     av_free(rep);
892                     ret = AVERROR(ENOMEM);
893                     goto end;
894                 }
895                 rep->init_section->size = -1;
896                 xmlFree(initialization_val);
897             }
898
899             if (media_val) {
900                 c->max_url_size = aligned(c->max_url_size  + strlen(media_val));
901                 rep->url_template = get_content_url(baseurl_nodes, 4, c->max_url_size, rep_id_val, rep_bandwidth_val, media_val);
902                 xmlFree(media_val);
903             }
904
905             if (presentation_timeoffset_val) {
906                 rep->presentation_timeoffset = (int64_t) strtoll(presentation_timeoffset_val, NULL, 10);
907                 xmlFree(presentation_timeoffset_val);
908             }
909             if (duration_val) {
910                 rep->fragment_duration = (int64_t) strtoll(duration_val, NULL, 10);
911                 xmlFree(duration_val);
912             }
913             if (timescale_val) {
914                 rep->fragment_timescale = (int64_t) strtoll(timescale_val, NULL, 10);
915                 xmlFree(timescale_val);
916             }
917             if (startnumber_val) {
918                 rep->first_seq_no = (int64_t) strtoll(startnumber_val, NULL, 10);
919                 xmlFree(startnumber_val);
920             }
921
922             fragment_timeline_node = find_child_node_by_name(representation_segmenttemplate_node, "SegmentTimeline");
923
924             if (!fragment_timeline_node)
925                 fragment_timeline_node = find_child_node_by_name(fragment_template_node, "SegmentTimeline");
926             if (!fragment_timeline_node)
927                 fragment_timeline_node = find_child_node_by_name(adaptionset_segmentlist_node, "SegmentTimeline");
928             if (fragment_timeline_node) {
929                 fragment_timeline_node = xmlFirstElementChild(fragment_timeline_node);
930                 while (fragment_timeline_node) {
931                     ret = parse_manifest_segmenttimeline(s, rep, fragment_timeline_node);
932                     if (ret < 0) {
933                         return ret;
934                     }
935                     fragment_timeline_node = xmlNextElementSibling(fragment_timeline_node);
936                 }
937             }
938         } else if (representation_baseurl_node && !representation_segmentlist_node) {
939             seg = av_mallocz(sizeof(struct fragment));
940             if (!seg) {
941                 ret = AVERROR(ENOMEM);
942                 goto end;
943             }
944             seg->url = get_content_url(baseurl_nodes, 4, c->max_url_size, rep_id_val, rep_bandwidth_val, NULL);
945             if (!seg->url) {
946                 av_free(seg);
947                 ret = AVERROR(ENOMEM);
948                 goto end;
949             }
950             seg->size = -1;
951             dynarray_add(&rep->fragments, &rep->n_fragments, seg);
952         } else if (representation_segmentlist_node) {
953             // TODO: https://www.brendanlong.com/the-structure-of-an-mpeg-dash-mpd.html
954             // http://www-itec.uni-klu.ac.at/dash/ddash/mpdGenerator.php?fragmentlength=15&type=full
955             xmlNodePtr fragmenturl_node = NULL;
956             segmentlists_tab[0] = representation_segmentlist_node;
957             segmentlists_tab[1] = adaptionset_segmentlist_node;
958
959             duration_val = get_val_from_nodes_tab(segmentlists_tab, 2, "duration");
960             timescale_val = get_val_from_nodes_tab(segmentlists_tab, 2, "timescale");
961             if (duration_val) {
962                 rep->fragment_duration = (int64_t) strtoll(duration_val, NULL, 10);
963                 xmlFree(duration_val);
964             }
965             if (timescale_val) {
966                 rep->fragment_timescale = (int64_t) strtoll(timescale_val, NULL, 10);
967                 xmlFree(timescale_val);
968             }
969             fragmenturl_node = xmlFirstElementChild(representation_segmentlist_node);
970             while (fragmenturl_node) {
971                 ret = parse_manifest_segmenturlnode(s, rep, fragmenturl_node,
972                                                     baseurl_nodes,
973                                                     rep_id_val,
974                                                     rep_bandwidth_val);
975                 if (ret < 0) {
976                     return ret;
977                 }
978                 fragmenturl_node = xmlNextElementSibling(fragmenturl_node);
979             }
980
981             fragment_timeline_node = find_child_node_by_name(representation_segmenttemplate_node, "SegmentTimeline");
982
983             if (!fragment_timeline_node)
984                 fragment_timeline_node = find_child_node_by_name(fragment_template_node, "SegmentTimeline");
985             if (!fragment_timeline_node)
986                 fragment_timeline_node = find_child_node_by_name(adaptionset_segmentlist_node, "SegmentTimeline");
987             if (fragment_timeline_node) {
988                 fragment_timeline_node = xmlFirstElementChild(fragment_timeline_node);
989                 while (fragment_timeline_node) {
990                     ret = parse_manifest_segmenttimeline(s, rep, fragment_timeline_node);
991                     if (ret < 0) {
992                         return ret;
993                     }
994                     fragment_timeline_node = xmlNextElementSibling(fragment_timeline_node);
995                 }
996             }
997         } else {
998             free_representation(rep);
999             rep = NULL;
1000             av_log(s, AV_LOG_ERROR, "Unknown format of Representation node id[%s] \n", (const char *)rep_id_val);
1001         }
1002
1003         if (rep) {
1004             if (rep->fragment_duration > 0 && !rep->fragment_timescale)
1005                 rep->fragment_timescale = 1;
1006             rep->bandwidth = rep_bandwidth_val ? atoi(rep_bandwidth_val) : 0;
1007             strncpy(rep->id, rep_id_val ? rep_id_val : "", sizeof(rep->id));
1008             rep->framerate = av_make_q(0, 0);
1009             if (type == AVMEDIA_TYPE_VIDEO && rep_framerate_val) {
1010                 ret = av_parse_video_rate(&rep->framerate, rep_framerate_val);
1011                 if (ret < 0)
1012                     av_log(s, AV_LOG_VERBOSE, "Ignoring invalid frame rate '%s'\n", rep_framerate_val);
1013             }
1014
1015             if (type == AVMEDIA_TYPE_VIDEO) {
1016                 rep->rep_idx = video_rep_idx;
1017                 dynarray_add(&c->videos, &c->n_videos, rep);
1018             } else {
1019                 rep->rep_idx = audio_rep_idx;
1020                 dynarray_add(&c->audios, &c->n_audios, rep);
1021             }
1022         }
1023     }
1024
1025     video_rep_idx += type == AVMEDIA_TYPE_VIDEO;
1026     audio_rep_idx += type == AVMEDIA_TYPE_AUDIO;
1027
1028 end:
1029     if (rep_id_val)
1030         xmlFree(rep_id_val);
1031     if (rep_bandwidth_val)
1032         xmlFree(rep_bandwidth_val);
1033     if (rep_framerate_val)
1034         xmlFree(rep_framerate_val);
1035
1036     return ret;
1037 }
1038
1039 static int parse_manifest_adaptationset(AVFormatContext *s, const char *url,
1040                                         xmlNodePtr adaptionset_node,
1041                                         xmlNodePtr mpd_baseurl_node,
1042                                         xmlNodePtr period_baseurl_node,
1043                                         xmlNodePtr period_segmenttemplate_node)
1044 {
1045     int ret = 0;
1046     xmlNodePtr fragment_template_node = NULL;
1047     xmlNodePtr content_component_node = NULL;
1048     xmlNodePtr adaptionset_baseurl_node = NULL;
1049     xmlNodePtr adaptionset_segmentlist_node = NULL;
1050     xmlNodePtr node = NULL;
1051
1052     node = xmlFirstElementChild(adaptionset_node);
1053     while (node) {
1054         if (!av_strcasecmp(node->name, (const char *)"SegmentTemplate")) {
1055             fragment_template_node = node;
1056         } else if (!av_strcasecmp(node->name, (const char *)"ContentComponent")) {
1057             content_component_node = node;
1058         } else if (!av_strcasecmp(node->name, (const char *)"BaseURL")) {
1059             adaptionset_baseurl_node = node;
1060         } else if (!av_strcasecmp(node->name, (const char *)"SegmentList")) {
1061             adaptionset_segmentlist_node = node;
1062         } else if (!av_strcasecmp(node->name, (const char *)"Representation")) {
1063             ret = parse_manifest_representation(s, url, node,
1064                                                 adaptionset_node,
1065                                                 mpd_baseurl_node,
1066                                                 period_baseurl_node,
1067                                                 period_segmenttemplate_node,
1068                                                 fragment_template_node,
1069                                                 content_component_node,
1070                                                 adaptionset_baseurl_node,
1071                                                 adaptionset_segmentlist_node);
1072             if (ret < 0) {
1073                 return ret;
1074             }
1075         }
1076         node = xmlNextElementSibling(node);
1077     }
1078     return 0;
1079 }
1080
1081 static int parse_manifest(AVFormatContext *s, const char *url, AVIOContext *in)
1082 {
1083     DASHContext *c = s->priv_data;
1084     int ret = 0;
1085     int close_in = 0;
1086     uint8_t *new_url = NULL;
1087     int64_t filesize = 0;
1088     char *buffer = NULL;
1089     AVDictionary *opts = NULL;
1090     xmlDoc *doc = NULL;
1091     xmlNodePtr root_element = NULL;
1092     xmlNodePtr node = NULL;
1093     xmlNodePtr period_node = NULL;
1094     xmlNodePtr mpd_baseurl_node = NULL;
1095     xmlNodePtr period_baseurl_node = NULL;
1096     xmlNodePtr period_segmenttemplate_node = NULL;
1097     xmlNodePtr adaptionset_node = NULL;
1098     xmlAttrPtr attr = NULL;
1099     char *val  = NULL;
1100     uint32_t perdiod_duration_sec = 0;
1101     uint32_t perdiod_start_sec = 0;
1102
1103     if (!in) {
1104         close_in = 1;
1105
1106         set_httpheader_options(c, &opts);
1107         ret = avio_open2(&in, url, AVIO_FLAG_READ, c->interrupt_callback, &opts);
1108         av_dict_free(&opts);
1109         if (ret < 0)
1110             return ret;
1111     }
1112
1113     if (av_opt_get(in, "location", AV_OPT_SEARCH_CHILDREN, &new_url) >= 0) {
1114         c->base_url = av_strdup(new_url);
1115     } else {
1116         c->base_url = av_strdup(url);
1117     }
1118
1119     filesize = avio_size(in);
1120     if (filesize <= 0) {
1121         filesize = 8 * 1024;
1122     }
1123
1124     buffer = av_mallocz(filesize);
1125     if (!buffer) {
1126         av_free(c->base_url);
1127         return AVERROR(ENOMEM);
1128     }
1129
1130     filesize = avio_read(in, buffer, filesize);
1131     if (filesize <= 0) {
1132         av_log(s, AV_LOG_ERROR, "Unable to read to offset '%s'\n", url);
1133         ret = AVERROR_INVALIDDATA;
1134     } else {
1135         LIBXML_TEST_VERSION
1136
1137         doc = xmlReadMemory(buffer, filesize, c->base_url, NULL, 0);
1138         root_element = xmlDocGetRootElement(doc);
1139         node = root_element;
1140
1141         if (!node) {
1142             ret = AVERROR_INVALIDDATA;
1143             av_log(s, AV_LOG_ERROR, "Unable to parse '%s' - missing root node\n", url);
1144             goto cleanup;
1145         }
1146
1147         if (node->type != XML_ELEMENT_NODE ||
1148             av_strcasecmp(node->name, (const char *)"MPD")) {
1149             ret = AVERROR_INVALIDDATA;
1150             av_log(s, AV_LOG_ERROR, "Unable to parse '%s' - wrong root node name[%s] type[%d]\n", url, node->name, (int)node->type);
1151             goto cleanup;
1152         }
1153
1154         val = xmlGetProp(node, "type");
1155         if (!val) {
1156             av_log(s, AV_LOG_ERROR, "Unable to parse '%s' - missing type attrib\n", url);
1157             ret = AVERROR_INVALIDDATA;
1158             goto cleanup;
1159         }
1160         if (!av_strcasecmp(val, (const char *)"dynamic"))
1161             c->is_live = 1;
1162         xmlFree(val);
1163
1164         attr = node->properties;
1165         while (attr) {
1166             val = xmlGetProp(node, attr->name);
1167
1168             if (!av_strcasecmp(attr->name, (const char *)"availabilityStartTime")) {
1169                 c->availability_start_time = get_utc_date_time_insec(s, (const char *)val);
1170             } else if (!av_strcasecmp(attr->name, (const char *)"publishTime")) {
1171                 c->publish_time = get_utc_date_time_insec(s, (const char *)val);
1172             } else if (!av_strcasecmp(attr->name, (const char *)"minimumUpdatePeriod")) {
1173                 c->minimum_update_period = get_duration_insec(s, (const char *)val);
1174             } else if (!av_strcasecmp(attr->name, (const char *)"timeShiftBufferDepth")) {
1175                 c->time_shift_buffer_depth = get_duration_insec(s, (const char *)val);
1176             } else if (!av_strcasecmp(attr->name, (const char *)"minBufferTime")) {
1177                 c->min_buffer_time = get_duration_insec(s, (const char *)val);
1178             } else if (!av_strcasecmp(attr->name, (const char *)"suggestedPresentationDelay")) {
1179                 c->suggested_presentation_delay = get_duration_insec(s, (const char *)val);
1180             } else if (!av_strcasecmp(attr->name, (const char *)"mediaPresentationDuration")) {
1181                 c->media_presentation_duration = get_duration_insec(s, (const char *)val);
1182             }
1183             attr = attr->next;
1184             xmlFree(val);
1185         }
1186
1187         mpd_baseurl_node = find_child_node_by_name(node, "BaseURL");
1188         if (!mpd_baseurl_node) {
1189             mpd_baseurl_node = xmlNewNode(NULL, "BaseURL");
1190         }
1191
1192         // at now we can handle only one period, with the longest duration
1193         node = xmlFirstElementChild(node);
1194         while (node) {
1195             if (!av_strcasecmp(node->name, (const char *)"Period")) {
1196                 perdiod_duration_sec = 0;
1197                 perdiod_start_sec = 0;
1198                 attr = node->properties;
1199                 while (attr) {
1200                     val = xmlGetProp(node, attr->name);
1201                     if (!av_strcasecmp(attr->name, (const char *)"duration")) {
1202                         perdiod_duration_sec = get_duration_insec(s, (const char *)val);
1203                     } else if (!av_strcasecmp(attr->name, (const char *)"start")) {
1204                         perdiod_start_sec = get_duration_insec(s, (const char *)val);
1205                     }
1206                     attr = attr->next;
1207                     xmlFree(val);
1208                 }
1209                 if ((perdiod_duration_sec) >= (c->period_duration)) {
1210                     period_node = node;
1211                     c->period_duration = perdiod_duration_sec;
1212                     c->period_start = perdiod_start_sec;
1213                     if (c->period_start > 0)
1214                         c->media_presentation_duration = c->period_duration;
1215                 }
1216             }
1217             node = xmlNextElementSibling(node);
1218         }
1219         if (!period_node) {
1220             av_log(s, AV_LOG_ERROR, "Unable to parse '%s' - missing Period node\n", url);
1221             ret = AVERROR_INVALIDDATA;
1222             goto cleanup;
1223         }
1224
1225         adaptionset_node = xmlFirstElementChild(period_node);
1226         while (adaptionset_node) {
1227             if (!av_strcasecmp(adaptionset_node->name, (const char *)"BaseURL")) {
1228                 period_baseurl_node = adaptionset_node;
1229             } else if (!av_strcasecmp(adaptionset_node->name, (const char *)"SegmentTemplate")) {
1230                 period_segmenttemplate_node = adaptionset_node;
1231             } else if (!av_strcasecmp(adaptionset_node->name, (const char *)"AdaptationSet")) {
1232                 parse_manifest_adaptationset(s, url, adaptionset_node, mpd_baseurl_node, period_baseurl_node, period_segmenttemplate_node);
1233             }
1234             adaptionset_node = xmlNextElementSibling(adaptionset_node);
1235         }
1236 cleanup:
1237         /*free the document */
1238         xmlFreeDoc(doc);
1239         xmlCleanupParser();
1240     }
1241
1242     av_free(new_url);
1243     av_free(buffer);
1244     if (close_in) {
1245         avio_close(in);
1246     }
1247     return ret;
1248 }
1249
1250 static int64_t calc_cur_seg_no(AVFormatContext *s, struct representation *pls)
1251 {
1252     DASHContext *c = s->priv_data;
1253     int64_t num = 0;
1254     int64_t start_time_offset = 0;
1255
1256     if (c->is_live) {
1257         if (pls->n_fragments) {
1258             num = pls->first_seq_no;
1259         } else if (pls->n_timelines) {
1260             start_time_offset = get_segment_start_time_based_on_timeline(pls, 0xFFFFFFFF) - pls->timelines[pls->first_seq_no]->starttime; // total duration of playlist
1261             if (start_time_offset < 60 * pls->fragment_timescale)
1262                 start_time_offset = 0;
1263             else
1264                 start_time_offset = start_time_offset - 60 * pls->fragment_timescale;
1265
1266             num = calc_next_seg_no_from_timelines(pls, pls->timelines[pls->first_seq_no]->starttime + start_time_offset);
1267             if (num == -1)
1268                 num = pls->first_seq_no;
1269         } else if (pls->fragment_duration){
1270             if (pls->presentation_timeoffset) {
1271                 num = pls->presentation_timeoffset * pls->fragment_timescale / pls->fragment_duration;
1272             } else if (c->publish_time > 0 && !c->availability_start_time) {
1273                 num = pls->first_seq_no + (((c->publish_time - c->availability_start_time) - c->suggested_presentation_delay) * pls->fragment_timescale) / pls->fragment_duration;
1274             } else {
1275                 num = pls->first_seq_no + (((get_current_time_in_sec() - c->availability_start_time) - c->suggested_presentation_delay) * pls->fragment_timescale) / pls->fragment_duration;
1276             }
1277         }
1278     } else {
1279         num = pls->first_seq_no;
1280     }
1281     return num;
1282 }
1283
1284 static int64_t calc_min_seg_no(AVFormatContext *s, struct representation *pls)
1285 {
1286     DASHContext *c = s->priv_data;
1287     int64_t num = 0;
1288
1289     if (c->is_live && pls->fragment_duration) {
1290         num = pls->first_seq_no + (((get_current_time_in_sec() - c->availability_start_time) - c->time_shift_buffer_depth) * pls->fragment_timescale) / pls->fragment_duration;
1291     } else {
1292         num = pls->first_seq_no;
1293     }
1294     return num;
1295 }
1296
1297 static int64_t calc_max_seg_no(struct representation *pls, DASHContext *c)
1298 {
1299     int64_t num = 0;
1300
1301     if (pls->n_fragments) {
1302         num = pls->first_seq_no + pls->n_fragments - 1;
1303     } else if (pls->n_timelines) {
1304         int i = 0;
1305         num = pls->first_seq_no + pls->n_timelines - 1;
1306         for (i = 0; i < pls->n_timelines; i++) {
1307             num += pls->timelines[i]->repeat;
1308         }
1309     } else if (c->is_live && pls->fragment_duration) {
1310         num = pls->first_seq_no + (((get_current_time_in_sec() - c->availability_start_time)) * pls->fragment_timescale)  / pls->fragment_duration;
1311     } else if (pls->fragment_duration) {
1312         num = pls->first_seq_no + (c->media_presentation_duration * pls->fragment_timescale) / pls->fragment_duration;
1313     }
1314
1315     return num;
1316 }
1317
1318 static void move_timelines(struct representation *rep_src, struct representation *rep_dest, DASHContext *c)
1319 {
1320     if (rep_dest && rep_src ) {
1321         free_timelines_list(rep_dest);
1322         rep_dest->timelines    = rep_src->timelines;
1323         rep_dest->n_timelines  = rep_src->n_timelines;
1324         rep_dest->first_seq_no = rep_src->first_seq_no;
1325         rep_dest->last_seq_no = calc_max_seg_no(rep_dest, c);
1326         rep_src->timelines = NULL;
1327         rep_src->n_timelines = 0;
1328         rep_dest->cur_seq_no = rep_src->cur_seq_no;
1329     }
1330 }
1331
1332 static void move_segments(struct representation *rep_src, struct representation *rep_dest, DASHContext *c)
1333 {
1334     if (rep_dest && rep_src ) {
1335         free_fragment_list(rep_dest);
1336         if (rep_src->start_number > (rep_dest->start_number + rep_dest->n_fragments))
1337             rep_dest->cur_seq_no = 0;
1338         else
1339             rep_dest->cur_seq_no += rep_src->start_number - rep_dest->start_number;
1340         rep_dest->fragments    = rep_src->fragments;
1341         rep_dest->n_fragments  = rep_src->n_fragments;
1342         rep_dest->parent  = rep_src->parent;
1343         rep_dest->last_seq_no = calc_max_seg_no(rep_dest, c);
1344         rep_src->fragments = NULL;
1345         rep_src->n_fragments = 0;
1346     }
1347 }
1348
1349
1350 static int refresh_manifest(AVFormatContext *s)
1351 {
1352
1353     int ret = 0, i;
1354     DASHContext *c = s->priv_data;
1355
1356     // save current context
1357     int n_videos = c->n_videos;
1358     struct representation **videos = c->videos;
1359     int n_audios = c->n_audios;
1360     struct representation **audios = c->audios;
1361     char *base_url = c->base_url;
1362
1363     c->base_url = NULL;
1364     c->n_videos = 0;
1365     c->videos = NULL;
1366     c->n_audios = 0;
1367     c->audios = NULL;
1368     ret = parse_manifest(s, s->filename, NULL);
1369     if (ret)
1370         goto finish;
1371
1372     if (c->n_videos != n_videos) {
1373         av_log(c, AV_LOG_ERROR,
1374             "new manifest has mismatched no. of video representations, %d -> %d\n",
1375             n_videos, c->n_videos);
1376         return AVERROR_INVALIDDATA;
1377     }
1378     if (c->n_audios != n_audios) {
1379         av_log(c, AV_LOG_ERROR,
1380             "new manifest has mismatched no. of audio representations, %d -> %d\n",
1381             n_audios, c->n_audios);
1382         return AVERROR_INVALIDDATA;
1383     }
1384
1385     for (i = 0; i < n_videos; i++) {
1386         struct representation *cur_video = videos[i];
1387         struct representation *ccur_video = c->videos[i];
1388         if (cur_video->timelines) {
1389             // calc current time
1390             int64_t currentTime = get_segment_start_time_based_on_timeline(cur_video, cur_video->cur_seq_no) / cur_video->fragment_timescale;
1391             // update segments
1392             ccur_video->cur_seq_no = calc_next_seg_no_from_timelines(ccur_video, currentTime * cur_video->fragment_timescale - 1);
1393             if (ccur_video->cur_seq_no >= 0) {
1394                 move_timelines(ccur_video, cur_video, c);
1395             }
1396         }
1397         if (cur_video->fragments) {
1398             move_segments(ccur_video, cur_video, c);
1399         }
1400     }
1401     for (i = 0; i < n_audios; i++) {
1402         struct representation *cur_audio = audios[i];
1403         struct representation *ccur_audio = c->audios[i];
1404         if (cur_audio->timelines) {
1405             // calc current time
1406             int64_t currentTime = get_segment_start_time_based_on_timeline(cur_audio, cur_audio->cur_seq_no) / cur_audio->fragment_timescale;
1407             // update segments
1408             ccur_audio->cur_seq_no = calc_next_seg_no_from_timelines(ccur_audio, currentTime * cur_audio->fragment_timescale - 1);
1409             if (ccur_audio->cur_seq_no >= 0) {
1410                 move_timelines(ccur_audio, cur_audio, c);
1411             }
1412         }
1413         if (cur_audio->fragments) {
1414             move_segments(ccur_audio, cur_audio, c);
1415         }
1416     }
1417
1418 finish:
1419     // restore context
1420     if (c->base_url)
1421         av_free(base_url);
1422     else
1423         c->base_url  = base_url;
1424     if (c->audios)
1425         free_audio_list(c);
1426     if (c->videos)
1427         free_video_list(c);
1428     c->n_audios = n_audios;
1429     c->audios = audios;
1430     c->n_videos = n_videos;
1431     c->videos = videos;
1432     return ret;
1433 }
1434
1435 static struct fragment *get_current_fragment(struct representation *pls)
1436 {
1437     int64_t min_seq_no = 0;
1438     int64_t max_seq_no = 0;
1439     struct fragment *seg = NULL;
1440     struct fragment *seg_ptr = NULL;
1441     DASHContext *c = pls->parent->priv_data;
1442
1443     while (( !ff_check_interrupt(c->interrupt_callback)&& pls->n_fragments > 0)) {
1444         if (pls->cur_seq_no < pls->n_fragments) {
1445             seg_ptr = pls->fragments[pls->cur_seq_no];
1446             seg = av_mallocz(sizeof(struct fragment));
1447             if (!seg) {
1448                 return NULL;
1449             }
1450             seg->url = av_strdup(seg_ptr->url);
1451             if (!seg->url) {
1452                 av_free(seg);
1453                 return NULL;
1454             }
1455             seg->size = seg_ptr->size;
1456             seg->url_offset = seg_ptr->url_offset;
1457             return seg;
1458         } else if (c->is_live) {
1459             refresh_manifest(pls->parent);
1460         } else {
1461             break;
1462         }
1463     }
1464     if (c->is_live) {
1465         min_seq_no = calc_min_seg_no(pls->parent, pls);
1466         max_seq_no = calc_max_seg_no(pls, c);
1467
1468         if (pls->timelines || pls->fragments) {
1469             refresh_manifest(pls->parent);
1470         }
1471         if (pls->cur_seq_no <= min_seq_no) {
1472             av_log(pls->parent, AV_LOG_VERBOSE, "old fragment: cur[%"PRId64"] min[%"PRId64"] max[%"PRId64"], playlist %d\n", (int64_t)pls->cur_seq_no, min_seq_no, max_seq_no, (int)pls->rep_idx);
1473             pls->cur_seq_no = calc_cur_seg_no(pls->parent, pls);
1474         } else if (pls->cur_seq_no > max_seq_no) {
1475             av_log(pls->parent, AV_LOG_VERBOSE, "new fragment: min[%"PRId64"] max[%"PRId64"], playlist %d\n", min_seq_no, max_seq_no, (int)pls->rep_idx);
1476         }
1477         seg = av_mallocz(sizeof(struct fragment));
1478         if (!seg) {
1479             return NULL;
1480         }
1481     } else if (pls->cur_seq_no <= pls->last_seq_no) {
1482         seg = av_mallocz(sizeof(struct fragment));
1483         if (!seg) {
1484             return NULL;
1485         }
1486     }
1487     if (seg) {
1488         char *tmpfilename= av_mallocz(c->max_url_size);
1489         if (!tmpfilename) {
1490             return NULL;
1491         }
1492         ff_dash_fill_tmpl_params(tmpfilename, c->max_url_size, pls->url_template, 0, pls->cur_seq_no, 0, get_segment_start_time_based_on_timeline(pls, pls->cur_seq_no));
1493         seg->url = av_strireplace(pls->url_template, pls->url_template, tmpfilename);
1494         if (!seg->url) {
1495             av_log(pls->parent, AV_LOG_WARNING, "Unable to resolve template url '%s', try to use origin template\n", pls->url_template);
1496             seg->url = av_strdup(pls->url_template);
1497             if (!seg->url) {
1498                 av_log(pls->parent, AV_LOG_ERROR, "Cannot resolve template url '%s'\n", pls->url_template);
1499                 av_free(tmpfilename);
1500                 return NULL;
1501             }
1502         }
1503         av_free(tmpfilename);
1504         seg->size = -1;
1505     }
1506
1507     return seg;
1508 }
1509
1510 enum ReadFromURLMode {
1511     READ_NORMAL,
1512     READ_COMPLETE,
1513 };
1514
1515 static int read_from_url(struct representation *pls, struct fragment *seg,
1516                          uint8_t *buf, int buf_size,
1517                          enum ReadFromURLMode mode)
1518 {
1519     int ret;
1520
1521     /* limit read if the fragment was only a part of a file */
1522     if (seg->size >= 0)
1523         buf_size = FFMIN(buf_size, pls->cur_seg_size - pls->cur_seg_offset);
1524
1525     if (mode == READ_COMPLETE) {
1526         ret = avio_read(pls->input, buf, buf_size);
1527         if (ret < buf_size) {
1528             av_log(pls->parent, AV_LOG_WARNING, "Could not read complete fragment.\n");
1529         }
1530     } else {
1531         ret = avio_read(pls->input, buf, buf_size);
1532     }
1533     if (ret > 0)
1534         pls->cur_seg_offset += ret;
1535
1536     return ret;
1537 }
1538
1539 static int open_input(DASHContext *c, struct representation *pls, struct fragment *seg)
1540 {
1541     AVDictionary *opts = NULL;
1542     char *url = NULL;
1543     int ret = 0;
1544
1545     url = av_mallocz(c->max_url_size);
1546     if (!url) {
1547         goto cleanup;
1548     }
1549     set_httpheader_options(c, &opts);
1550     if (seg->size >= 0) {
1551         /* try to restrict the HTTP request to the part we want
1552          * (if this is in fact a HTTP request) */
1553         av_dict_set_int(&opts, "offset", seg->url_offset, 0);
1554         av_dict_set_int(&opts, "end_offset", seg->url_offset + seg->size, 0);
1555     }
1556
1557     ff_make_absolute_url(url, c->max_url_size, c->base_url, seg->url);
1558     av_log(pls->parent, AV_LOG_VERBOSE, "DASH request for url '%s', offset %"PRId64", playlist %d\n",
1559            url, seg->url_offset, pls->rep_idx);
1560     ret = open_url(pls->parent, &pls->input, url, c->avio_opts, opts, NULL);
1561     if (ret < 0) {
1562         goto cleanup;
1563     }
1564
1565 cleanup:
1566     av_free(url);
1567     av_dict_free(&opts);
1568     pls->cur_seg_offset = 0;
1569     pls->cur_seg_size = seg->size;
1570     return ret;
1571 }
1572
1573 static int update_init_section(struct representation *pls)
1574 {
1575     static const int max_init_section_size = 1024 * 1024;
1576     DASHContext *c = pls->parent->priv_data;
1577     int64_t sec_size;
1578     int64_t urlsize;
1579     int ret;
1580
1581     if (!pls->init_section || pls->init_sec_buf)
1582         return 0;
1583
1584     ret = open_input(c, pls, pls->init_section);
1585     if (ret < 0) {
1586         av_log(pls->parent, AV_LOG_WARNING,
1587                "Failed to open an initialization section in playlist %d\n",
1588                pls->rep_idx);
1589         return ret;
1590     }
1591
1592     if (pls->init_section->size >= 0)
1593         sec_size = pls->init_section->size;
1594     else if ((urlsize = avio_size(pls->input)) >= 0)
1595         sec_size = urlsize;
1596     else
1597         sec_size = max_init_section_size;
1598
1599     av_log(pls->parent, AV_LOG_DEBUG,
1600            "Downloading an initialization section of size %"PRId64"\n",
1601            sec_size);
1602
1603     sec_size = FFMIN(sec_size, max_init_section_size);
1604
1605     av_fast_malloc(&pls->init_sec_buf, &pls->init_sec_buf_size, sec_size);
1606
1607     ret = read_from_url(pls, pls->init_section, pls->init_sec_buf,
1608                         pls->init_sec_buf_size, READ_COMPLETE);
1609     ff_format_io_close(pls->parent, &pls->input);
1610
1611     if (ret < 0)
1612         return ret;
1613
1614     pls->init_sec_data_len = ret;
1615     pls->init_sec_buf_read_offset = 0;
1616
1617     return 0;
1618 }
1619
1620 static int64_t seek_data(void *opaque, int64_t offset, int whence)
1621 {
1622     struct representation *v = opaque;
1623     if (v->n_fragments && !v->init_sec_data_len) {
1624         return avio_seek(v->input, offset, whence);
1625     }
1626
1627     return AVERROR(ENOSYS);
1628 }
1629
1630 static int read_data(void *opaque, uint8_t *buf, int buf_size)
1631 {
1632     int ret = 0;
1633     struct representation *v = opaque;
1634     DASHContext *c = v->parent->priv_data;
1635
1636 restart:
1637     if (!v->input) {
1638         free_fragment(&v->cur_seg);
1639         v->cur_seg = get_current_fragment(v);
1640         if (!v->cur_seg) {
1641             ret = AVERROR_EOF;
1642             goto end;
1643         }
1644
1645         /* load/update Media Initialization Section, if any */
1646         ret = update_init_section(v);
1647         if (ret)
1648             goto end;
1649
1650         ret = open_input(c, v, v->cur_seg);
1651         if (ret < 0) {
1652             if (ff_check_interrupt(c->interrupt_callback)) {
1653                 goto end;
1654                 ret = AVERROR_EXIT;
1655             }
1656             av_log(v->parent, AV_LOG_WARNING, "Failed to open fragment of playlist %d\n", v->rep_idx);
1657             v->cur_seq_no++;
1658             goto restart;
1659         }
1660     }
1661
1662     if (v->init_sec_buf_read_offset < v->init_sec_data_len) {
1663         /* Push init section out first before first actual fragment */
1664         int copy_size = FFMIN(v->init_sec_data_len - v->init_sec_buf_read_offset, buf_size);
1665         memcpy(buf, v->init_sec_buf, copy_size);
1666         v->init_sec_buf_read_offset += copy_size;
1667         ret = copy_size;
1668         goto end;
1669     }
1670
1671     /* check the v->cur_seg, if it is null, get current and double check if the new v->cur_seg*/
1672     if (!v->cur_seg) {
1673         v->cur_seg = get_current_fragment(v);
1674     }
1675     if (!v->cur_seg) {
1676         ret = AVERROR_EOF;
1677         goto end;
1678     }
1679     ret = read_from_url(v, v->cur_seg, buf, buf_size, READ_NORMAL);
1680     if (ret > 0)
1681         goto end;
1682
1683     if (c->is_live || v->cur_seq_no < v->last_seq_no) {
1684         if (!v->is_restart_needed)
1685             v->cur_seq_no++;
1686         v->is_restart_needed = 1;
1687     }
1688
1689 end:
1690     return ret;
1691 }
1692
1693 static int save_avio_options(AVFormatContext *s)
1694 {
1695     DASHContext *c = s->priv_data;
1696     const char *opts[] = { "headers", "user_agent", "user-agent", "cookies", NULL }, **opt = opts;
1697     uint8_t *buf = NULL;
1698     int ret = 0;
1699
1700     while (*opt) {
1701         if (av_opt_get(s->pb, *opt, AV_OPT_SEARCH_CHILDREN, &buf) >= 0) {
1702             if (buf[0] != '\0') {
1703                 ret = av_dict_set(&c->avio_opts, *opt, buf, AV_DICT_DONT_STRDUP_VAL);
1704                 if (ret < 0) {
1705                     av_freep(&buf);
1706                     return ret;
1707                 }
1708             } else {
1709                 av_freep(&buf);
1710             }
1711         }
1712         opt++;
1713     }
1714
1715     return ret;
1716 }
1717
1718 static int nested_io_open(AVFormatContext *s, AVIOContext **pb, const char *url,
1719                           int flags, AVDictionary **opts)
1720 {
1721     av_log(s, AV_LOG_ERROR,
1722            "A DASH playlist item '%s' referred to an external file '%s'. "
1723            "Opening this file was forbidden for security reasons\n",
1724            s->filename, url);
1725     return AVERROR(EPERM);
1726 }
1727
1728 static void close_demux_for_component(struct representation *pls)
1729 {
1730     /* note: the internal buffer could have changed */
1731     av_freep(&pls->pb.buffer);
1732     memset(&pls->pb, 0x00, sizeof(AVIOContext));
1733     pls->ctx->pb = NULL;
1734     avformat_close_input(&pls->ctx);
1735     pls->ctx = NULL;
1736 }
1737
1738 static int reopen_demux_for_component(AVFormatContext *s, struct representation *pls)
1739 {
1740     DASHContext *c = s->priv_data;
1741     AVInputFormat *in_fmt = NULL;
1742     AVDictionary  *in_fmt_opts = NULL;
1743     uint8_t *avio_ctx_buffer  = NULL;
1744     int ret = 0, i;
1745
1746     if (pls->ctx) {
1747         close_demux_for_component(pls);
1748     }
1749     if (!(pls->ctx = avformat_alloc_context())) {
1750         ret = AVERROR(ENOMEM);
1751         goto fail;
1752     }
1753
1754     avio_ctx_buffer  = av_malloc(INITIAL_BUFFER_SIZE);
1755     if (!avio_ctx_buffer ) {
1756         ret = AVERROR(ENOMEM);
1757         avformat_free_context(pls->ctx);
1758         pls->ctx = NULL;
1759         goto fail;
1760     }
1761     if (c->is_live) {
1762         ffio_init_context(&pls->pb, avio_ctx_buffer , INITIAL_BUFFER_SIZE, 0, pls, read_data, NULL, NULL);
1763     } else {
1764         ffio_init_context(&pls->pb, avio_ctx_buffer , INITIAL_BUFFER_SIZE, 0, pls, read_data, NULL, seek_data);
1765     }
1766     pls->pb.seekable = 0;
1767
1768     if ((ret = ff_copy_whiteblacklists(pls->ctx, s)) < 0)
1769         goto fail;
1770
1771     pls->ctx->flags = AVFMT_FLAG_CUSTOM_IO;
1772     pls->ctx->probesize = 1024 * 4;
1773     pls->ctx->max_analyze_duration = 4 * AV_TIME_BASE;
1774     ret = av_probe_input_buffer(&pls->pb, &in_fmt, "", NULL, 0, 0);
1775     if (ret < 0) {
1776         av_log(s, AV_LOG_ERROR, "Error when loading first fragment, playlist %d\n", (int)pls->rep_idx);
1777         avformat_free_context(pls->ctx);
1778         pls->ctx = NULL;
1779         goto fail;
1780     }
1781
1782     pls->ctx->pb = &pls->pb;
1783     pls->ctx->io_open  = nested_io_open;
1784
1785     // provide additional information from mpd if available
1786     ret = avformat_open_input(&pls->ctx, "", in_fmt, &in_fmt_opts); //pls->init_section->url
1787     av_dict_free(&in_fmt_opts);
1788     if (ret < 0)
1789         goto fail;
1790     if (pls->n_fragments) {
1791 #if FF_API_R_FRAME_RATE
1792         if (pls->framerate.den) {
1793             for (i = 0; i < pls->ctx->nb_streams; i++)
1794                 pls->ctx->streams[i]->r_frame_rate = pls->framerate;
1795         }
1796 #endif
1797
1798         ret = avformat_find_stream_info(pls->ctx, NULL);
1799         if (ret < 0)
1800             goto fail;
1801     }
1802
1803 fail:
1804     return ret;
1805 }
1806
1807 static int open_demux_for_component(AVFormatContext *s, struct representation *pls)
1808 {
1809     int ret = 0;
1810     int i;
1811
1812     pls->parent = s;
1813     pls->cur_seq_no  = calc_cur_seg_no(s, pls);
1814     pls->last_seq_no = calc_max_seg_no(pls, s->priv_data);
1815
1816     ret = reopen_demux_for_component(s, pls);
1817     if (ret < 0) {
1818         goto fail;
1819     }
1820     for (i = 0; i < pls->ctx->nb_streams; i++) {
1821         AVStream *st = avformat_new_stream(s, NULL);
1822         AVStream *ist = pls->ctx->streams[i];
1823         if (!st) {
1824             ret = AVERROR(ENOMEM);
1825             goto fail;
1826         }
1827         st->id = i;
1828         avcodec_parameters_copy(st->codecpar, pls->ctx->streams[i]->codecpar);
1829         avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
1830     }
1831
1832     return 0;
1833 fail:
1834     return ret;
1835 }
1836
1837 static int dash_read_header(AVFormatContext *s)
1838 {
1839     void *u = (s->flags & AVFMT_FLAG_CUSTOM_IO) ? NULL : s->pb;
1840     DASHContext *c = s->priv_data;
1841     int ret = 0;
1842     int stream_index = 0;
1843     int i;
1844
1845     c->interrupt_callback = &s->interrupt_callback;
1846     // if the URL context is good, read important options we must broker later
1847     if (u) {
1848         update_options(&c->user_agent, "user-agent", u);
1849         update_options(&c->cookies, "cookies", u);
1850         update_options(&c->headers, "headers", u);
1851     }
1852
1853     if ((ret = parse_manifest(s, s->filename, s->pb)) < 0)
1854         goto fail;
1855
1856     if ((ret = save_avio_options(s)) < 0)
1857         goto fail;
1858
1859     /* If this isn't a live stream, fill the total duration of the
1860      * stream. */
1861     if (!c->is_live) {
1862         s->duration = (int64_t) c->media_presentation_duration * AV_TIME_BASE;
1863     }
1864
1865     /* Open the demuxer for video and audio components if available */
1866     for (i = 0; i < c->n_videos; i++) {
1867         struct representation *cur_video = c->videos[i];
1868         ret = open_demux_for_component(s, cur_video);
1869         if (ret)
1870             goto fail;
1871         cur_video->stream_index = stream_index;
1872         ++stream_index;
1873     }
1874
1875     for (i = 0; i < c->n_audios; i++) {
1876         struct representation *cur_audio = c->audios[i];
1877         ret = open_demux_for_component(s, cur_audio);
1878         if (ret)
1879             goto fail;
1880         cur_audio->stream_index = stream_index;
1881         ++stream_index;
1882     }
1883
1884     if (!stream_index) {
1885         ret = AVERROR_INVALIDDATA;
1886         goto fail;
1887     }
1888
1889     /* Create a program */
1890     if (!ret) {
1891         AVProgram *program;
1892         program = av_new_program(s, 0);
1893         if (!program) {
1894             goto fail;
1895         }
1896
1897         for (i = 0; i < c->n_videos; i++) {
1898             struct representation *pls = c->videos[i];
1899
1900             av_program_add_stream_index(s, 0, pls->stream_index);
1901             pls->assoc_stream = s->streams[pls->stream_index];
1902             if (pls->bandwidth > 0)
1903                 av_dict_set_int(&pls->assoc_stream->metadata, "variant_bitrate", pls->bandwidth, 0);
1904             if (pls->id[0])
1905                 av_dict_set(&pls->assoc_stream->metadata, "id", pls->id, 0);
1906          }
1907         for (i = 0; i < c->n_audios; i++) {
1908             struct representation *pls = c->audios[i];
1909
1910             av_program_add_stream_index(s, 0, pls->stream_index);
1911             pls->assoc_stream = s->streams[pls->stream_index];
1912             if (pls->bandwidth > 0)
1913                 av_dict_set_int(&pls->assoc_stream->metadata, "variant_bitrate", pls->bandwidth, 0);
1914             if (pls->id[0])
1915                 av_dict_set(&pls->assoc_stream->metadata, "id", pls->id, 0);
1916         }
1917     }
1918
1919     return 0;
1920 fail:
1921     return ret;
1922 }
1923
1924 static void recheck_discard_flags(AVFormatContext *s, struct representation **p, int n)
1925 {
1926     int i, j;
1927
1928     for (i = 0; i < n; i++) {
1929         struct representation *pls = p[i];
1930
1931         int needed = !pls->assoc_stream || pls->assoc_stream->discard < AVDISCARD_ALL;
1932         if (needed && !pls->ctx) {
1933             pls->cur_seg_offset = 0;
1934             pls->init_sec_buf_read_offset = 0;
1935             /* Catch up */
1936             for (j = 0; j < n; j++) {
1937                 pls->cur_seq_no = FFMAX(pls->cur_seq_no, p[j]->cur_seq_no);
1938             }
1939             reopen_demux_for_component(s, pls);
1940             av_log(s, AV_LOG_INFO, "Now receiving stream_index %d\n", pls->stream_index);
1941         } else if (!needed && pls->ctx) {
1942             close_demux_for_component(pls);
1943             if (pls->input)
1944                 ff_format_io_close(pls->parent, &pls->input);
1945             av_log(s, AV_LOG_INFO, "No longer receiving stream_index %d\n", pls->stream_index);
1946         }
1947     }
1948 }
1949
1950 static int dash_read_packet(AVFormatContext *s, AVPacket *pkt)
1951 {
1952     DASHContext *c = s->priv_data;
1953     int ret = 0, i;
1954     int64_t mints = 0;
1955     struct representation *cur = NULL;
1956
1957     recheck_discard_flags(s, c->videos, c->n_videos);
1958     recheck_discard_flags(s, c->audios, c->n_audios);
1959
1960     for (i = 0; i < c->n_videos; i++) {
1961         struct representation *pls = c->videos[i];
1962         if (!pls->ctx)
1963             continue;
1964         if (!cur || pls->cur_timestamp < mints) {
1965             cur = pls;
1966             mints = pls->cur_timestamp;
1967         }
1968     }
1969     for (i = 0; i < c->n_audios; i++) {
1970         struct representation *pls = c->audios[i];
1971         if (!pls->ctx)
1972             continue;
1973         if (!cur || pls->cur_timestamp < mints) {
1974             cur = pls;
1975             mints = pls->cur_timestamp;
1976         }
1977     }
1978
1979     if (!cur) {
1980         return AVERROR_INVALIDDATA;
1981     }
1982     while (!ff_check_interrupt(c->interrupt_callback) && !ret) {
1983         ret = av_read_frame(cur->ctx, pkt);
1984         if (ret >= 0) {
1985             /* If we got a packet, return it */
1986             cur->cur_timestamp = av_rescale(pkt->pts, (int64_t)cur->ctx->streams[0]->time_base.num * 90000, cur->ctx->streams[0]->time_base.den);
1987             pkt->stream_index = cur->stream_index;
1988             return 0;
1989         }
1990         if (cur->is_restart_needed) {
1991             cur->cur_seg_offset = 0;
1992             cur->init_sec_buf_read_offset = 0;
1993             if (cur->input)
1994                 ff_format_io_close(cur->parent, &cur->input);
1995             ret = reopen_demux_for_component(s, cur);
1996             cur->is_restart_needed = 0;
1997         }
1998     }
1999     return AVERROR_EOF;
2000 }
2001
2002 static int dash_close(AVFormatContext *s)
2003 {
2004     DASHContext *c = s->priv_data;
2005     free_audio_list(c);
2006     free_video_list(c);
2007
2008     av_freep(&c->cookies);
2009     av_freep(&c->user_agent);
2010     av_dict_free(&c->avio_opts);
2011     av_freep(&c->base_url);
2012     return 0;
2013 }
2014
2015 static int dash_seek(AVFormatContext *s, struct representation *pls, int64_t seek_pos_msec, int flags, int dry_run)
2016 {
2017     int ret = 0;
2018     int i = 0;
2019     int j = 0;
2020     int64_t duration = 0;
2021
2022     av_log(pls->parent, AV_LOG_VERBOSE, "DASH seek pos[%"PRId64"ms], playlist %d%s\n",
2023             seek_pos_msec, pls->rep_idx, dry_run ? " (dry)" : "");
2024
2025     // single fragment mode
2026     if (pls->n_fragments == 1) {
2027         pls->cur_timestamp = 0;
2028         pls->cur_seg_offset = 0;
2029         if (dry_run)
2030             return 0;
2031         ff_read_frame_flush(pls->ctx);
2032         return av_seek_frame(pls->ctx, -1, seek_pos_msec * 1000, flags);
2033     }
2034
2035     if (pls->input)
2036         ff_format_io_close(pls->parent, &pls->input);
2037
2038     // find the nearest fragment
2039     if (pls->n_timelines > 0 && pls->fragment_timescale > 0) {
2040         int64_t num = pls->first_seq_no;
2041         av_log(pls->parent, AV_LOG_VERBOSE, "dash_seek with SegmentTimeline start n_timelines[%d] "
2042                "last_seq_no[%"PRId64"], playlist %d.\n",
2043                (int)pls->n_timelines, (int64_t)pls->last_seq_no, (int)pls->rep_idx);
2044         for (i = 0; i < pls->n_timelines; i++) {
2045             if (pls->timelines[i]->starttime > 0) {
2046                 duration = pls->timelines[i]->starttime;
2047             }
2048             duration += pls->timelines[i]->duration;
2049             if (seek_pos_msec < ((duration * 1000) /  pls->fragment_timescale)) {
2050                 goto set_seq_num;
2051             }
2052             for (j = 0; j < pls->timelines[i]->repeat; j++) {
2053                 duration += pls->timelines[i]->duration;
2054                 num++;
2055                 if (seek_pos_msec < ((duration * 1000) /  pls->fragment_timescale)) {
2056                     goto set_seq_num;
2057                 }
2058             }
2059             num++;
2060         }
2061
2062 set_seq_num:
2063         pls->cur_seq_no = num > pls->last_seq_no ? pls->last_seq_no : num;
2064         av_log(pls->parent, AV_LOG_VERBOSE, "dash_seek with SegmentTimeline end cur_seq_no[%"PRId64"], playlist %d.\n",
2065                (int64_t)pls->cur_seq_no, (int)pls->rep_idx);
2066     } else if (pls->fragment_duration > 0) {
2067         pls->cur_seq_no = pls->first_seq_no + ((seek_pos_msec * pls->fragment_timescale) / pls->fragment_duration) / 1000;
2068     } else {
2069         av_log(pls->parent, AV_LOG_ERROR, "dash_seek missing timeline or fragment_duration\n");
2070         pls->cur_seq_no = pls->first_seq_no;
2071     }
2072     pls->cur_timestamp = 0;
2073     pls->cur_seg_offset = 0;
2074     pls->init_sec_buf_read_offset = 0;
2075     ret = dry_run ? 0 : reopen_demux_for_component(s, pls);
2076
2077     return ret;
2078 }
2079
2080 static int dash_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
2081 {
2082     int ret = 0, i;
2083     DASHContext *c = s->priv_data;
2084     int64_t seek_pos_msec = av_rescale_rnd(timestamp, 1000,
2085                                            s->streams[stream_index]->time_base.den,
2086                                            flags & AVSEEK_FLAG_BACKWARD ?
2087                                            AV_ROUND_DOWN : AV_ROUND_UP);
2088     if ((flags & AVSEEK_FLAG_BYTE) || c->is_live)
2089         return AVERROR(ENOSYS);
2090
2091     /* Seek in discarded streams with dry_run=1 to avoid reopening them */
2092     for (i = 0; i < c->n_videos; i++) {
2093         if (!ret)
2094             ret = dash_seek(s, c->videos[i], seek_pos_msec, flags, !c->videos[i]->ctx);
2095     }
2096     for (i = 0; i < c->n_audios; i++) {
2097         if (!ret)
2098             ret = dash_seek(s, c->audios[i], seek_pos_msec, flags, !c->audios[i]->ctx);
2099     }
2100
2101     return ret;
2102 }
2103
2104 static int dash_probe(AVProbeData *p)
2105 {
2106     if (!av_stristr(p->buf, "<MPD"))
2107         return 0;
2108
2109     if (av_stristr(p->buf, "dash:profile:isoff-on-demand:2011") ||
2110         av_stristr(p->buf, "dash:profile:isoff-live:2011") ||
2111         av_stristr(p->buf, "dash:profile:isoff-live:2012") ||
2112         av_stristr(p->buf, "dash:profile:isoff-main:2011")) {
2113         return AVPROBE_SCORE_MAX;
2114     }
2115     if (av_stristr(p->buf, "dash:profile")) {
2116         return AVPROBE_SCORE_MAX;
2117     }
2118
2119     return 0;
2120 }
2121
2122 #define OFFSET(x) offsetof(DASHContext, x)
2123 #define FLAGS AV_OPT_FLAG_DECODING_PARAM
2124 static const AVOption dash_options[] = {
2125     {"allowed_extensions", "List of file extensions that dash is allowed to access",
2126         OFFSET(allowed_extensions), AV_OPT_TYPE_STRING,
2127         {.str = "aac,m4a,m4s,m4v,mov,mp4"},
2128         INT_MIN, INT_MAX, FLAGS},
2129     {NULL}
2130 };
2131
2132 static const AVClass dash_class = {
2133     .class_name = "dash",
2134     .item_name  = av_default_item_name,
2135     .option     = dash_options,
2136     .version    = LIBAVUTIL_VERSION_INT,
2137 };
2138
2139 AVInputFormat ff_dash_demuxer = {
2140     .name           = "dash",
2141     .long_name      = NULL_IF_CONFIG_SMALL("Dynamic Adaptive Streaming over HTTP"),
2142     .priv_class     = &dash_class,
2143     .priv_data_size = sizeof(DASHContext),
2144     .read_probe     = dash_probe,
2145     .read_header    = dash_read_header,
2146     .read_packet    = dash_read_packet,
2147     .read_close     = dash_close,
2148     .read_seek      = dash_read_seek,
2149     .flags          = AVFMT_NO_BYTE_SEEK,
2150 };