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