]> git.sesse.net Git - ffmpeg/blob - libavformat/hls.c
libavformat/hls: Reset options after open_url_keepalive() fails
[ffmpeg] / libavformat / hls.c
1 /*
2  * Apple HTTP Live Streaming demuxer
3  * Copyright (c) 2010 Martin Storsjo
4  * Copyright (c) 2013 Anssi Hannula
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
23 /**
24  * @file
25  * Apple HTTP Live Streaming demuxer
26  * https://www.rfc-editor.org/rfc/rfc8216.txt
27  */
28
29 #include "libavformat/http.h"
30 #include "libavutil/avstring.h"
31 #include "libavutil/avassert.h"
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/mathematics.h"
34 #include "libavutil/opt.h"
35 #include "libavutil/dict.h"
36 #include "libavutil/time.h"
37 #include "avformat.h"
38 #include "internal.h"
39 #include "avio_internal.h"
40 #include "id3v2.h"
41
42 #define INITIAL_BUFFER_SIZE 32768
43
44 #define MAX_FIELD_LEN 64
45 #define MAX_CHARACTERISTICS_LEN 512
46
47 #define MPEG_TIME_BASE 90000
48 #define MPEG_TIME_BASE_Q (AVRational){1, MPEG_TIME_BASE}
49
50 /*
51  * An apple http stream consists of a playlist with media segment files,
52  * played sequentially. There may be several playlists with the same
53  * video content, in different bandwidth variants, that are played in
54  * parallel (preferably only one bandwidth variant at a time). In this case,
55  * the user supplied the url to a main playlist that only lists the variant
56  * playlists.
57  *
58  * If the main playlist doesn't point at any variants, we still create
59  * one anonymous toplevel variant for this, to maintain the structure.
60  */
61
62 enum KeyType {
63     KEY_NONE,
64     KEY_AES_128,
65     KEY_SAMPLE_AES
66 };
67
68 struct segment {
69     int64_t duration;
70     int64_t url_offset;
71     int64_t size;
72     char *url;
73     char *key;
74     enum KeyType key_type;
75     uint8_t iv[16];
76     /* associated Media Initialization Section, treated as a segment */
77     struct segment *init_section;
78 };
79
80 struct rendition;
81
82 enum PlaylistType {
83     PLS_TYPE_UNSPECIFIED,
84     PLS_TYPE_EVENT,
85     PLS_TYPE_VOD
86 };
87
88 /*
89  * Each playlist has its own demuxer. If it currently is active,
90  * it has an open AVIOContext too, and potentially an AVPacket
91  * containing the next packet from this stream.
92  */
93 struct playlist {
94     char url[MAX_URL_SIZE];
95     AVIOContext pb;
96     uint8_t* read_buffer;
97     AVIOContext *input;
98     int input_read_done;
99     AVIOContext *input_next;
100     int input_next_requested;
101     AVFormatContext *parent;
102     int index;
103     AVFormatContext *ctx;
104     AVPacket pkt;
105     int has_noheader_flag;
106
107     /* main demuxer streams associated with this playlist
108      * indexed by the subdemuxer stream indexes */
109     AVStream **main_streams;
110     int n_main_streams;
111
112     int finished;
113     enum PlaylistType type;
114     int64_t target_duration;
115     int64_t start_seq_no;
116     int n_segments;
117     struct segment **segments;
118     int needed;
119     int broken;
120     int64_t cur_seq_no;
121     int64_t last_seq_no;
122     int m3u8_hold_counters;
123     int64_t cur_seg_offset;
124     int64_t last_load_time;
125
126     /* Currently active Media Initialization Section */
127     struct segment *cur_init_section;
128     uint8_t *init_sec_buf;
129     unsigned int init_sec_buf_size;
130     unsigned int init_sec_data_len;
131     unsigned int init_sec_buf_read_offset;
132
133     char key_url[MAX_URL_SIZE];
134     uint8_t key[16];
135
136     /* ID3 timestamp handling (elementary audio streams have ID3 timestamps
137      * (and possibly other ID3 tags) in the beginning of each segment) */
138     int is_id3_timestamped; /* -1: not yet known */
139     int64_t id3_mpegts_timestamp; /* in mpegts tb */
140     int64_t id3_offset; /* in stream original tb */
141     uint8_t* id3_buf; /* temp buffer for id3 parsing */
142     unsigned int id3_buf_size;
143     AVDictionary *id3_initial; /* data from first id3 tag */
144     int id3_found; /* ID3 tag found at some point */
145     int id3_changed; /* ID3 tag data has changed at some point */
146     ID3v2ExtraMeta *id3_deferred_extra; /* stored here until subdemuxer is opened */
147
148     int64_t seek_timestamp;
149     int seek_flags;
150     int seek_stream_index; /* into subdemuxer stream array */
151
152     /* Renditions associated with this playlist, if any.
153      * Alternative rendition playlists have a single rendition associated
154      * with them, and variant main Media Playlists may have
155      * multiple (playlist-less) renditions associated with them. */
156     int n_renditions;
157     struct rendition **renditions;
158
159     /* Media Initialization Sections (EXT-X-MAP) associated with this
160      * playlist, if any. */
161     int n_init_sections;
162     struct segment **init_sections;
163 };
164
165 /*
166  * Renditions are e.g. alternative subtitle or audio streams.
167  * The rendition may either be an external playlist or it may be
168  * contained in the main Media Playlist of the variant (in which case
169  * playlist is NULL).
170  */
171 struct rendition {
172     enum AVMediaType type;
173     struct playlist *playlist;
174     char group_id[MAX_FIELD_LEN];
175     char language[MAX_FIELD_LEN];
176     char name[MAX_FIELD_LEN];
177     int disposition;
178 };
179
180 struct variant {
181     int bandwidth;
182
183     /* every variant contains at least the main Media Playlist in index 0 */
184     int n_playlists;
185     struct playlist **playlists;
186
187     char audio_group[MAX_FIELD_LEN];
188     char video_group[MAX_FIELD_LEN];
189     char subtitles_group[MAX_FIELD_LEN];
190 };
191
192 typedef struct HLSContext {
193     AVClass *class;
194     AVFormatContext *ctx;
195     int n_variants;
196     struct variant **variants;
197     int n_playlists;
198     struct playlist **playlists;
199     int n_renditions;
200     struct rendition **renditions;
201
202     int64_t cur_seq_no;
203     int m3u8_hold_counters;
204     int live_start_index;
205     int first_packet;
206     int64_t first_timestamp;
207     int64_t cur_timestamp;
208     AVIOInterruptCB *interrupt_callback;
209     AVDictionary *avio_opts;
210     char *allowed_extensions;
211     int max_reload;
212     int http_persistent;
213     int http_multiple;
214     int http_seekable;
215     AVIOContext *playlist_pb;
216 } HLSContext;
217
218 static void free_segment_dynarray(struct segment **segments, int n_segments)
219 {
220     int i;
221     for (i = 0; i < n_segments; i++) {
222         av_freep(&segments[i]->key);
223         av_freep(&segments[i]->url);
224         av_freep(&segments[i]);
225     }
226 }
227
228 static void free_segment_list(struct playlist *pls)
229 {
230     free_segment_dynarray(pls->segments, pls->n_segments);
231     av_freep(&pls->segments);
232     pls->n_segments = 0;
233 }
234
235 static void free_init_section_list(struct playlist *pls)
236 {
237     int i;
238     for (i = 0; i < pls->n_init_sections; i++) {
239         av_freep(&pls->init_sections[i]->url);
240         av_freep(&pls->init_sections[i]);
241     }
242     av_freep(&pls->init_sections);
243     pls->n_init_sections = 0;
244 }
245
246 static void free_playlist_list(HLSContext *c)
247 {
248     int i;
249     for (i = 0; i < c->n_playlists; i++) {
250         struct playlist *pls = c->playlists[i];
251         free_segment_list(pls);
252         free_init_section_list(pls);
253         av_freep(&pls->main_streams);
254         av_freep(&pls->renditions);
255         av_freep(&pls->id3_buf);
256         av_dict_free(&pls->id3_initial);
257         ff_id3v2_free_extra_meta(&pls->id3_deferred_extra);
258         av_freep(&pls->init_sec_buf);
259         av_packet_unref(&pls->pkt);
260         av_freep(&pls->pb.buffer);
261         ff_format_io_close(c->ctx, &pls->input);
262         pls->input_read_done = 0;
263         ff_format_io_close(c->ctx, &pls->input_next);
264         pls->input_next_requested = 0;
265         if (pls->ctx) {
266             pls->ctx->pb = NULL;
267             avformat_close_input(&pls->ctx);
268         }
269         av_free(pls);
270     }
271     av_freep(&c->playlists);
272     c->n_playlists = 0;
273 }
274
275 static void free_variant_list(HLSContext *c)
276 {
277     int i;
278     for (i = 0; i < c->n_variants; i++) {
279         struct variant *var = c->variants[i];
280         av_freep(&var->playlists);
281         av_free(var);
282     }
283     av_freep(&c->variants);
284     c->n_variants = 0;
285 }
286
287 static void free_rendition_list(HLSContext *c)
288 {
289     int i;
290     for (i = 0; i < c->n_renditions; i++)
291         av_freep(&c->renditions[i]);
292     av_freep(&c->renditions);
293     c->n_renditions = 0;
294 }
295
296 static struct playlist *new_playlist(HLSContext *c, const char *url,
297                                      const char *base)
298 {
299     struct playlist *pls = av_mallocz(sizeof(struct playlist));
300     if (!pls)
301         return NULL;
302     ff_make_absolute_url(pls->url, sizeof(pls->url), base, url);
303     if (!pls->url[0]) {
304         av_free(pls);
305         return NULL;
306     }
307     av_init_packet(&pls->pkt);
308     pls->seek_timestamp = AV_NOPTS_VALUE;
309
310     pls->is_id3_timestamped = -1;
311     pls->id3_mpegts_timestamp = AV_NOPTS_VALUE;
312
313     dynarray_add(&c->playlists, &c->n_playlists, pls);
314     return pls;
315 }
316
317 struct variant_info {
318     char bandwidth[20];
319     /* variant group ids: */
320     char audio[MAX_FIELD_LEN];
321     char video[MAX_FIELD_LEN];
322     char subtitles[MAX_FIELD_LEN];
323 };
324
325 static struct variant *new_variant(HLSContext *c, struct variant_info *info,
326                                    const char *url, const char *base)
327 {
328     struct variant *var;
329     struct playlist *pls;
330
331     pls = new_playlist(c, url, base);
332     if (!pls)
333         return NULL;
334
335     var = av_mallocz(sizeof(struct variant));
336     if (!var)
337         return NULL;
338
339     if (info) {
340         var->bandwidth = atoi(info->bandwidth);
341         strcpy(var->audio_group, info->audio);
342         strcpy(var->video_group, info->video);
343         strcpy(var->subtitles_group, info->subtitles);
344     }
345
346     dynarray_add(&c->variants, &c->n_variants, var);
347     dynarray_add(&var->playlists, &var->n_playlists, pls);
348     return var;
349 }
350
351 static void handle_variant_args(struct variant_info *info, const char *key,
352                                 int key_len, char **dest, int *dest_len)
353 {
354     if (!strncmp(key, "BANDWIDTH=", key_len)) {
355         *dest     =        info->bandwidth;
356         *dest_len = sizeof(info->bandwidth);
357     } else if (!strncmp(key, "AUDIO=", key_len)) {
358         *dest     =        info->audio;
359         *dest_len = sizeof(info->audio);
360     } else if (!strncmp(key, "VIDEO=", key_len)) {
361         *dest     =        info->video;
362         *dest_len = sizeof(info->video);
363     } else if (!strncmp(key, "SUBTITLES=", key_len)) {
364         *dest     =        info->subtitles;
365         *dest_len = sizeof(info->subtitles);
366     }
367 }
368
369 struct key_info {
370      char uri[MAX_URL_SIZE];
371      char method[11];
372      char iv[35];
373 };
374
375 static void handle_key_args(struct key_info *info, const char *key,
376                             int key_len, char **dest, int *dest_len)
377 {
378     if (!strncmp(key, "METHOD=", key_len)) {
379         *dest     =        info->method;
380         *dest_len = sizeof(info->method);
381     } else if (!strncmp(key, "URI=", key_len)) {
382         *dest     =        info->uri;
383         *dest_len = sizeof(info->uri);
384     } else if (!strncmp(key, "IV=", key_len)) {
385         *dest     =        info->iv;
386         *dest_len = sizeof(info->iv);
387     }
388 }
389
390 struct init_section_info {
391     char uri[MAX_URL_SIZE];
392     char byterange[32];
393 };
394
395 static struct segment *new_init_section(struct playlist *pls,
396                                         struct init_section_info *info,
397                                         const char *url_base)
398 {
399     struct segment *sec;
400     char tmp_str[MAX_URL_SIZE], *ptr = tmp_str;
401
402     if (!info->uri[0])
403         return NULL;
404
405     sec = av_mallocz(sizeof(*sec));
406     if (!sec)
407         return NULL;
408
409     if (!av_strncasecmp(info->uri, "data:", 5)) {
410         ptr = info->uri;
411     } else {
412         ff_make_absolute_url(tmp_str, sizeof(tmp_str), url_base, info->uri);
413         if (!tmp_str[0]) {
414             av_free(sec);
415             return NULL;
416         }
417     }
418     sec->url = av_strdup(ptr);
419     if (!sec->url) {
420         av_free(sec);
421         return NULL;
422     }
423
424     if (info->byterange[0]) {
425         sec->size = strtoll(info->byterange, NULL, 10);
426         ptr = strchr(info->byterange, '@');
427         if (ptr)
428             sec->url_offset = strtoll(ptr+1, NULL, 10);
429     } else {
430         /* the entire file is the init section */
431         sec->size = -1;
432     }
433
434     dynarray_add(&pls->init_sections, &pls->n_init_sections, sec);
435
436     return sec;
437 }
438
439 static void handle_init_section_args(struct init_section_info *info, const char *key,
440                                            int key_len, char **dest, int *dest_len)
441 {
442     if (!strncmp(key, "URI=", key_len)) {
443         *dest     =        info->uri;
444         *dest_len = sizeof(info->uri);
445     } else if (!strncmp(key, "BYTERANGE=", key_len)) {
446         *dest     =        info->byterange;
447         *dest_len = sizeof(info->byterange);
448     }
449 }
450
451 struct rendition_info {
452     char type[16];
453     char uri[MAX_URL_SIZE];
454     char group_id[MAX_FIELD_LEN];
455     char language[MAX_FIELD_LEN];
456     char assoc_language[MAX_FIELD_LEN];
457     char name[MAX_FIELD_LEN];
458     char defaultr[4];
459     char forced[4];
460     char characteristics[MAX_CHARACTERISTICS_LEN];
461 };
462
463 static struct rendition *new_rendition(HLSContext *c, struct rendition_info *info,
464                                       const char *url_base)
465 {
466     struct rendition *rend;
467     enum AVMediaType type = AVMEDIA_TYPE_UNKNOWN;
468     char *characteristic;
469     char *chr_ptr;
470     char *saveptr;
471
472     if (!strcmp(info->type, "AUDIO"))
473         type = AVMEDIA_TYPE_AUDIO;
474     else if (!strcmp(info->type, "VIDEO"))
475         type = AVMEDIA_TYPE_VIDEO;
476     else if (!strcmp(info->type, "SUBTITLES"))
477         type = AVMEDIA_TYPE_SUBTITLE;
478     else if (!strcmp(info->type, "CLOSED-CAPTIONS"))
479         /* CLOSED-CAPTIONS is ignored since we do not support CEA-608 CC in
480          * AVC SEI RBSP anyway */
481         return NULL;
482
483     if (type == AVMEDIA_TYPE_UNKNOWN) {
484         av_log(c->ctx, AV_LOG_WARNING, "Can't support the type: %s\n", info->type);
485         return NULL;
486     }
487
488     /* URI is mandatory for subtitles as per spec */
489     if (type == AVMEDIA_TYPE_SUBTITLE && !info->uri[0]) {
490         av_log(c->ctx, AV_LOG_ERROR, "The URI tag is REQUIRED for subtitle.\n");
491         return NULL;
492     }
493
494     /* TODO: handle subtitles (each segment has to parsed separately) */
495     if (c->ctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL)
496         if (type == AVMEDIA_TYPE_SUBTITLE) {
497             av_log(c->ctx, AV_LOG_WARNING, "Can't support the subtitle(uri: %s)\n", info->uri);
498             return NULL;
499         }
500
501     rend = av_mallocz(sizeof(struct rendition));
502     if (!rend)
503         return NULL;
504
505     dynarray_add(&c->renditions, &c->n_renditions, rend);
506
507     rend->type = type;
508     strcpy(rend->group_id, info->group_id);
509     strcpy(rend->language, info->language);
510     strcpy(rend->name, info->name);
511
512     /* add the playlist if this is an external rendition */
513     if (info->uri[0]) {
514         rend->playlist = new_playlist(c, info->uri, url_base);
515         if (rend->playlist)
516             dynarray_add(&rend->playlist->renditions,
517                          &rend->playlist->n_renditions, rend);
518     }
519
520     if (info->assoc_language[0]) {
521         int langlen = strlen(rend->language);
522         if (langlen < sizeof(rend->language) - 3) {
523             rend->language[langlen] = ',';
524             strncpy(rend->language + langlen + 1, info->assoc_language,
525                     sizeof(rend->language) - langlen - 2);
526         }
527     }
528
529     if (!strcmp(info->defaultr, "YES"))
530         rend->disposition |= AV_DISPOSITION_DEFAULT;
531     if (!strcmp(info->forced, "YES"))
532         rend->disposition |= AV_DISPOSITION_FORCED;
533
534     chr_ptr = info->characteristics;
535     while ((characteristic = av_strtok(chr_ptr, ",", &saveptr))) {
536         if (!strcmp(characteristic, "public.accessibility.describes-music-and-sound"))
537             rend->disposition |= AV_DISPOSITION_HEARING_IMPAIRED;
538         else if (!strcmp(characteristic, "public.accessibility.describes-video"))
539             rend->disposition |= AV_DISPOSITION_VISUAL_IMPAIRED;
540
541         chr_ptr = NULL;
542     }
543
544     return rend;
545 }
546
547 static void handle_rendition_args(struct rendition_info *info, const char *key,
548                                   int key_len, char **dest, int *dest_len)
549 {
550     if (!strncmp(key, "TYPE=", key_len)) {
551         *dest     =        info->type;
552         *dest_len = sizeof(info->type);
553     } else if (!strncmp(key, "URI=", key_len)) {
554         *dest     =        info->uri;
555         *dest_len = sizeof(info->uri);
556     } else if (!strncmp(key, "GROUP-ID=", key_len)) {
557         *dest     =        info->group_id;
558         *dest_len = sizeof(info->group_id);
559     } else if (!strncmp(key, "LANGUAGE=", key_len)) {
560         *dest     =        info->language;
561         *dest_len = sizeof(info->language);
562     } else if (!strncmp(key, "ASSOC-LANGUAGE=", key_len)) {
563         *dest     =        info->assoc_language;
564         *dest_len = sizeof(info->assoc_language);
565     } else if (!strncmp(key, "NAME=", key_len)) {
566         *dest     =        info->name;
567         *dest_len = sizeof(info->name);
568     } else if (!strncmp(key, "DEFAULT=", key_len)) {
569         *dest     =        info->defaultr;
570         *dest_len = sizeof(info->defaultr);
571     } else if (!strncmp(key, "FORCED=", key_len)) {
572         *dest     =        info->forced;
573         *dest_len = sizeof(info->forced);
574     } else if (!strncmp(key, "CHARACTERISTICS=", key_len)) {
575         *dest     =        info->characteristics;
576         *dest_len = sizeof(info->characteristics);
577     }
578     /*
579      * ignored:
580      * - AUTOSELECT: client may autoselect based on e.g. system language
581      * - INSTREAM-ID: EIA-608 closed caption number ("CC1".."CC4")
582      */
583 }
584
585 /* used by parse_playlist to allocate a new variant+playlist when the
586  * playlist is detected to be a Media Playlist (not Master Playlist)
587  * and we have no parent Master Playlist (parsing of which would have
588  * allocated the variant and playlist already)
589  * *pls == NULL  => Master Playlist or parentless Media Playlist
590  * *pls != NULL => parented Media Playlist, playlist+variant allocated */
591 static int ensure_playlist(HLSContext *c, struct playlist **pls, const char *url)
592 {
593     if (*pls)
594         return 0;
595     if (!new_variant(c, NULL, url, NULL))
596         return AVERROR(ENOMEM);
597     *pls = c->playlists[c->n_playlists - 1];
598     return 0;
599 }
600
601 static int open_url_keepalive(AVFormatContext *s, AVIOContext **pb,
602                               const char *url, AVDictionary **options)
603 {
604 #if !CONFIG_HTTP_PROTOCOL
605     return AVERROR_PROTOCOL_NOT_FOUND;
606 #else
607     int ret;
608     URLContext *uc = ffio_geturlcontext(*pb);
609     av_assert0(uc);
610     (*pb)->eof_reached = 0;
611     ret = ff_http_do_new_request2(uc, url, options);
612     if (ret < 0) {
613         ff_format_io_close(s, pb);
614     }
615     return ret;
616 #endif
617 }
618
619 static int open_url(AVFormatContext *s, AVIOContext **pb, const char *url,
620                     AVDictionary **opts, AVDictionary *opts2, int *is_http_out)
621 {
622     HLSContext *c = s->priv_data;
623     AVDictionary *tmp = NULL;
624     const char *proto_name = NULL;
625     int ret;
626     int is_http = 0;
627
628     if (av_strstart(url, "crypto", NULL)) {
629         if (url[6] == '+' || url[6] == ':')
630             proto_name = avio_find_protocol_name(url + 7);
631     } else if (av_strstart(url, "data", NULL)) {
632         if (url[4] == '+' || url[4] == ':')
633             proto_name = avio_find_protocol_name(url + 5);
634     }
635
636     if (!proto_name)
637         proto_name = avio_find_protocol_name(url);
638
639     if (!proto_name)
640         return AVERROR_INVALIDDATA;
641
642     // only http(s) & file are allowed
643     if (av_strstart(proto_name, "file", NULL)) {
644         if (strcmp(c->allowed_extensions, "ALL") && !av_match_ext(url, c->allowed_extensions)) {
645             av_log(s, AV_LOG_ERROR,
646                 "Filename extension of \'%s\' is not a common multimedia extension, blocked for security reasons.\n"
647                 "If you wish to override this adjust allowed_extensions, you can set it to \'ALL\' to allow all\n",
648                 url);
649             return AVERROR_INVALIDDATA;
650         }
651     } else if (av_strstart(proto_name, "http", NULL)) {
652         is_http = 1;
653     } else if (av_strstart(proto_name, "data", NULL)) {
654         ;
655     } else
656         return AVERROR_INVALIDDATA;
657
658     if (!strncmp(proto_name, url, strlen(proto_name)) && url[strlen(proto_name)] == ':')
659         ;
660     else if (av_strstart(url, "crypto", NULL) && !strncmp(proto_name, url + 7, strlen(proto_name)) && url[7 + strlen(proto_name)] == ':')
661         ;
662     else if (av_strstart(url, "data", NULL) && !strncmp(proto_name, url + 5, strlen(proto_name)) && url[5 + strlen(proto_name)] == ':')
663         ;
664     else if (strcmp(proto_name, "file") || !strncmp(url, "file,", 5))
665         return AVERROR_INVALIDDATA;
666
667     av_dict_copy(&tmp, *opts, 0);
668     av_dict_copy(&tmp, opts2, 0);
669
670     if (is_http && c->http_persistent && *pb) {
671         ret = open_url_keepalive(c->ctx, pb, url, &tmp);
672         if (ret == AVERROR_EXIT) {
673             av_dict_free(&tmp);
674             return ret;
675         } else if (ret < 0) {
676             if (ret != AVERROR_EOF)
677                 av_log(s, AV_LOG_WARNING,
678                     "keepalive request failed for '%s' with error: '%s' when opening url, retrying with new connection\n",
679                     url, av_err2str(ret));
680             av_dict_copy(&tmp, *opts, 0);
681             av_dict_copy(&tmp, opts2, 0);
682             ret = s->io_open(s, pb, url, AVIO_FLAG_READ, &tmp);
683         }
684     } else {
685         ret = s->io_open(s, pb, url, AVIO_FLAG_READ, &tmp);
686     }
687     if (ret >= 0) {
688         // update cookies on http response with setcookies.
689         char *new_cookies = NULL;
690
691         if (!(s->flags & AVFMT_FLAG_CUSTOM_IO))
692             av_opt_get(*pb, "cookies", AV_OPT_SEARCH_CHILDREN, (uint8_t**)&new_cookies);
693
694         if (new_cookies)
695             av_dict_set(opts, "cookies", new_cookies, AV_DICT_DONT_STRDUP_VAL);
696     }
697
698     av_dict_free(&tmp);
699
700     if (is_http_out)
701         *is_http_out = is_http;
702
703     return ret;
704 }
705
706 static int parse_playlist(HLSContext *c, const char *url,
707                           struct playlist *pls, AVIOContext *in)
708 {
709     int ret = 0, is_segment = 0, is_variant = 0;
710     int64_t duration = 0;
711     enum KeyType key_type = KEY_NONE;
712     uint8_t iv[16] = "";
713     int has_iv = 0;
714     char key[MAX_URL_SIZE] = "";
715     char line[MAX_URL_SIZE];
716     const char *ptr;
717     int close_in = 0;
718     int64_t seg_offset = 0;
719     int64_t seg_size = -1;
720     uint8_t *new_url = NULL;
721     struct variant_info variant_info;
722     char tmp_str[MAX_URL_SIZE];
723     struct segment *cur_init_section = NULL;
724     int is_http = av_strstart(url, "http", NULL);
725     struct segment **prev_segments = NULL;
726     int prev_n_segments = 0;
727     int64_t prev_start_seq_no = -1;
728
729     if (is_http && !in && c->http_persistent && c->playlist_pb) {
730         in = c->playlist_pb;
731         ret = open_url_keepalive(c->ctx, &c->playlist_pb, url, NULL);
732         if (ret == AVERROR_EXIT) {
733             return ret;
734         } else if (ret < 0) {
735             if (ret != AVERROR_EOF)
736                 av_log(c->ctx, AV_LOG_WARNING,
737                     "keepalive request failed for '%s' with error: '%s' when parsing playlist\n",
738                     url, av_err2str(ret));
739             in = NULL;
740         }
741     }
742
743     if (!in) {
744         AVDictionary *opts = NULL;
745         av_dict_copy(&opts, c->avio_opts, 0);
746
747         if (c->http_persistent)
748             av_dict_set(&opts, "multiple_requests", "1", 0);
749
750         ret = c->ctx->io_open(c->ctx, &in, url, AVIO_FLAG_READ, &opts);
751         av_dict_free(&opts);
752         if (ret < 0)
753             return ret;
754
755         if (is_http && c->http_persistent)
756             c->playlist_pb = in;
757         else
758             close_in = 1;
759     }
760
761     if (av_opt_get(in, "location", AV_OPT_SEARCH_CHILDREN, &new_url) >= 0)
762         url = new_url;
763
764     ff_get_chomp_line(in, line, sizeof(line));
765     if (strcmp(line, "#EXTM3U")) {
766         ret = AVERROR_INVALIDDATA;
767         goto fail;
768     }
769
770     if (pls) {
771         prev_start_seq_no = pls->start_seq_no;
772         prev_segments = pls->segments;
773         prev_n_segments = pls->n_segments;
774         pls->segments = NULL;
775         pls->n_segments = 0;
776
777         pls->finished = 0;
778         pls->type = PLS_TYPE_UNSPECIFIED;
779     }
780     while (!avio_feof(in)) {
781         ff_get_chomp_line(in, line, sizeof(line));
782         if (av_strstart(line, "#EXT-X-STREAM-INF:", &ptr)) {
783             is_variant = 1;
784             memset(&variant_info, 0, sizeof(variant_info));
785             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_variant_args,
786                                &variant_info);
787         } else if (av_strstart(line, "#EXT-X-KEY:", &ptr)) {
788             struct key_info info = {{0}};
789             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_key_args,
790                                &info);
791             key_type = KEY_NONE;
792             has_iv = 0;
793             if (!strcmp(info.method, "AES-128"))
794                 key_type = KEY_AES_128;
795             if (!strcmp(info.method, "SAMPLE-AES"))
796                 key_type = KEY_SAMPLE_AES;
797             if (!strncmp(info.iv, "0x", 2) || !strncmp(info.iv, "0X", 2)) {
798                 ff_hex_to_data(iv, info.iv + 2);
799                 has_iv = 1;
800             }
801             av_strlcpy(key, info.uri, sizeof(key));
802         } else if (av_strstart(line, "#EXT-X-MEDIA:", &ptr)) {
803             struct rendition_info info = {{0}};
804             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_rendition_args,
805                                &info);
806             new_rendition(c, &info, url);
807         } else if (av_strstart(line, "#EXT-X-TARGETDURATION:", &ptr)) {
808             ret = ensure_playlist(c, &pls, url);
809             if (ret < 0)
810                 goto fail;
811             pls->target_duration = strtoll(ptr, NULL, 10) * AV_TIME_BASE;
812         } else if (av_strstart(line, "#EXT-X-MEDIA-SEQUENCE:", &ptr)) {
813             uint64_t seq_no;
814             ret = ensure_playlist(c, &pls, url);
815             if (ret < 0)
816                 goto fail;
817             seq_no = strtoull(ptr, NULL, 10);
818             if (seq_no > INT64_MAX) {
819                 av_log(c->ctx, AV_LOG_DEBUG, "MEDIA-SEQUENCE higher than "
820                         "INT64_MAX, mask out the highest bit\n");
821                 seq_no &= INT64_MAX;
822             }
823             pls->start_seq_no = seq_no;
824         } else if (av_strstart(line, "#EXT-X-PLAYLIST-TYPE:", &ptr)) {
825             ret = ensure_playlist(c, &pls, url);
826             if (ret < 0)
827                 goto fail;
828             if (!strcmp(ptr, "EVENT"))
829                 pls->type = PLS_TYPE_EVENT;
830             else if (!strcmp(ptr, "VOD"))
831                 pls->type = PLS_TYPE_VOD;
832         } else if (av_strstart(line, "#EXT-X-MAP:", &ptr)) {
833             struct init_section_info info = {{0}};
834             ret = ensure_playlist(c, &pls, url);
835             if (ret < 0)
836                 goto fail;
837             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_init_section_args,
838                                &info);
839             cur_init_section = new_init_section(pls, &info, url);
840             cur_init_section->key_type = key_type;
841             if (has_iv) {
842                 memcpy(cur_init_section->iv, iv, sizeof(iv));
843             } else {
844                 int64_t seq = pls->start_seq_no + pls->n_segments;
845                 memset(cur_init_section->iv, 0, sizeof(cur_init_section->iv));
846                 AV_WB64(cur_init_section->iv + 8, seq);
847             }
848
849             if (key_type != KEY_NONE) {
850                 ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, key);
851                 if (!tmp_str[0]) {
852                     av_free(cur_init_section);
853                     ret = AVERROR_INVALIDDATA;
854                     goto fail;
855                 }
856                 cur_init_section->key = av_strdup(tmp_str);
857                 if (!cur_init_section->key) {
858                     av_free(cur_init_section);
859                     ret = AVERROR(ENOMEM);
860                     goto fail;
861                 }
862             } else {
863                 cur_init_section->key = NULL;
864             }
865
866         } else if (av_strstart(line, "#EXT-X-ENDLIST", &ptr)) {
867             if (pls)
868                 pls->finished = 1;
869         } else if (av_strstart(line, "#EXTINF:", &ptr)) {
870             is_segment = 1;
871             duration   = atof(ptr) * AV_TIME_BASE;
872         } else if (av_strstart(line, "#EXT-X-BYTERANGE:", &ptr)) {
873             seg_size = strtoll(ptr, NULL, 10);
874             ptr = strchr(ptr, '@');
875             if (ptr)
876                 seg_offset = strtoll(ptr+1, NULL, 10);
877         } else if (av_strstart(line, "#", NULL)) {
878             av_log(c->ctx, AV_LOG_INFO, "Skip ('%s')\n", line);
879             continue;
880         } else if (line[0]) {
881             if (is_variant) {
882                 if (!new_variant(c, &variant_info, line, url)) {
883                     ret = AVERROR(ENOMEM);
884                     goto fail;
885                 }
886                 is_variant = 0;
887             }
888             if (is_segment) {
889                 struct segment *seg;
890                 ret = ensure_playlist(c, &pls, url);
891                 if (ret < 0)
892                     goto fail;
893                 seg = av_malloc(sizeof(struct segment));
894                 if (!seg) {
895                     ret = AVERROR(ENOMEM);
896                     goto fail;
897                 }
898                 if (has_iv) {
899                     memcpy(seg->iv, iv, sizeof(iv));
900                 } else {
901                     int64_t seq = pls->start_seq_no + pls->n_segments;
902                     memset(seg->iv, 0, sizeof(seg->iv));
903                     AV_WB64(seg->iv + 8, seq);
904                 }
905
906                 if (key_type != KEY_NONE) {
907                     ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, key);
908                     if (!tmp_str[0]) {
909                         ret = AVERROR_INVALIDDATA;
910                         av_free(seg);
911                         goto fail;
912                     }
913                     seg->key = av_strdup(tmp_str);
914                     if (!seg->key) {
915                         av_free(seg);
916                         ret = AVERROR(ENOMEM);
917                         goto fail;
918                     }
919                 } else {
920                     seg->key = NULL;
921                 }
922
923                 ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, line);
924                 if (!tmp_str[0]) {
925                     ret = AVERROR_INVALIDDATA;
926                     if (seg->key)
927                         av_free(seg->key);
928                     av_free(seg);
929                     goto fail;
930                 }
931                 seg->url = av_strdup(tmp_str);
932                 if (!seg->url) {
933                     av_free(seg->key);
934                     av_free(seg);
935                     ret = AVERROR(ENOMEM);
936                     goto fail;
937                 }
938
939                 if (duration < 0.001 * AV_TIME_BASE) {
940                     av_log(c->ctx, AV_LOG_WARNING, "Cannot get correct #EXTINF value of segment %s,"
941                                     " set to default value to 1ms.\n", seg->url);
942                     duration = 0.001 * AV_TIME_BASE;
943                 }
944                 seg->duration = duration;
945                 seg->key_type = key_type;
946                 dynarray_add(&pls->segments, &pls->n_segments, seg);
947                 is_segment = 0;
948
949                 seg->size = seg_size;
950                 if (seg_size >= 0) {
951                     seg->url_offset = seg_offset;
952                     seg_offset += seg_size;
953                     seg_size = -1;
954                 } else {
955                     seg->url_offset = 0;
956                     seg_offset = 0;
957                 }
958
959                 seg->init_section = cur_init_section;
960             }
961         }
962     }
963     if (prev_segments) {
964         if (pls->start_seq_no > prev_start_seq_no && c->first_timestamp != AV_NOPTS_VALUE) {
965             int64_t prev_timestamp = c->first_timestamp;
966             int i;
967             int64_t diff = pls->start_seq_no - prev_start_seq_no;
968             for (i = 0; i < prev_n_segments && i < diff; i++) {
969                 c->first_timestamp += prev_segments[i]->duration;
970             }
971             av_log(c->ctx, AV_LOG_DEBUG, "Media sequence change (%"PRId64" -> %"PRId64")"
972                    " reflected in first_timestamp: %"PRId64" -> %"PRId64"\n",
973                    prev_start_seq_no, pls->start_seq_no,
974                    prev_timestamp, c->first_timestamp);
975         } else if (pls->start_seq_no < prev_start_seq_no) {
976             av_log(c->ctx, AV_LOG_WARNING, "Media sequence changed unexpectedly: %"PRId64" -> %"PRId64"\n",
977                    prev_start_seq_no, pls->start_seq_no);
978         }
979         free_segment_dynarray(prev_segments, prev_n_segments);
980         av_freep(&prev_segments);
981     }
982     if (pls)
983         pls->last_load_time = av_gettime_relative();
984
985 fail:
986     av_free(new_url);
987     if (close_in)
988         ff_format_io_close(c->ctx, &in);
989     c->ctx->ctx_flags = c->ctx->ctx_flags & ~(unsigned)AVFMTCTX_UNSEEKABLE;
990     if (!c->n_variants || !c->variants[0]->n_playlists ||
991         !(c->variants[0]->playlists[0]->finished ||
992           c->variants[0]->playlists[0]->type == PLS_TYPE_EVENT))
993         c->ctx->ctx_flags |= AVFMTCTX_UNSEEKABLE;
994     return ret;
995 }
996
997 static struct segment *current_segment(struct playlist *pls)
998 {
999     return pls->segments[pls->cur_seq_no - pls->start_seq_no];
1000 }
1001
1002 static struct segment *next_segment(struct playlist *pls)
1003 {
1004     int64_t n = pls->cur_seq_no - pls->start_seq_no + 1;
1005     if (n >= pls->n_segments)
1006         return NULL;
1007     return pls->segments[n];
1008 }
1009
1010 static int read_from_url(struct playlist *pls, struct segment *seg,
1011                          uint8_t *buf, int buf_size)
1012 {
1013     int ret;
1014
1015      /* limit read if the segment was only a part of a file */
1016     if (seg->size >= 0)
1017         buf_size = FFMIN(buf_size, seg->size - pls->cur_seg_offset);
1018
1019     ret = avio_read(pls->input, buf, buf_size);
1020     if (ret > 0)
1021         pls->cur_seg_offset += ret;
1022
1023     return ret;
1024 }
1025
1026 /* Parse the raw ID3 data and pass contents to caller */
1027 static void parse_id3(AVFormatContext *s, AVIOContext *pb,
1028                       AVDictionary **metadata, int64_t *dts,
1029                       ID3v2ExtraMetaAPIC **apic, ID3v2ExtraMeta **extra_meta)
1030 {
1031     static const char id3_priv_owner_ts[] = "com.apple.streaming.transportStreamTimestamp";
1032     ID3v2ExtraMeta *meta;
1033
1034     ff_id3v2_read_dict(pb, metadata, ID3v2_DEFAULT_MAGIC, extra_meta);
1035     for (meta = *extra_meta; meta; meta = meta->next) {
1036         if (!strcmp(meta->tag, "PRIV")) {
1037             ID3v2ExtraMetaPRIV *priv = &meta->data.priv;
1038             if (priv->datasize == 8 && !strcmp(priv->owner, id3_priv_owner_ts)) {
1039                 /* 33-bit MPEG timestamp */
1040                 int64_t ts = AV_RB64(priv->data);
1041                 av_log(s, AV_LOG_DEBUG, "HLS ID3 audio timestamp %"PRId64"\n", ts);
1042                 if ((ts & ~((1ULL << 33) - 1)) == 0)
1043                     *dts = ts;
1044                 else
1045                     av_log(s, AV_LOG_ERROR, "Invalid HLS ID3 audio timestamp %"PRId64"\n", ts);
1046             }
1047         } else if (!strcmp(meta->tag, "APIC") && apic)
1048             *apic = &meta->data.apic;
1049     }
1050 }
1051
1052 /* Check if the ID3 metadata contents have changed */
1053 static int id3_has_changed_values(struct playlist *pls, AVDictionary *metadata,
1054                                   ID3v2ExtraMetaAPIC *apic)
1055 {
1056     AVDictionaryEntry *entry = NULL;
1057     AVDictionaryEntry *oldentry;
1058     /* check that no keys have changed values */
1059     while ((entry = av_dict_get(metadata, "", entry, AV_DICT_IGNORE_SUFFIX))) {
1060         oldentry = av_dict_get(pls->id3_initial, entry->key, NULL, AV_DICT_MATCH_CASE);
1061         if (!oldentry || strcmp(oldentry->value, entry->value) != 0)
1062             return 1;
1063     }
1064
1065     /* check if apic appeared */
1066     if (apic && (pls->ctx->nb_streams != 2 || !pls->ctx->streams[1]->attached_pic.data))
1067         return 1;
1068
1069     if (apic) {
1070         int size = pls->ctx->streams[1]->attached_pic.size;
1071         if (size != apic->buf->size - AV_INPUT_BUFFER_PADDING_SIZE)
1072             return 1;
1073
1074         if (memcmp(apic->buf->data, pls->ctx->streams[1]->attached_pic.data, size) != 0)
1075             return 1;
1076     }
1077
1078     return 0;
1079 }
1080
1081 /* Parse ID3 data and handle the found data */
1082 static void handle_id3(AVIOContext *pb, struct playlist *pls)
1083 {
1084     AVDictionary *metadata = NULL;
1085     ID3v2ExtraMetaAPIC *apic = NULL;
1086     ID3v2ExtraMeta *extra_meta = NULL;
1087     int64_t timestamp = AV_NOPTS_VALUE;
1088
1089     parse_id3(pls->ctx, pb, &metadata, &timestamp, &apic, &extra_meta);
1090
1091     if (timestamp != AV_NOPTS_VALUE) {
1092         pls->id3_mpegts_timestamp = timestamp;
1093         pls->id3_offset = 0;
1094     }
1095
1096     if (!pls->id3_found) {
1097         /* initial ID3 tags */
1098         av_assert0(!pls->id3_deferred_extra);
1099         pls->id3_found = 1;
1100
1101         /* get picture attachment and set text metadata */
1102         if (pls->ctx->nb_streams)
1103             ff_id3v2_parse_apic(pls->ctx, extra_meta);
1104         else
1105             /* demuxer not yet opened, defer picture attachment */
1106             pls->id3_deferred_extra = extra_meta;
1107
1108         ff_id3v2_parse_priv_dict(&metadata, extra_meta);
1109         av_dict_copy(&pls->ctx->metadata, metadata, 0);
1110         pls->id3_initial = metadata;
1111
1112     } else {
1113         if (!pls->id3_changed && id3_has_changed_values(pls, metadata, apic)) {
1114             avpriv_report_missing_feature(pls->parent, "Changing ID3 metadata in HLS audio elementary stream");
1115             pls->id3_changed = 1;
1116         }
1117         av_dict_free(&metadata);
1118     }
1119
1120     if (!pls->id3_deferred_extra)
1121         ff_id3v2_free_extra_meta(&extra_meta);
1122 }
1123
1124 static void intercept_id3(struct playlist *pls, uint8_t *buf,
1125                          int buf_size, int *len)
1126 {
1127     /* intercept id3 tags, we do not want to pass them to the raw
1128      * demuxer on all segment switches */
1129     int bytes;
1130     int id3_buf_pos = 0;
1131     int fill_buf = 0;
1132     struct segment *seg = current_segment(pls);
1133
1134     /* gather all the id3 tags */
1135     while (1) {
1136         /* see if we can retrieve enough data for ID3 header */
1137         if (*len < ID3v2_HEADER_SIZE && buf_size >= ID3v2_HEADER_SIZE) {
1138             bytes = read_from_url(pls, seg, buf + *len, ID3v2_HEADER_SIZE - *len);
1139             if (bytes > 0) {
1140
1141                 if (bytes == ID3v2_HEADER_SIZE - *len)
1142                     /* no EOF yet, so fill the caller buffer again after
1143                      * we have stripped the ID3 tags */
1144                     fill_buf = 1;
1145
1146                 *len += bytes;
1147
1148             } else if (*len <= 0) {
1149                 /* error/EOF */
1150                 *len = bytes;
1151                 fill_buf = 0;
1152             }
1153         }
1154
1155         if (*len < ID3v2_HEADER_SIZE)
1156             break;
1157
1158         if (ff_id3v2_match(buf, ID3v2_DEFAULT_MAGIC)) {
1159             int64_t maxsize = seg->size >= 0 ? seg->size : 1024*1024;
1160             int taglen = ff_id3v2_tag_len(buf);
1161             int tag_got_bytes = FFMIN(taglen, *len);
1162             int remaining = taglen - tag_got_bytes;
1163
1164             if (taglen > maxsize) {
1165                 av_log(pls->parent, AV_LOG_ERROR, "Too large HLS ID3 tag (%d > %"PRId64" bytes)\n",
1166                        taglen, maxsize);
1167                 break;
1168             }
1169
1170             /*
1171              * Copy the id3 tag to our temporary id3 buffer.
1172              * We could read a small id3 tag directly without memcpy, but
1173              * we would still need to copy the large tags, and handling
1174              * both of those cases together with the possibility for multiple
1175              * tags would make the handling a bit complex.
1176              */
1177             pls->id3_buf = av_fast_realloc(pls->id3_buf, &pls->id3_buf_size, id3_buf_pos + taglen);
1178             if (!pls->id3_buf)
1179                 break;
1180             memcpy(pls->id3_buf + id3_buf_pos, buf, tag_got_bytes);
1181             id3_buf_pos += tag_got_bytes;
1182
1183             /* strip the intercepted bytes */
1184             *len -= tag_got_bytes;
1185             memmove(buf, buf + tag_got_bytes, *len);
1186             av_log(pls->parent, AV_LOG_DEBUG, "Stripped %d HLS ID3 bytes\n", tag_got_bytes);
1187
1188             if (remaining > 0) {
1189                 /* read the rest of the tag in */
1190                 if (read_from_url(pls, seg, pls->id3_buf + id3_buf_pos, remaining) != remaining)
1191                     break;
1192                 id3_buf_pos += remaining;
1193                 av_log(pls->parent, AV_LOG_DEBUG, "Stripped additional %d HLS ID3 bytes\n", remaining);
1194             }
1195
1196         } else {
1197             /* no more ID3 tags */
1198             break;
1199         }
1200     }
1201
1202     /* re-fill buffer for the caller unless EOF */
1203     if (*len >= 0 && (fill_buf || *len == 0)) {
1204         bytes = read_from_url(pls, seg, buf + *len, buf_size - *len);
1205
1206         /* ignore error if we already had some data */
1207         if (bytes >= 0)
1208             *len += bytes;
1209         else if (*len == 0)
1210             *len = bytes;
1211     }
1212
1213     if (pls->id3_buf) {
1214         /* Now parse all the ID3 tags */
1215         AVIOContext id3ioctx;
1216         ffio_init_context(&id3ioctx, pls->id3_buf, id3_buf_pos, 0, NULL, NULL, NULL, NULL);
1217         handle_id3(&id3ioctx, pls);
1218     }
1219
1220     if (pls->is_id3_timestamped == -1)
1221         pls->is_id3_timestamped = (pls->id3_mpegts_timestamp != AV_NOPTS_VALUE);
1222 }
1223
1224 static int open_input(HLSContext *c, struct playlist *pls, struct segment *seg, AVIOContext **in)
1225 {
1226     AVDictionary *opts = NULL;
1227     int ret;
1228     int is_http = 0;
1229
1230     if (c->http_persistent)
1231         av_dict_set(&opts, "multiple_requests", "1", 0);
1232
1233     if (seg->size >= 0) {
1234         /* try to restrict the HTTP request to the part we want
1235          * (if this is in fact a HTTP request) */
1236         av_dict_set_int(&opts, "offset", seg->url_offset, 0);
1237         av_dict_set_int(&opts, "end_offset", seg->url_offset + seg->size, 0);
1238     }
1239
1240     av_log(pls->parent, AV_LOG_VERBOSE, "HLS request for url '%s', offset %"PRId64", playlist %d\n",
1241            seg->url, seg->url_offset, pls->index);
1242
1243     if (seg->key_type == KEY_NONE) {
1244         ret = open_url(pls->parent, in, seg->url, &c->avio_opts, opts, &is_http);
1245     } else if (seg->key_type == KEY_AES_128) {
1246         char iv[33], key[33], url[MAX_URL_SIZE];
1247         if (strcmp(seg->key, pls->key_url)) {
1248             AVIOContext *pb = NULL;
1249             if (open_url(pls->parent, &pb, seg->key, &c->avio_opts, opts, NULL) == 0) {
1250                 ret = avio_read(pb, pls->key, sizeof(pls->key));
1251                 if (ret != sizeof(pls->key)) {
1252                     av_log(pls->parent, AV_LOG_ERROR, "Unable to read key file %s\n",
1253                            seg->key);
1254                 }
1255                 ff_format_io_close(pls->parent, &pb);
1256             } else {
1257                 av_log(pls->parent, AV_LOG_ERROR, "Unable to open key file %s\n",
1258                        seg->key);
1259             }
1260             av_strlcpy(pls->key_url, seg->key, sizeof(pls->key_url));
1261         }
1262         ff_data_to_hex(iv, seg->iv, sizeof(seg->iv), 0);
1263         ff_data_to_hex(key, pls->key, sizeof(pls->key), 0);
1264         iv[32] = key[32] = '\0';
1265         if (strstr(seg->url, "://"))
1266             snprintf(url, sizeof(url), "crypto+%s", seg->url);
1267         else
1268             snprintf(url, sizeof(url), "crypto:%s", seg->url);
1269
1270         av_dict_set(&opts, "key", key, 0);
1271         av_dict_set(&opts, "iv", iv, 0);
1272
1273         ret = open_url(pls->parent, in, url, &c->avio_opts, opts, &is_http);
1274         if (ret < 0) {
1275             goto cleanup;
1276         }
1277         ret = 0;
1278     } else if (seg->key_type == KEY_SAMPLE_AES) {
1279         av_log(pls->parent, AV_LOG_ERROR,
1280                "SAMPLE-AES encryption is not supported yet\n");
1281         ret = AVERROR_PATCHWELCOME;
1282     }
1283     else
1284       ret = AVERROR(ENOSYS);
1285
1286     /* Seek to the requested position. If this was a HTTP request, the offset
1287      * should already be where want it to, but this allows e.g. local testing
1288      * without a HTTP server.
1289      *
1290      * This is not done for HTTP at all as avio_seek() does internal bookkeeping
1291      * of file offset which is out-of-sync with the actual offset when "offset"
1292      * AVOption is used with http protocol, causing the seek to not be a no-op
1293      * as would be expected. Wrong offset received from the server will not be
1294      * noticed without the call, though.
1295      */
1296     if (ret == 0 && !is_http && seg->url_offset) {
1297         int64_t seekret = avio_seek(*in, seg->url_offset, SEEK_SET);
1298         if (seekret < 0) {
1299             av_log(pls->parent, AV_LOG_ERROR, "Unable to seek to offset %"PRId64" of HLS segment '%s'\n", seg->url_offset, seg->url);
1300             ret = seekret;
1301             ff_format_io_close(pls->parent, in);
1302         }
1303     }
1304
1305 cleanup:
1306     av_dict_free(&opts);
1307     pls->cur_seg_offset = 0;
1308     return ret;
1309 }
1310
1311 static int update_init_section(struct playlist *pls, struct segment *seg)
1312 {
1313     static const int max_init_section_size = 1024*1024;
1314     HLSContext *c = pls->parent->priv_data;
1315     int64_t sec_size;
1316     int64_t urlsize;
1317     int ret;
1318
1319     if (seg->init_section == pls->cur_init_section)
1320         return 0;
1321
1322     pls->cur_init_section = NULL;
1323
1324     if (!seg->init_section)
1325         return 0;
1326
1327     ret = open_input(c, pls, seg->init_section, &pls->input);
1328     if (ret < 0) {
1329         av_log(pls->parent, AV_LOG_WARNING,
1330                "Failed to open an initialization section in playlist %d\n",
1331                pls->index);
1332         return ret;
1333     }
1334
1335     if (seg->init_section->size >= 0)
1336         sec_size = seg->init_section->size;
1337     else if ((urlsize = avio_size(pls->input)) >= 0)
1338         sec_size = urlsize;
1339     else
1340         sec_size = max_init_section_size;
1341
1342     av_log(pls->parent, AV_LOG_DEBUG,
1343            "Downloading an initialization section of size %"PRId64"\n",
1344            sec_size);
1345
1346     sec_size = FFMIN(sec_size, max_init_section_size);
1347
1348     av_fast_malloc(&pls->init_sec_buf, &pls->init_sec_buf_size, sec_size);
1349
1350     ret = read_from_url(pls, seg->init_section, pls->init_sec_buf,
1351                         pls->init_sec_buf_size);
1352     ff_format_io_close(pls->parent, &pls->input);
1353
1354     if (ret < 0)
1355         return ret;
1356
1357     pls->cur_init_section = seg->init_section;
1358     pls->init_sec_data_len = ret;
1359     pls->init_sec_buf_read_offset = 0;
1360
1361     /* spec says audio elementary streams do not have media initialization
1362      * sections, so there should be no ID3 timestamps */
1363     pls->is_id3_timestamped = 0;
1364
1365     return 0;
1366 }
1367
1368 static int64_t default_reload_interval(struct playlist *pls)
1369 {
1370     return pls->n_segments > 0 ?
1371                           pls->segments[pls->n_segments - 1]->duration :
1372                           pls->target_duration;
1373 }
1374
1375 static int playlist_needed(struct playlist *pls)
1376 {
1377     AVFormatContext *s = pls->parent;
1378     int i, j;
1379     int stream_needed = 0;
1380     int first_st;
1381
1382     /* If there is no context or streams yet, the playlist is needed */
1383     if (!pls->ctx || !pls->n_main_streams)
1384         return 1;
1385
1386     /* check if any of the streams in the playlist are needed */
1387     for (i = 0; i < pls->n_main_streams; i++) {
1388         if (pls->main_streams[i]->discard < AVDISCARD_ALL) {
1389             stream_needed = 1;
1390             break;
1391         }
1392     }
1393
1394     /* If all streams in the playlist were discarded, the playlist is not
1395      * needed (regardless of whether whole programs are discarded or not). */
1396     if (!stream_needed)
1397         return 0;
1398
1399     /* Otherwise, check if all the programs (variants) this playlist is in are
1400      * discarded. Since all streams in the playlist are part of the same programs
1401      * we can just check the programs of the first stream. */
1402
1403     first_st = pls->main_streams[0]->index;
1404
1405     for (i = 0; i < s->nb_programs; i++) {
1406         AVProgram *program = s->programs[i];
1407         if (program->discard < AVDISCARD_ALL) {
1408             for (j = 0; j < program->nb_stream_indexes; j++) {
1409                 if (program->stream_index[j] == first_st) {
1410                     /* playlist is in an undiscarded program */
1411                     return 1;
1412                 }
1413             }
1414         }
1415     }
1416
1417     /* some streams were not discarded but all the programs were */
1418     return 0;
1419 }
1420
1421 static int read_data(void *opaque, uint8_t *buf, int buf_size)
1422 {
1423     struct playlist *v = opaque;
1424     HLSContext *c = v->parent->priv_data;
1425     int ret;
1426     int just_opened = 0;
1427     int reload_count = 0;
1428     struct segment *seg;
1429
1430 restart:
1431     if (!v->needed)
1432         return AVERROR_EOF;
1433
1434     if (!v->input || (c->http_persistent && v->input_read_done)) {
1435         int64_t reload_interval;
1436
1437         /* Check that the playlist is still needed before opening a new
1438          * segment. */
1439         v->needed = playlist_needed(v);
1440
1441         if (!v->needed) {
1442             av_log(v->parent, AV_LOG_INFO, "No longer receiving playlist %d ('%s')\n",
1443                    v->index, v->url);
1444             return AVERROR_EOF;
1445         }
1446
1447         /* If this is a live stream and the reload interval has elapsed since
1448          * the last playlist reload, reload the playlists now. */
1449         reload_interval = default_reload_interval(v);
1450
1451 reload:
1452         reload_count++;
1453         if (reload_count > c->max_reload)
1454             return AVERROR_EOF;
1455         if (!v->finished &&
1456             av_gettime_relative() - v->last_load_time >= reload_interval) {
1457             if ((ret = parse_playlist(c, v->url, v, NULL)) < 0) {
1458                 if (ret != AVERROR_EXIT)
1459                     av_log(v->parent, AV_LOG_WARNING, "Failed to reload playlist %d\n",
1460                            v->index);
1461                 return ret;
1462             }
1463             /* If we need to reload the playlist again below (if
1464              * there's still no more segments), switch to a reload
1465              * interval of half the target duration. */
1466             reload_interval = v->target_duration / 2;
1467         }
1468         if (v->cur_seq_no < v->start_seq_no) {
1469             av_log(v->parent, AV_LOG_WARNING,
1470                    "skipping %"PRId64" segments ahead, expired from playlists\n",
1471                    v->start_seq_no - v->cur_seq_no);
1472             v->cur_seq_no = v->start_seq_no;
1473         }
1474         if (v->cur_seq_no > v->last_seq_no) {
1475             v->last_seq_no = v->cur_seq_no;
1476             v->m3u8_hold_counters = 0;
1477         } else if (v->last_seq_no == v->cur_seq_no) {
1478             v->m3u8_hold_counters++;
1479             if (v->m3u8_hold_counters >= c->m3u8_hold_counters) {
1480                 return AVERROR_EOF;
1481             }
1482         } else {
1483             av_log(v->parent, AV_LOG_WARNING, "maybe the m3u8 list sequence have been wraped.\n");
1484         }
1485         if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
1486             if (v->finished)
1487                 return AVERROR_EOF;
1488             while (av_gettime_relative() - v->last_load_time < reload_interval) {
1489                 if (ff_check_interrupt(c->interrupt_callback))
1490                     return AVERROR_EXIT;
1491                 av_usleep(100*1000);
1492             }
1493             /* Enough time has elapsed since the last reload */
1494             goto reload;
1495         }
1496
1497         v->input_read_done = 0;
1498         seg = current_segment(v);
1499
1500         /* load/update Media Initialization Section, if any */
1501         ret = update_init_section(v, seg);
1502         if (ret)
1503             return ret;
1504
1505         if (c->http_multiple == 1 && v->input_next_requested) {
1506             FFSWAP(AVIOContext *, v->input, v->input_next);
1507             v->cur_seg_offset = 0;
1508             v->input_next_requested = 0;
1509             ret = 0;
1510         } else {
1511             ret = open_input(c, v, seg, &v->input);
1512         }
1513         if (ret < 0) {
1514             if (ff_check_interrupt(c->interrupt_callback))
1515                 return AVERROR_EXIT;
1516             av_log(v->parent, AV_LOG_WARNING, "Failed to open segment %"PRId64" of playlist %d\n",
1517                    v->cur_seq_no,
1518                    v->index);
1519             v->cur_seq_no += 1;
1520             goto reload;
1521         }
1522         just_opened = 1;
1523     }
1524
1525     if (c->http_multiple == -1) {
1526         uint8_t *http_version_opt = NULL;
1527         int r = av_opt_get(v->input, "http_version", AV_OPT_SEARCH_CHILDREN, &http_version_opt);
1528         if (r >= 0) {
1529             c->http_multiple = (!strncmp((const char *)http_version_opt, "1.1", 3) || !strncmp((const char *)http_version_opt, "2.0", 3));
1530             av_freep(&http_version_opt);
1531         }
1532     }
1533
1534     seg = next_segment(v);
1535     if (c->http_multiple == 1 && !v->input_next_requested &&
1536         seg && seg->key_type == KEY_NONE && av_strstart(seg->url, "http", NULL)) {
1537         ret = open_input(c, v, seg, &v->input_next);
1538         if (ret < 0) {
1539             if (ff_check_interrupt(c->interrupt_callback))
1540                 return AVERROR_EXIT;
1541             av_log(v->parent, AV_LOG_WARNING, "Failed to open segment %"PRId64" of playlist %d\n",
1542                    v->cur_seq_no + 1,
1543                    v->index);
1544         } else {
1545             v->input_next_requested = 1;
1546         }
1547     }
1548
1549     if (v->init_sec_buf_read_offset < v->init_sec_data_len) {
1550         /* Push init section out first before first actual segment */
1551         int copy_size = FFMIN(v->init_sec_data_len - v->init_sec_buf_read_offset, buf_size);
1552         memcpy(buf, v->init_sec_buf, copy_size);
1553         v->init_sec_buf_read_offset += copy_size;
1554         return copy_size;
1555     }
1556
1557     seg = current_segment(v);
1558     ret = read_from_url(v, seg, buf, buf_size);
1559     if (ret > 0) {
1560         if (just_opened && v->is_id3_timestamped != 0) {
1561             /* Intercept ID3 tags here, elementary audio streams are required
1562              * to convey timestamps using them in the beginning of each segment. */
1563             intercept_id3(v, buf, buf_size, &ret);
1564         }
1565
1566         return ret;
1567     }
1568     if (c->http_persistent &&
1569         seg->key_type == KEY_NONE && av_strstart(seg->url, "http", NULL)) {
1570         v->input_read_done = 1;
1571     } else {
1572         ff_format_io_close(v->parent, &v->input);
1573     }
1574     v->cur_seq_no++;
1575
1576     c->cur_seq_no = v->cur_seq_no;
1577
1578     goto restart;
1579 }
1580
1581 static void add_renditions_to_variant(HLSContext *c, struct variant *var,
1582                                       enum AVMediaType type, const char *group_id)
1583 {
1584     int i;
1585
1586     for (i = 0; i < c->n_renditions; i++) {
1587         struct rendition *rend = c->renditions[i];
1588
1589         if (rend->type == type && !strcmp(rend->group_id, group_id)) {
1590
1591             if (rend->playlist)
1592                 /* rendition is an external playlist
1593                  * => add the playlist to the variant */
1594                 dynarray_add(&var->playlists, &var->n_playlists, rend->playlist);
1595             else
1596                 /* rendition is part of the variant main Media Playlist
1597                  * => add the rendition to the main Media Playlist */
1598                 dynarray_add(&var->playlists[0]->renditions,
1599                              &var->playlists[0]->n_renditions,
1600                              rend);
1601         }
1602     }
1603 }
1604
1605 static void add_metadata_from_renditions(AVFormatContext *s, struct playlist *pls,
1606                                          enum AVMediaType type)
1607 {
1608     int rend_idx = 0;
1609     int i;
1610
1611     for (i = 0; i < pls->n_main_streams; i++) {
1612         AVStream *st = pls->main_streams[i];
1613
1614         if (st->codecpar->codec_type != type)
1615             continue;
1616
1617         for (; rend_idx < pls->n_renditions; rend_idx++) {
1618             struct rendition *rend = pls->renditions[rend_idx];
1619
1620             if (rend->type != type)
1621                 continue;
1622
1623             if (rend->language[0])
1624                 av_dict_set(&st->metadata, "language", rend->language, 0);
1625             if (rend->name[0])
1626                 av_dict_set(&st->metadata, "comment", rend->name, 0);
1627
1628             st->disposition |= rend->disposition;
1629         }
1630         if (rend_idx >=pls->n_renditions)
1631             break;
1632     }
1633 }
1634
1635 /* if timestamp was in valid range: returns 1 and sets seq_no
1636  * if not: returns 0 and sets seq_no to closest segment */
1637 static int find_timestamp_in_playlist(HLSContext *c, struct playlist *pls,
1638                                       int64_t timestamp, int64_t *seq_no)
1639 {
1640     int i;
1641     int64_t pos = c->first_timestamp == AV_NOPTS_VALUE ?
1642                   0 : c->first_timestamp;
1643
1644     if (timestamp < pos) {
1645         *seq_no = pls->start_seq_no;
1646         return 0;
1647     }
1648
1649     for (i = 0; i < pls->n_segments; i++) {
1650         int64_t diff = pos + pls->segments[i]->duration - timestamp;
1651         if (diff > 0) {
1652             *seq_no = pls->start_seq_no + i;
1653             return 1;
1654         }
1655         pos += pls->segments[i]->duration;
1656     }
1657
1658     *seq_no = pls->start_seq_no + pls->n_segments - 1;
1659
1660     return 0;
1661 }
1662
1663 static int64_t select_cur_seq_no(HLSContext *c, struct playlist *pls)
1664 {
1665     int64_t seq_no;
1666
1667     if (!pls->finished && !c->first_packet &&
1668         av_gettime_relative() - pls->last_load_time >= default_reload_interval(pls))
1669         /* reload the playlist since it was suspended */
1670         parse_playlist(c, pls->url, pls, NULL);
1671
1672     /* If playback is already in progress (we are just selecting a new
1673      * playlist) and this is a complete file, find the matching segment
1674      * by counting durations. */
1675     if (pls->finished && c->cur_timestamp != AV_NOPTS_VALUE) {
1676         find_timestamp_in_playlist(c, pls, c->cur_timestamp, &seq_no);
1677         return seq_no;
1678     }
1679
1680     if (!pls->finished) {
1681         if (!c->first_packet && /* we are doing a segment selection during playback */
1682             c->cur_seq_no >= pls->start_seq_no &&
1683             c->cur_seq_no < pls->start_seq_no + pls->n_segments)
1684             /* While spec 3.4.3 says that we cannot assume anything about the
1685              * content at the same sequence number on different playlists,
1686              * in practice this seems to work and doing it otherwise would
1687              * require us to download a segment to inspect its timestamps. */
1688             return c->cur_seq_no;
1689
1690         /* If this is a live stream, start live_start_index segments from the
1691          * start or end */
1692         if (c->live_start_index < 0)
1693             return pls->start_seq_no + FFMAX(pls->n_segments + c->live_start_index, 0);
1694         else
1695             return pls->start_seq_no + FFMIN(c->live_start_index, pls->n_segments - 1);
1696     }
1697
1698     /* Otherwise just start on the first segment. */
1699     return pls->start_seq_no;
1700 }
1701
1702 static int save_avio_options(AVFormatContext *s)
1703 {
1704     HLSContext *c = s->priv_data;
1705     static const char * const opts[] = {
1706         "headers", "http_proxy", "user_agent", "cookies", "referer", "rw_timeout", "icy", NULL };
1707     const char * const * opt = opts;
1708     uint8_t *buf;
1709     int ret = 0;
1710
1711     while (*opt) {
1712         if (av_opt_get(s->pb, *opt, AV_OPT_SEARCH_CHILDREN | AV_OPT_ALLOW_NULL, &buf) >= 0) {
1713             ret = av_dict_set(&c->avio_opts, *opt, buf,
1714                               AV_DICT_DONT_STRDUP_VAL);
1715             if (ret < 0)
1716                 return ret;
1717         }
1718         opt++;
1719     }
1720
1721     return ret;
1722 }
1723
1724 static int nested_io_open(AVFormatContext *s, AVIOContext **pb, const char *url,
1725                           int flags, AVDictionary **opts)
1726 {
1727     av_log(s, AV_LOG_ERROR,
1728            "A HLS playlist item '%s' referred to an external file '%s'. "
1729            "Opening this file was forbidden for security reasons\n",
1730            s->url, url);
1731     return AVERROR(EPERM);
1732 }
1733
1734 static void add_stream_to_programs(AVFormatContext *s, struct playlist *pls, AVStream *stream)
1735 {
1736     HLSContext *c = s->priv_data;
1737     int i, j;
1738     int bandwidth = -1;
1739
1740     for (i = 0; i < c->n_variants; i++) {
1741         struct variant *v = c->variants[i];
1742
1743         for (j = 0; j < v->n_playlists; j++) {
1744             if (v->playlists[j] != pls)
1745                 continue;
1746
1747             av_program_add_stream_index(s, i, stream->index);
1748
1749             if (bandwidth < 0)
1750                 bandwidth = v->bandwidth;
1751             else if (bandwidth != v->bandwidth)
1752                 bandwidth = -1; /* stream in multiple variants with different bandwidths */
1753         }
1754     }
1755
1756     if (bandwidth >= 0)
1757         av_dict_set_int(&stream->metadata, "variant_bitrate", bandwidth, 0);
1758 }
1759
1760 static int set_stream_info_from_input_stream(AVStream *st, struct playlist *pls, AVStream *ist)
1761 {
1762     int err;
1763
1764     err = avcodec_parameters_copy(st->codecpar, ist->codecpar);
1765     if (err < 0)
1766         return err;
1767
1768     if (pls->is_id3_timestamped) /* custom timestamps via id3 */
1769         avpriv_set_pts_info(st, 33, 1, MPEG_TIME_BASE);
1770     else
1771         avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
1772
1773     // copy disposition
1774     st->disposition = ist->disposition;
1775
1776     // copy side data
1777     for (int i = 0; i < ist->nb_side_data; i++) {
1778         const AVPacketSideData *sd_src = &ist->side_data[i];
1779         uint8_t *dst_data;
1780
1781         dst_data = av_stream_new_side_data(st, sd_src->type, sd_src->size);
1782         if (!dst_data)
1783             return AVERROR(ENOMEM);
1784         memcpy(dst_data, sd_src->data, sd_src->size);
1785     }
1786
1787     st->internal->need_context_update = 1;
1788
1789     return 0;
1790 }
1791
1792 /* add new subdemuxer streams to our context, if any */
1793 static int update_streams_from_subdemuxer(AVFormatContext *s, struct playlist *pls)
1794 {
1795     int err;
1796
1797     while (pls->n_main_streams < pls->ctx->nb_streams) {
1798         int ist_idx = pls->n_main_streams;
1799         AVStream *st = avformat_new_stream(s, NULL);
1800         AVStream *ist = pls->ctx->streams[ist_idx];
1801
1802         if (!st)
1803             return AVERROR(ENOMEM);
1804
1805         st->id = pls->index;
1806         dynarray_add(&pls->main_streams, &pls->n_main_streams, st);
1807
1808         add_stream_to_programs(s, pls, st);
1809
1810         err = set_stream_info_from_input_stream(st, pls, ist);
1811         if (err < 0)
1812             return err;
1813     }
1814
1815     return 0;
1816 }
1817
1818 static void update_noheader_flag(AVFormatContext *s)
1819 {
1820     HLSContext *c = s->priv_data;
1821     int flag_needed = 0;
1822     int i;
1823
1824     for (i = 0; i < c->n_playlists; i++) {
1825         struct playlist *pls = c->playlists[i];
1826
1827         if (pls->has_noheader_flag) {
1828             flag_needed = 1;
1829             break;
1830         }
1831     }
1832
1833     if (flag_needed)
1834         s->ctx_flags |= AVFMTCTX_NOHEADER;
1835     else
1836         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
1837 }
1838
1839 static int hls_close(AVFormatContext *s)
1840 {
1841     HLSContext *c = s->priv_data;
1842
1843     free_playlist_list(c);
1844     free_variant_list(c);
1845     free_rendition_list(c);
1846
1847     av_dict_free(&c->avio_opts);
1848     ff_format_io_close(c->ctx, &c->playlist_pb);
1849
1850     return 0;
1851 }
1852
1853 static int hls_read_header(AVFormatContext *s)
1854 {
1855     HLSContext *c = s->priv_data;
1856     int ret = 0, i;
1857     int64_t highest_cur_seq_no = 0;
1858
1859     c->ctx                = s;
1860     c->interrupt_callback = &s->interrupt_callback;
1861
1862     c->first_packet = 1;
1863     c->first_timestamp = AV_NOPTS_VALUE;
1864     c->cur_timestamp = AV_NOPTS_VALUE;
1865
1866     if ((ret = save_avio_options(s)) < 0)
1867         goto fail;
1868
1869     /* XXX: Some HLS servers don't like being sent the range header,
1870        in this case, need to  setting http_seekable = 0 to disable
1871        the range header */
1872     av_dict_set_int(&c->avio_opts, "seekable", c->http_seekable, 0);
1873
1874     if ((ret = parse_playlist(c, s->url, NULL, s->pb)) < 0)
1875         goto fail;
1876
1877     if (c->n_variants == 0) {
1878         av_log(s, AV_LOG_WARNING, "Empty playlist\n");
1879         ret = AVERROR_EOF;
1880         goto fail;
1881     }
1882     /* If the playlist only contained playlists (Master Playlist),
1883      * parse each individual playlist. */
1884     if (c->n_playlists > 1 || c->playlists[0]->n_segments == 0) {
1885         for (i = 0; i < c->n_playlists; i++) {
1886             struct playlist *pls = c->playlists[i];
1887             pls->m3u8_hold_counters = 0;
1888             if ((ret = parse_playlist(c, pls->url, pls, NULL)) < 0) {
1889                 av_log(s, AV_LOG_WARNING, "parse_playlist error %s [%s]\n", av_err2str(ret), pls->url);
1890                 pls->broken = 1;
1891                 if (c->n_playlists > 1)
1892                     continue;
1893                 goto fail;
1894             }
1895         }
1896     }
1897
1898     for (i = 0; i < c->n_variants; i++) {
1899         if (c->variants[i]->playlists[0]->n_segments == 0) {
1900             av_log(s, AV_LOG_WARNING, "Empty segment [%s]\n", c->variants[i]->playlists[0]->url);
1901             c->variants[i]->playlists[0]->broken = 1;
1902         }
1903     }
1904
1905     /* If this isn't a live stream, calculate the total duration of the
1906      * stream. */
1907     if (c->variants[0]->playlists[0]->finished) {
1908         int64_t duration = 0;
1909         for (i = 0; i < c->variants[0]->playlists[0]->n_segments; i++)
1910             duration += c->variants[0]->playlists[0]->segments[i]->duration;
1911         s->duration = duration;
1912     }
1913
1914     /* Associate renditions with variants */
1915     for (i = 0; i < c->n_variants; i++) {
1916         struct variant *var = c->variants[i];
1917
1918         if (var->audio_group[0])
1919             add_renditions_to_variant(c, var, AVMEDIA_TYPE_AUDIO, var->audio_group);
1920         if (var->video_group[0])
1921             add_renditions_to_variant(c, var, AVMEDIA_TYPE_VIDEO, var->video_group);
1922         if (var->subtitles_group[0])
1923             add_renditions_to_variant(c, var, AVMEDIA_TYPE_SUBTITLE, var->subtitles_group);
1924     }
1925
1926     /* Create a program for each variant */
1927     for (i = 0; i < c->n_variants; i++) {
1928         struct variant *v = c->variants[i];
1929         AVProgram *program;
1930
1931         program = av_new_program(s, i);
1932         if (!program)
1933             goto fail;
1934         av_dict_set_int(&program->metadata, "variant_bitrate", v->bandwidth, 0);
1935     }
1936
1937     /* Select the starting segments */
1938     for (i = 0; i < c->n_playlists; i++) {
1939         struct playlist *pls = c->playlists[i];
1940
1941         if (pls->n_segments == 0)
1942             continue;
1943
1944         pls->cur_seq_no = select_cur_seq_no(c, pls);
1945         highest_cur_seq_no = FFMAX(highest_cur_seq_no, pls->cur_seq_no);
1946     }
1947
1948     /* Open the demuxer for each playlist */
1949     for (i = 0; i < c->n_playlists; i++) {
1950         struct playlist *pls = c->playlists[i];
1951         char *url;
1952         ff_const59 AVInputFormat *in_fmt = NULL;
1953
1954         if (!(pls->ctx = avformat_alloc_context())) {
1955             ret = AVERROR(ENOMEM);
1956             goto fail;
1957         }
1958
1959         if (pls->n_segments == 0)
1960             continue;
1961
1962         pls->index  = i;
1963         pls->needed = 1;
1964         pls->parent = s;
1965
1966         /*
1967          * If this is a live stream and this playlist looks like it is one segment
1968          * behind, try to sync it up so that every substream starts at the same
1969          * time position (so e.g. avformat_find_stream_info() will see packets from
1970          * all active streams within the first few seconds). This is not very generic,
1971          * though, as the sequence numbers are technically independent.
1972          */
1973         if (!pls->finished && pls->cur_seq_no == highest_cur_seq_no - 1 &&
1974             highest_cur_seq_no < pls->start_seq_no + pls->n_segments) {
1975             pls->cur_seq_no = highest_cur_seq_no;
1976         }
1977
1978         pls->read_buffer = av_malloc(INITIAL_BUFFER_SIZE);
1979         if (!pls->read_buffer){
1980             ret = AVERROR(ENOMEM);
1981             avformat_free_context(pls->ctx);
1982             pls->ctx = NULL;
1983             goto fail;
1984         }
1985         ffio_init_context(&pls->pb, pls->read_buffer, INITIAL_BUFFER_SIZE, 0, pls,
1986                           read_data, NULL, NULL);
1987         pls->ctx->probesize = s->probesize > 0 ? s->probesize : 1024 * 4;
1988         pls->ctx->max_analyze_duration = s->max_analyze_duration > 0 ? s->max_analyze_duration : 4 * AV_TIME_BASE;
1989         pls->ctx->interrupt_callback = s->interrupt_callback;
1990         url = av_strdup(pls->segments[0]->url);
1991         ret = av_probe_input_buffer(&pls->pb, &in_fmt, url, NULL, 0, 0);
1992         if (ret < 0) {
1993             /* Free the ctx - it isn't initialized properly at this point,
1994              * so avformat_close_input shouldn't be called. If
1995              * avformat_open_input fails below, it frees and zeros the
1996              * context, so it doesn't need any special treatment like this. */
1997             av_log(s, AV_LOG_ERROR, "Error when loading first segment '%s'\n", url);
1998             avformat_free_context(pls->ctx);
1999             pls->ctx = NULL;
2000             av_free(url);
2001             goto fail;
2002         }
2003         av_free(url);
2004         pls->ctx->pb       = &pls->pb;
2005         pls->ctx->io_open  = nested_io_open;
2006         pls->ctx->flags   |= s->flags & ~AVFMT_FLAG_CUSTOM_IO;
2007
2008         if ((ret = ff_copy_whiteblacklists(pls->ctx, s)) < 0)
2009             goto fail;
2010
2011         ret = avformat_open_input(&pls->ctx, pls->segments[0]->url, in_fmt, NULL);
2012         if (ret < 0)
2013             goto fail;
2014
2015         if (pls->id3_deferred_extra && pls->ctx->nb_streams == 1) {
2016             ff_id3v2_parse_apic(pls->ctx, pls->id3_deferred_extra);
2017             avformat_queue_attached_pictures(pls->ctx);
2018             ff_id3v2_parse_priv(pls->ctx, pls->id3_deferred_extra);
2019             ff_id3v2_free_extra_meta(&pls->id3_deferred_extra);
2020         }
2021
2022         if (pls->is_id3_timestamped == -1)
2023             av_log(s, AV_LOG_WARNING, "No expected HTTP requests have been made\n");
2024
2025         /*
2026          * For ID3 timestamped raw audio streams we need to detect the packet
2027          * durations to calculate timestamps in fill_timing_for_id3_timestamped_stream(),
2028          * but for other streams we can rely on our user calling avformat_find_stream_info()
2029          * on us if they want to.
2030          */
2031         if (pls->is_id3_timestamped || (pls->n_renditions > 0 && pls->renditions[0]->type == AVMEDIA_TYPE_AUDIO)) {
2032             ret = avformat_find_stream_info(pls->ctx, NULL);
2033             if (ret < 0)
2034                 goto fail;
2035         }
2036
2037         pls->has_noheader_flag = !!(pls->ctx->ctx_flags & AVFMTCTX_NOHEADER);
2038
2039         /* Create new AVStreams for each stream in this playlist */
2040         ret = update_streams_from_subdemuxer(s, pls);
2041         if (ret < 0)
2042             goto fail;
2043
2044         /*
2045          * Copy any metadata from playlist to main streams, but do not set
2046          * event flags.
2047          */
2048         if (pls->n_main_streams)
2049             av_dict_copy(&pls->main_streams[0]->metadata, pls->ctx->metadata, 0);
2050
2051         add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_AUDIO);
2052         add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_VIDEO);
2053         add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_SUBTITLE);
2054     }
2055
2056     update_noheader_flag(s);
2057
2058     return 0;
2059 fail:
2060     hls_close(s);
2061     return ret;
2062 }
2063
2064 static int recheck_discard_flags(AVFormatContext *s, int first)
2065 {
2066     HLSContext *c = s->priv_data;
2067     int i, changed = 0;
2068     int cur_needed;
2069
2070     /* Check if any new streams are needed */
2071     for (i = 0; i < c->n_playlists; i++) {
2072         struct playlist *pls = c->playlists[i];
2073
2074         cur_needed = playlist_needed(c->playlists[i]);
2075
2076         if (pls->broken) {
2077             continue;
2078         }
2079         if (cur_needed && !pls->needed) {
2080             pls->needed = 1;
2081             changed = 1;
2082             pls->cur_seq_no = select_cur_seq_no(c, pls);
2083             pls->pb.eof_reached = 0;
2084             if (c->cur_timestamp != AV_NOPTS_VALUE) {
2085                 /* catch up */
2086                 pls->seek_timestamp = c->cur_timestamp;
2087                 pls->seek_flags = AVSEEK_FLAG_ANY;
2088                 pls->seek_stream_index = -1;
2089             }
2090             av_log(s, AV_LOG_INFO, "Now receiving playlist %d, segment %"PRId64"\n", i, pls->cur_seq_no);
2091         } else if (first && !cur_needed && pls->needed) {
2092             ff_format_io_close(pls->parent, &pls->input);
2093             pls->input_read_done = 0;
2094             ff_format_io_close(pls->parent, &pls->input_next);
2095             pls->input_next_requested = 0;
2096             pls->needed = 0;
2097             changed = 1;
2098             av_log(s, AV_LOG_INFO, "No longer receiving playlist %d\n", i);
2099         }
2100     }
2101     return changed;
2102 }
2103
2104 static void fill_timing_for_id3_timestamped_stream(struct playlist *pls)
2105 {
2106     if (pls->id3_offset >= 0) {
2107         pls->pkt.dts = pls->id3_mpegts_timestamp +
2108                                  av_rescale_q(pls->id3_offset,
2109                                               pls->ctx->streams[pls->pkt.stream_index]->time_base,
2110                                               MPEG_TIME_BASE_Q);
2111         if (pls->pkt.duration)
2112             pls->id3_offset += pls->pkt.duration;
2113         else
2114             pls->id3_offset = -1;
2115     } else {
2116         /* there have been packets with unknown duration
2117          * since the last id3 tag, should not normally happen */
2118         pls->pkt.dts = AV_NOPTS_VALUE;
2119     }
2120
2121     if (pls->pkt.duration)
2122         pls->pkt.duration = av_rescale_q(pls->pkt.duration,
2123                                          pls->ctx->streams[pls->pkt.stream_index]->time_base,
2124                                          MPEG_TIME_BASE_Q);
2125
2126     pls->pkt.pts = AV_NOPTS_VALUE;
2127 }
2128
2129 static AVRational get_timebase(struct playlist *pls)
2130 {
2131     if (pls->is_id3_timestamped)
2132         return MPEG_TIME_BASE_Q;
2133
2134     return pls->ctx->streams[pls->pkt.stream_index]->time_base;
2135 }
2136
2137 static int compare_ts_with_wrapdetect(int64_t ts_a, struct playlist *pls_a,
2138                                       int64_t ts_b, struct playlist *pls_b)
2139 {
2140     int64_t scaled_ts_a = av_rescale_q(ts_a, get_timebase(pls_a), MPEG_TIME_BASE_Q);
2141     int64_t scaled_ts_b = av_rescale_q(ts_b, get_timebase(pls_b), MPEG_TIME_BASE_Q);
2142
2143     return av_compare_mod(scaled_ts_a, scaled_ts_b, 1LL << 33);
2144 }
2145
2146 static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
2147 {
2148     HLSContext *c = s->priv_data;
2149     int ret, i, minplaylist = -1;
2150
2151     recheck_discard_flags(s, c->first_packet);
2152     c->first_packet = 0;
2153
2154     for (i = 0; i < c->n_playlists; i++) {
2155         struct playlist *pls = c->playlists[i];
2156         /* Make sure we've got one buffered packet from each open playlist
2157          * stream */
2158         if (pls->needed && !pls->pkt.data) {
2159             while (1) {
2160                 int64_t ts_diff;
2161                 AVRational tb;
2162                 ret = av_read_frame(pls->ctx, &pls->pkt);
2163                 if (ret < 0) {
2164                     if (!avio_feof(&pls->pb) && ret != AVERROR_EOF)
2165                         return ret;
2166                     break;
2167                 } else {
2168                     /* stream_index check prevents matching picture attachments etc. */
2169                     if (pls->is_id3_timestamped && pls->pkt.stream_index == 0) {
2170                         /* audio elementary streams are id3 timestamped */
2171                         fill_timing_for_id3_timestamped_stream(pls);
2172                     }
2173
2174                     if (c->first_timestamp == AV_NOPTS_VALUE &&
2175                         pls->pkt.dts       != AV_NOPTS_VALUE)
2176                         c->first_timestamp = av_rescale_q(pls->pkt.dts,
2177                             get_timebase(pls), AV_TIME_BASE_Q);
2178                 }
2179
2180                 if (pls->seek_timestamp == AV_NOPTS_VALUE)
2181                     break;
2182
2183                 if (pls->seek_stream_index < 0 ||
2184                     pls->seek_stream_index == pls->pkt.stream_index) {
2185
2186                     if (pls->pkt.dts == AV_NOPTS_VALUE) {
2187                         pls->seek_timestamp = AV_NOPTS_VALUE;
2188                         break;
2189                     }
2190
2191                     tb = get_timebase(pls);
2192                     ts_diff = av_rescale_rnd(pls->pkt.dts, AV_TIME_BASE,
2193                                             tb.den, AV_ROUND_DOWN) -
2194                             pls->seek_timestamp;
2195                     if (ts_diff >= 0 && (pls->seek_flags  & AVSEEK_FLAG_ANY ||
2196                                         pls->pkt.flags & AV_PKT_FLAG_KEY)) {
2197                         pls->seek_timestamp = AV_NOPTS_VALUE;
2198                         break;
2199                     }
2200                 }
2201                 av_packet_unref(&pls->pkt);
2202             }
2203         }
2204         /* Check if this stream has the packet with the lowest dts */
2205         if (pls->pkt.data) {
2206             struct playlist *minpls = minplaylist < 0 ?
2207                                      NULL : c->playlists[minplaylist];
2208             if (minplaylist < 0) {
2209                 minplaylist = i;
2210             } else {
2211                 int64_t dts     =    pls->pkt.dts;
2212                 int64_t mindts  = minpls->pkt.dts;
2213
2214                 if (dts == AV_NOPTS_VALUE ||
2215                     (mindts != AV_NOPTS_VALUE && compare_ts_with_wrapdetect(dts, pls, mindts, minpls) < 0))
2216                     minplaylist = i;
2217             }
2218         }
2219     }
2220
2221     /* If we got a packet, return it */
2222     if (minplaylist >= 0) {
2223         struct playlist *pls = c->playlists[minplaylist];
2224         AVStream *ist;
2225         AVStream *st;
2226
2227         ret = update_streams_from_subdemuxer(s, pls);
2228         if (ret < 0) {
2229             av_packet_unref(&pls->pkt);
2230             return ret;
2231         }
2232
2233         // If sub-demuxer reports updated metadata, copy it to the first stream
2234         // and set its AVSTREAM_EVENT_FLAG_METADATA_UPDATED flag.
2235         if (pls->ctx->event_flags & AVFMT_EVENT_FLAG_METADATA_UPDATED) {
2236             if (pls->n_main_streams) {
2237                 st = pls->main_streams[0];
2238                 av_dict_copy(&st->metadata, pls->ctx->metadata, 0);
2239                 st->event_flags |= AVSTREAM_EVENT_FLAG_METADATA_UPDATED;
2240             }
2241             pls->ctx->event_flags &= ~AVFMT_EVENT_FLAG_METADATA_UPDATED;
2242         }
2243
2244         /* check if noheader flag has been cleared by the subdemuxer */
2245         if (pls->has_noheader_flag && !(pls->ctx->ctx_flags & AVFMTCTX_NOHEADER)) {
2246             pls->has_noheader_flag = 0;
2247             update_noheader_flag(s);
2248         }
2249
2250         if (pls->pkt.stream_index >= pls->n_main_streams) {
2251             av_log(s, AV_LOG_ERROR, "stream index inconsistency: index %d, %d main streams, %d subdemuxer streams\n",
2252                    pls->pkt.stream_index, pls->n_main_streams, pls->ctx->nb_streams);
2253             av_packet_unref(&pls->pkt);
2254             return AVERROR_BUG;
2255         }
2256
2257         ist = pls->ctx->streams[pls->pkt.stream_index];
2258         st = pls->main_streams[pls->pkt.stream_index];
2259
2260         av_packet_move_ref(pkt, &pls->pkt);
2261         pkt->stream_index = st->index;
2262
2263         if (pkt->dts != AV_NOPTS_VALUE)
2264             c->cur_timestamp = av_rescale_q(pkt->dts,
2265                                             ist->time_base,
2266                                             AV_TIME_BASE_Q);
2267
2268         /* There may be more situations where this would be useful, but this at least
2269          * handles newly probed codecs properly (i.e. request_probe by mpegts). */
2270         if (ist->codecpar->codec_id != st->codecpar->codec_id) {
2271             ret = set_stream_info_from_input_stream(st, pls, ist);
2272             if (ret < 0) {
2273                 return ret;
2274             }
2275         }
2276
2277         return 0;
2278     }
2279     return AVERROR_EOF;
2280 }
2281
2282 static int hls_read_seek(AVFormatContext *s, int stream_index,
2283                                int64_t timestamp, int flags)
2284 {
2285     HLSContext *c = s->priv_data;
2286     struct playlist *seek_pls = NULL;
2287     int i, j;
2288     int stream_subdemuxer_index;
2289     int64_t first_timestamp, seek_timestamp, duration;
2290     int64_t seq_no;
2291
2292     if ((flags & AVSEEK_FLAG_BYTE) || (c->ctx->ctx_flags & AVFMTCTX_UNSEEKABLE))
2293         return AVERROR(ENOSYS);
2294
2295     first_timestamp = c->first_timestamp == AV_NOPTS_VALUE ?
2296                       0 : c->first_timestamp;
2297
2298     seek_timestamp = av_rescale_rnd(timestamp, AV_TIME_BASE,
2299                                     s->streams[stream_index]->time_base.den,
2300                                     flags & AVSEEK_FLAG_BACKWARD ?
2301                                     AV_ROUND_DOWN : AV_ROUND_UP);
2302
2303     duration = s->duration == AV_NOPTS_VALUE ?
2304                0 : s->duration;
2305
2306     if (0 < duration && duration < seek_timestamp - first_timestamp)
2307         return AVERROR(EIO);
2308
2309     /* find the playlist with the specified stream */
2310     for (i = 0; i < c->n_playlists; i++) {
2311         struct playlist *pls = c->playlists[i];
2312         for (j = 0; j < pls->n_main_streams; j++) {
2313             if (pls->main_streams[j] == s->streams[stream_index]) {
2314                 seek_pls = pls;
2315                 stream_subdemuxer_index = j;
2316                 break;
2317             }
2318         }
2319     }
2320     /* check if the timestamp is valid for the playlist with the
2321      * specified stream index */
2322     if (!seek_pls || !find_timestamp_in_playlist(c, seek_pls, seek_timestamp, &seq_no))
2323         return AVERROR(EIO);
2324
2325     /* set segment now so we do not need to search again below */
2326     seek_pls->cur_seq_no = seq_no;
2327     seek_pls->seek_stream_index = stream_subdemuxer_index;
2328
2329     for (i = 0; i < c->n_playlists; i++) {
2330         /* Reset reading */
2331         struct playlist *pls = c->playlists[i];
2332         ff_format_io_close(pls->parent, &pls->input);
2333         pls->input_read_done = 0;
2334         ff_format_io_close(pls->parent, &pls->input_next);
2335         pls->input_next_requested = 0;
2336         av_packet_unref(&pls->pkt);
2337         pls->pb.eof_reached = 0;
2338         /* Clear any buffered data */
2339         pls->pb.buf_end = pls->pb.buf_ptr = pls->pb.buffer;
2340         /* Reset the pos, to let the mpegts demuxer know we've seeked. */
2341         pls->pb.pos = 0;
2342         /* Flush the packet queue of the subdemuxer. */
2343         ff_read_frame_flush(pls->ctx);
2344
2345         pls->seek_timestamp = seek_timestamp;
2346         pls->seek_flags = flags;
2347
2348         if (pls != seek_pls) {
2349             /* set closest segment seq_no for playlists not handled above */
2350             find_timestamp_in_playlist(c, pls, seek_timestamp, &pls->cur_seq_no);
2351             /* seek the playlist to the given position without taking
2352              * keyframes into account since this playlist does not have the
2353              * specified stream where we should look for the keyframes */
2354             pls->seek_stream_index = -1;
2355             pls->seek_flags |= AVSEEK_FLAG_ANY;
2356         }
2357     }
2358
2359     c->cur_timestamp = seek_timestamp;
2360
2361     return 0;
2362 }
2363
2364 static int hls_probe(const AVProbeData *p)
2365 {
2366     /* Require #EXTM3U at the start, and either one of the ones below
2367      * somewhere for a proper match. */
2368     if (strncmp(p->buf, "#EXTM3U", 7))
2369         return 0;
2370
2371     if (strstr(p->buf, "#EXT-X-STREAM-INF:")     ||
2372         strstr(p->buf, "#EXT-X-TARGETDURATION:") ||
2373         strstr(p->buf, "#EXT-X-MEDIA-SEQUENCE:"))
2374         return AVPROBE_SCORE_MAX;
2375     return 0;
2376 }
2377
2378 #define OFFSET(x) offsetof(HLSContext, x)
2379 #define FLAGS AV_OPT_FLAG_DECODING_PARAM
2380 static const AVOption hls_options[] = {
2381     {"live_start_index", "segment index to start live streams at (negative values are from the end)",
2382         OFFSET(live_start_index), AV_OPT_TYPE_INT, {.i64 = -3}, INT_MIN, INT_MAX, FLAGS},
2383     {"allowed_extensions", "List of file extensions that hls is allowed to access",
2384         OFFSET(allowed_extensions), AV_OPT_TYPE_STRING,
2385         {.str = "3gp,aac,avi,ac3,eac3,flac,mkv,m3u8,m4a,m4s,m4v,mpg,mov,mp2,mp3,mp4,mpeg,mpegts,ogg,ogv,oga,ts,vob,wav"},
2386         INT_MIN, INT_MAX, FLAGS},
2387     {"max_reload", "Maximum number of times a insufficient list is attempted to be reloaded",
2388         OFFSET(max_reload), AV_OPT_TYPE_INT, {.i64 = 1000}, 0, INT_MAX, FLAGS},
2389     {"m3u8_hold_counters", "The maximum number of times to load m3u8 when it refreshes without new segments",
2390         OFFSET(m3u8_hold_counters), AV_OPT_TYPE_INT, {.i64 = 1000}, 0, INT_MAX, FLAGS},
2391     {"http_persistent", "Use persistent HTTP connections",
2392         OFFSET(http_persistent), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, FLAGS },
2393     {"http_multiple", "Use multiple HTTP connections for fetching segments",
2394         OFFSET(http_multiple), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, FLAGS},
2395     {"http_seekable", "Use HTTP partial requests, 0 = disable, 1 = enable, -1 = auto",
2396         OFFSET(http_seekable), AV_OPT_TYPE_BOOL, { .i64 = -1}, -1, 1, FLAGS},
2397     {NULL}
2398 };
2399
2400 static const AVClass hls_class = {
2401     .class_name = "hls demuxer",
2402     .item_name  = av_default_item_name,
2403     .option     = hls_options,
2404     .version    = LIBAVUTIL_VERSION_INT,
2405 };
2406
2407 AVInputFormat ff_hls_demuxer = {
2408     .name           = "hls",
2409     .long_name      = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming"),
2410     .priv_class     = &hls_class,
2411     .priv_data_size = sizeof(HLSContext),
2412     .flags          = AVFMT_NOGENSEARCH | AVFMT_TS_DISCONT,
2413     .read_probe     = hls_probe,
2414     .read_header    = hls_read_header,
2415     .read_packet    = hls_read_packet,
2416     .read_close     = hls_close,
2417     .read_seek      = hls_read_seek,
2418 };