]> git.sesse.net Git - ffmpeg/blob - libavformat/hls.c
avformat/hls: change sequence number type to int64_t
[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             ret = s->io_open(s, pb, url, AVIO_FLAG_READ, &tmp);
681         }
682     } else {
683         ret = s->io_open(s, pb, url, AVIO_FLAG_READ, &tmp);
684     }
685     if (ret >= 0) {
686         // update cookies on http response with setcookies.
687         char *new_cookies = NULL;
688
689         if (!(s->flags & AVFMT_FLAG_CUSTOM_IO))
690             av_opt_get(*pb, "cookies", AV_OPT_SEARCH_CHILDREN, (uint8_t**)&new_cookies);
691
692         if (new_cookies)
693             av_dict_set(opts, "cookies", new_cookies, AV_DICT_DONT_STRDUP_VAL);
694     }
695
696     av_dict_free(&tmp);
697
698     if (is_http_out)
699         *is_http_out = is_http;
700
701     return ret;
702 }
703
704 static int parse_playlist(HLSContext *c, const char *url,
705                           struct playlist *pls, AVIOContext *in)
706 {
707     int ret = 0, is_segment = 0, is_variant = 0;
708     int64_t duration = 0;
709     enum KeyType key_type = KEY_NONE;
710     uint8_t iv[16] = "";
711     int has_iv = 0;
712     char key[MAX_URL_SIZE] = "";
713     char line[MAX_URL_SIZE];
714     const char *ptr;
715     int close_in = 0;
716     int64_t seg_offset = 0;
717     int64_t seg_size = -1;
718     uint8_t *new_url = NULL;
719     struct variant_info variant_info;
720     char tmp_str[MAX_URL_SIZE];
721     struct segment *cur_init_section = NULL;
722     int is_http = av_strstart(url, "http", NULL);
723     struct segment **prev_segments = NULL;
724     int prev_n_segments = 0;
725     int64_t prev_start_seq_no = -1;
726
727     if (is_http && !in && c->http_persistent && c->playlist_pb) {
728         in = c->playlist_pb;
729         ret = open_url_keepalive(c->ctx, &c->playlist_pb, url, NULL);
730         if (ret == AVERROR_EXIT) {
731             return ret;
732         } else if (ret < 0) {
733             if (ret != AVERROR_EOF)
734                 av_log(c->ctx, AV_LOG_WARNING,
735                     "keepalive request failed for '%s' with error: '%s' when parsing playlist\n",
736                     url, av_err2str(ret));
737             in = NULL;
738         }
739     }
740
741     if (!in) {
742         AVDictionary *opts = NULL;
743         av_dict_copy(&opts, c->avio_opts, 0);
744
745         if (c->http_persistent)
746             av_dict_set(&opts, "multiple_requests", "1", 0);
747
748         ret = c->ctx->io_open(c->ctx, &in, url, AVIO_FLAG_READ, &opts);
749         av_dict_free(&opts);
750         if (ret < 0)
751             return ret;
752
753         if (is_http && c->http_persistent)
754             c->playlist_pb = in;
755         else
756             close_in = 1;
757     }
758
759     if (av_opt_get(in, "location", AV_OPT_SEARCH_CHILDREN, &new_url) >= 0)
760         url = new_url;
761
762     ff_get_chomp_line(in, line, sizeof(line));
763     if (strcmp(line, "#EXTM3U")) {
764         ret = AVERROR_INVALIDDATA;
765         goto fail;
766     }
767
768     if (pls) {
769         prev_start_seq_no = pls->start_seq_no;
770         prev_segments = pls->segments;
771         prev_n_segments = pls->n_segments;
772         pls->segments = NULL;
773         pls->n_segments = 0;
774
775         pls->finished = 0;
776         pls->type = PLS_TYPE_UNSPECIFIED;
777     }
778     while (!avio_feof(in)) {
779         ff_get_chomp_line(in, line, sizeof(line));
780         if (av_strstart(line, "#EXT-X-STREAM-INF:", &ptr)) {
781             is_variant = 1;
782             memset(&variant_info, 0, sizeof(variant_info));
783             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_variant_args,
784                                &variant_info);
785         } else if (av_strstart(line, "#EXT-X-KEY:", &ptr)) {
786             struct key_info info = {{0}};
787             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_key_args,
788                                &info);
789             key_type = KEY_NONE;
790             has_iv = 0;
791             if (!strcmp(info.method, "AES-128"))
792                 key_type = KEY_AES_128;
793             if (!strcmp(info.method, "SAMPLE-AES"))
794                 key_type = KEY_SAMPLE_AES;
795             if (!strncmp(info.iv, "0x", 2) || !strncmp(info.iv, "0X", 2)) {
796                 ff_hex_to_data(iv, info.iv + 2);
797                 has_iv = 1;
798             }
799             av_strlcpy(key, info.uri, sizeof(key));
800         } else if (av_strstart(line, "#EXT-X-MEDIA:", &ptr)) {
801             struct rendition_info info = {{0}};
802             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_rendition_args,
803                                &info);
804             new_rendition(c, &info, url);
805         } else if (av_strstart(line, "#EXT-X-TARGETDURATION:", &ptr)) {
806             ret = ensure_playlist(c, &pls, url);
807             if (ret < 0)
808                 goto fail;
809             pls->target_duration = strtoll(ptr, NULL, 10) * AV_TIME_BASE;
810         } else if (av_strstart(line, "#EXT-X-MEDIA-SEQUENCE:", &ptr)) {
811             uint64_t seq_no;
812             ret = ensure_playlist(c, &pls, url);
813             if (ret < 0)
814                 goto fail;
815             seq_no = strtoull(ptr, NULL, 10);
816             if (seq_no > INT64_MAX) {
817                 av_log(c->ctx, AV_LOG_DEBUG, "MEDIA-SEQUENCE higher than "
818                         "INT64_MAX, mask out the highest bit\n");
819                 seq_no &= INT64_MAX;
820             }
821             pls->start_seq_no = seq_no;
822         } else if (av_strstart(line, "#EXT-X-PLAYLIST-TYPE:", &ptr)) {
823             ret = ensure_playlist(c, &pls, url);
824             if (ret < 0)
825                 goto fail;
826             if (!strcmp(ptr, "EVENT"))
827                 pls->type = PLS_TYPE_EVENT;
828             else if (!strcmp(ptr, "VOD"))
829                 pls->type = PLS_TYPE_VOD;
830         } else if (av_strstart(line, "#EXT-X-MAP:", &ptr)) {
831             struct init_section_info info = {{0}};
832             ret = ensure_playlist(c, &pls, url);
833             if (ret < 0)
834                 goto fail;
835             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_init_section_args,
836                                &info);
837             cur_init_section = new_init_section(pls, &info, url);
838             cur_init_section->key_type = key_type;
839             if (has_iv) {
840                 memcpy(cur_init_section->iv, iv, sizeof(iv));
841             } else {
842                 int64_t seq = pls->start_seq_no + pls->n_segments;
843                 memset(cur_init_section->iv, 0, sizeof(cur_init_section->iv));
844                 AV_WB64(cur_init_section->iv + 8, seq);
845             }
846
847             if (key_type != KEY_NONE) {
848                 ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, key);
849                 if (!tmp_str[0]) {
850                     av_free(cur_init_section);
851                     ret = AVERROR_INVALIDDATA;
852                     goto fail;
853                 }
854                 cur_init_section->key = av_strdup(tmp_str);
855                 if (!cur_init_section->key) {
856                     av_free(cur_init_section);
857                     ret = AVERROR(ENOMEM);
858                     goto fail;
859                 }
860             } else {
861                 cur_init_section->key = NULL;
862             }
863
864         } else if (av_strstart(line, "#EXT-X-ENDLIST", &ptr)) {
865             if (pls)
866                 pls->finished = 1;
867         } else if (av_strstart(line, "#EXTINF:", &ptr)) {
868             is_segment = 1;
869             duration   = atof(ptr) * AV_TIME_BASE;
870         } else if (av_strstart(line, "#EXT-X-BYTERANGE:", &ptr)) {
871             seg_size = strtoll(ptr, NULL, 10);
872             ptr = strchr(ptr, '@');
873             if (ptr)
874                 seg_offset = strtoll(ptr+1, NULL, 10);
875         } else if (av_strstart(line, "#", NULL)) {
876             av_log(c->ctx, AV_LOG_INFO, "Skip ('%s')\n", line);
877             continue;
878         } else if (line[0]) {
879             if (is_variant) {
880                 if (!new_variant(c, &variant_info, line, url)) {
881                     ret = AVERROR(ENOMEM);
882                     goto fail;
883                 }
884                 is_variant = 0;
885             }
886             if (is_segment) {
887                 struct segment *seg;
888                 ret = ensure_playlist(c, &pls, url);
889                 if (ret < 0)
890                     goto fail;
891                 seg = av_malloc(sizeof(struct segment));
892                 if (!seg) {
893                     ret = AVERROR(ENOMEM);
894                     goto fail;
895                 }
896                 if (has_iv) {
897                     memcpy(seg->iv, iv, sizeof(iv));
898                 } else {
899                     int64_t seq = pls->start_seq_no + pls->n_segments;
900                     memset(seg->iv, 0, sizeof(seg->iv));
901                     AV_WB64(seg->iv + 8, seq);
902                 }
903
904                 if (key_type != KEY_NONE) {
905                     ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, key);
906                     if (!tmp_str[0]) {
907                         ret = AVERROR_INVALIDDATA;
908                         av_free(seg);
909                         goto fail;
910                     }
911                     seg->key = av_strdup(tmp_str);
912                     if (!seg->key) {
913                         av_free(seg);
914                         ret = AVERROR(ENOMEM);
915                         goto fail;
916                     }
917                 } else {
918                     seg->key = NULL;
919                 }
920
921                 ff_make_absolute_url(tmp_str, sizeof(tmp_str), url, line);
922                 if (!tmp_str[0]) {
923                     ret = AVERROR_INVALIDDATA;
924                     if (seg->key)
925                         av_free(seg->key);
926                     av_free(seg);
927                     goto fail;
928                 }
929                 seg->url = av_strdup(tmp_str);
930                 if (!seg->url) {
931                     av_free(seg->key);
932                     av_free(seg);
933                     ret = AVERROR(ENOMEM);
934                     goto fail;
935                 }
936
937                 if (duration < 0.001 * AV_TIME_BASE) {
938                     av_log(c->ctx, AV_LOG_WARNING, "Cannot get correct #EXTINF value of segment %s,"
939                                     " set to default value to 1ms.\n", seg->url);
940                     duration = 0.001 * AV_TIME_BASE;
941                 }
942                 seg->duration = duration;
943                 seg->key_type = key_type;
944                 dynarray_add(&pls->segments, &pls->n_segments, seg);
945                 is_segment = 0;
946
947                 seg->size = seg_size;
948                 if (seg_size >= 0) {
949                     seg->url_offset = seg_offset;
950                     seg_offset += seg_size;
951                     seg_size = -1;
952                 } else {
953                     seg->url_offset = 0;
954                     seg_offset = 0;
955                 }
956
957                 seg->init_section = cur_init_section;
958             }
959         }
960     }
961     if (prev_segments) {
962         if (pls->start_seq_no > prev_start_seq_no && c->first_timestamp != AV_NOPTS_VALUE) {
963             int64_t prev_timestamp = c->first_timestamp;
964             int i;
965             int64_t diff = pls->start_seq_no - prev_start_seq_no;
966             for (i = 0; i < prev_n_segments && i < diff; i++) {
967                 c->first_timestamp += prev_segments[i]->duration;
968             }
969             av_log(c->ctx, AV_LOG_DEBUG, "Media sequence change (%"PRId64" -> %"PRId64")"
970                    " reflected in first_timestamp: %"PRId64" -> %"PRId64"\n",
971                    prev_start_seq_no, pls->start_seq_no,
972                    prev_timestamp, c->first_timestamp);
973         } else if (pls->start_seq_no < prev_start_seq_no) {
974             av_log(c->ctx, AV_LOG_WARNING, "Media sequence changed unexpectedly: %"PRId64" -> %"PRId64"\n",
975                    prev_start_seq_no, pls->start_seq_no);
976         }
977         free_segment_dynarray(prev_segments, prev_n_segments);
978         av_freep(&prev_segments);
979     }
980     if (pls)
981         pls->last_load_time = av_gettime_relative();
982
983 fail:
984     av_free(new_url);
985     if (close_in)
986         ff_format_io_close(c->ctx, &in);
987     c->ctx->ctx_flags = c->ctx->ctx_flags & ~(unsigned)AVFMTCTX_UNSEEKABLE;
988     if (!c->n_variants || !c->variants[0]->n_playlists ||
989         !(c->variants[0]->playlists[0]->finished ||
990           c->variants[0]->playlists[0]->type == PLS_TYPE_EVENT))
991         c->ctx->ctx_flags |= AVFMTCTX_UNSEEKABLE;
992     return ret;
993 }
994
995 static struct segment *current_segment(struct playlist *pls)
996 {
997     return pls->segments[pls->cur_seq_no - pls->start_seq_no];
998 }
999
1000 static struct segment *next_segment(struct playlist *pls)
1001 {
1002     int64_t n = pls->cur_seq_no - pls->start_seq_no + 1;
1003     if (n >= pls->n_segments)
1004         return NULL;
1005     return pls->segments[n];
1006 }
1007
1008 static int read_from_url(struct playlist *pls, struct segment *seg,
1009                          uint8_t *buf, int buf_size)
1010 {
1011     int ret;
1012
1013      /* limit read if the segment was only a part of a file */
1014     if (seg->size >= 0)
1015         buf_size = FFMIN(buf_size, seg->size - pls->cur_seg_offset);
1016
1017     ret = avio_read(pls->input, buf, buf_size);
1018     if (ret > 0)
1019         pls->cur_seg_offset += ret;
1020
1021     return ret;
1022 }
1023
1024 /* Parse the raw ID3 data and pass contents to caller */
1025 static void parse_id3(AVFormatContext *s, AVIOContext *pb,
1026                       AVDictionary **metadata, int64_t *dts,
1027                       ID3v2ExtraMetaAPIC **apic, ID3v2ExtraMeta **extra_meta)
1028 {
1029     static const char id3_priv_owner_ts[] = "com.apple.streaming.transportStreamTimestamp";
1030     ID3v2ExtraMeta *meta;
1031
1032     ff_id3v2_read_dict(pb, metadata, ID3v2_DEFAULT_MAGIC, extra_meta);
1033     for (meta = *extra_meta; meta; meta = meta->next) {
1034         if (!strcmp(meta->tag, "PRIV")) {
1035             ID3v2ExtraMetaPRIV *priv = &meta->data.priv;
1036             if (priv->datasize == 8 && !strcmp(priv->owner, id3_priv_owner_ts)) {
1037                 /* 33-bit MPEG timestamp */
1038                 int64_t ts = AV_RB64(priv->data);
1039                 av_log(s, AV_LOG_DEBUG, "HLS ID3 audio timestamp %"PRId64"\n", ts);
1040                 if ((ts & ~((1ULL << 33) - 1)) == 0)
1041                     *dts = ts;
1042                 else
1043                     av_log(s, AV_LOG_ERROR, "Invalid HLS ID3 audio timestamp %"PRId64"\n", ts);
1044             }
1045         } else if (!strcmp(meta->tag, "APIC") && apic)
1046             *apic = &meta->data.apic;
1047     }
1048 }
1049
1050 /* Check if the ID3 metadata contents have changed */
1051 static int id3_has_changed_values(struct playlist *pls, AVDictionary *metadata,
1052                                   ID3v2ExtraMetaAPIC *apic)
1053 {
1054     AVDictionaryEntry *entry = NULL;
1055     AVDictionaryEntry *oldentry;
1056     /* check that no keys have changed values */
1057     while ((entry = av_dict_get(metadata, "", entry, AV_DICT_IGNORE_SUFFIX))) {
1058         oldentry = av_dict_get(pls->id3_initial, entry->key, NULL, AV_DICT_MATCH_CASE);
1059         if (!oldentry || strcmp(oldentry->value, entry->value) != 0)
1060             return 1;
1061     }
1062
1063     /* check if apic appeared */
1064     if (apic && (pls->ctx->nb_streams != 2 || !pls->ctx->streams[1]->attached_pic.data))
1065         return 1;
1066
1067     if (apic) {
1068         int size = pls->ctx->streams[1]->attached_pic.size;
1069         if (size != apic->buf->size - AV_INPUT_BUFFER_PADDING_SIZE)
1070             return 1;
1071
1072         if (memcmp(apic->buf->data, pls->ctx->streams[1]->attached_pic.data, size) != 0)
1073             return 1;
1074     }
1075
1076     return 0;
1077 }
1078
1079 /* Parse ID3 data and handle the found data */
1080 static void handle_id3(AVIOContext *pb, struct playlist *pls)
1081 {
1082     AVDictionary *metadata = NULL;
1083     ID3v2ExtraMetaAPIC *apic = NULL;
1084     ID3v2ExtraMeta *extra_meta = NULL;
1085     int64_t timestamp = AV_NOPTS_VALUE;
1086
1087     parse_id3(pls->ctx, pb, &metadata, &timestamp, &apic, &extra_meta);
1088
1089     if (timestamp != AV_NOPTS_VALUE) {
1090         pls->id3_mpegts_timestamp = timestamp;
1091         pls->id3_offset = 0;
1092     }
1093
1094     if (!pls->id3_found) {
1095         /* initial ID3 tags */
1096         av_assert0(!pls->id3_deferred_extra);
1097         pls->id3_found = 1;
1098
1099         /* get picture attachment and set text metadata */
1100         if (pls->ctx->nb_streams)
1101             ff_id3v2_parse_apic(pls->ctx, extra_meta);
1102         else
1103             /* demuxer not yet opened, defer picture attachment */
1104             pls->id3_deferred_extra = extra_meta;
1105
1106         ff_id3v2_parse_priv_dict(&metadata, extra_meta);
1107         av_dict_copy(&pls->ctx->metadata, metadata, 0);
1108         pls->id3_initial = metadata;
1109
1110     } else {
1111         if (!pls->id3_changed && id3_has_changed_values(pls, metadata, apic)) {
1112             avpriv_report_missing_feature(pls->parent, "Changing ID3 metadata in HLS audio elementary stream");
1113             pls->id3_changed = 1;
1114         }
1115         av_dict_free(&metadata);
1116     }
1117
1118     if (!pls->id3_deferred_extra)
1119         ff_id3v2_free_extra_meta(&extra_meta);
1120 }
1121
1122 static void intercept_id3(struct playlist *pls, uint8_t *buf,
1123                          int buf_size, int *len)
1124 {
1125     /* intercept id3 tags, we do not want to pass them to the raw
1126      * demuxer on all segment switches */
1127     int bytes;
1128     int id3_buf_pos = 0;
1129     int fill_buf = 0;
1130     struct segment *seg = current_segment(pls);
1131
1132     /* gather all the id3 tags */
1133     while (1) {
1134         /* see if we can retrieve enough data for ID3 header */
1135         if (*len < ID3v2_HEADER_SIZE && buf_size >= ID3v2_HEADER_SIZE) {
1136             bytes = read_from_url(pls, seg, buf + *len, ID3v2_HEADER_SIZE - *len);
1137             if (bytes > 0) {
1138
1139                 if (bytes == ID3v2_HEADER_SIZE - *len)
1140                     /* no EOF yet, so fill the caller buffer again after
1141                      * we have stripped the ID3 tags */
1142                     fill_buf = 1;
1143
1144                 *len += bytes;
1145
1146             } else if (*len <= 0) {
1147                 /* error/EOF */
1148                 *len = bytes;
1149                 fill_buf = 0;
1150             }
1151         }
1152
1153         if (*len < ID3v2_HEADER_SIZE)
1154             break;
1155
1156         if (ff_id3v2_match(buf, ID3v2_DEFAULT_MAGIC)) {
1157             int64_t maxsize = seg->size >= 0 ? seg->size : 1024*1024;
1158             int taglen = ff_id3v2_tag_len(buf);
1159             int tag_got_bytes = FFMIN(taglen, *len);
1160             int remaining = taglen - tag_got_bytes;
1161
1162             if (taglen > maxsize) {
1163                 av_log(pls->parent, AV_LOG_ERROR, "Too large HLS ID3 tag (%d > %"PRId64" bytes)\n",
1164                        taglen, maxsize);
1165                 break;
1166             }
1167
1168             /*
1169              * Copy the id3 tag to our temporary id3 buffer.
1170              * We could read a small id3 tag directly without memcpy, but
1171              * we would still need to copy the large tags, and handling
1172              * both of those cases together with the possibility for multiple
1173              * tags would make the handling a bit complex.
1174              */
1175             pls->id3_buf = av_fast_realloc(pls->id3_buf, &pls->id3_buf_size, id3_buf_pos + taglen);
1176             if (!pls->id3_buf)
1177                 break;
1178             memcpy(pls->id3_buf + id3_buf_pos, buf, tag_got_bytes);
1179             id3_buf_pos += tag_got_bytes;
1180
1181             /* strip the intercepted bytes */
1182             *len -= tag_got_bytes;
1183             memmove(buf, buf + tag_got_bytes, *len);
1184             av_log(pls->parent, AV_LOG_DEBUG, "Stripped %d HLS ID3 bytes\n", tag_got_bytes);
1185
1186             if (remaining > 0) {
1187                 /* read the rest of the tag in */
1188                 if (read_from_url(pls, seg, pls->id3_buf + id3_buf_pos, remaining) != remaining)
1189                     break;
1190                 id3_buf_pos += remaining;
1191                 av_log(pls->parent, AV_LOG_DEBUG, "Stripped additional %d HLS ID3 bytes\n", remaining);
1192             }
1193
1194         } else {
1195             /* no more ID3 tags */
1196             break;
1197         }
1198     }
1199
1200     /* re-fill buffer for the caller unless EOF */
1201     if (*len >= 0 && (fill_buf || *len == 0)) {
1202         bytes = read_from_url(pls, seg, buf + *len, buf_size - *len);
1203
1204         /* ignore error if we already had some data */
1205         if (bytes >= 0)
1206             *len += bytes;
1207         else if (*len == 0)
1208             *len = bytes;
1209     }
1210
1211     if (pls->id3_buf) {
1212         /* Now parse all the ID3 tags */
1213         AVIOContext id3ioctx;
1214         ffio_init_context(&id3ioctx, pls->id3_buf, id3_buf_pos, 0, NULL, NULL, NULL, NULL);
1215         handle_id3(&id3ioctx, pls);
1216     }
1217
1218     if (pls->is_id3_timestamped == -1)
1219         pls->is_id3_timestamped = (pls->id3_mpegts_timestamp != AV_NOPTS_VALUE);
1220 }
1221
1222 static int open_input(HLSContext *c, struct playlist *pls, struct segment *seg, AVIOContext **in)
1223 {
1224     AVDictionary *opts = NULL;
1225     int ret;
1226     int is_http = 0;
1227
1228     if (c->http_persistent)
1229         av_dict_set(&opts, "multiple_requests", "1", 0);
1230
1231     if (seg->size >= 0) {
1232         /* try to restrict the HTTP request to the part we want
1233          * (if this is in fact a HTTP request) */
1234         av_dict_set_int(&opts, "offset", seg->url_offset, 0);
1235         av_dict_set_int(&opts, "end_offset", seg->url_offset + seg->size, 0);
1236     }
1237
1238     av_log(pls->parent, AV_LOG_VERBOSE, "HLS request for url '%s', offset %"PRId64", playlist %d\n",
1239            seg->url, seg->url_offset, pls->index);
1240
1241     if (seg->key_type == KEY_NONE) {
1242         ret = open_url(pls->parent, in, seg->url, &c->avio_opts, opts, &is_http);
1243     } else if (seg->key_type == KEY_AES_128) {
1244         char iv[33], key[33], url[MAX_URL_SIZE];
1245         if (strcmp(seg->key, pls->key_url)) {
1246             AVIOContext *pb = NULL;
1247             if (open_url(pls->parent, &pb, seg->key, &c->avio_opts, opts, NULL) == 0) {
1248                 ret = avio_read(pb, pls->key, sizeof(pls->key));
1249                 if (ret != sizeof(pls->key)) {
1250                     av_log(pls->parent, AV_LOG_ERROR, "Unable to read key file %s\n",
1251                            seg->key);
1252                 }
1253                 ff_format_io_close(pls->parent, &pb);
1254             } else {
1255                 av_log(pls->parent, AV_LOG_ERROR, "Unable to open key file %s\n",
1256                        seg->key);
1257             }
1258             av_strlcpy(pls->key_url, seg->key, sizeof(pls->key_url));
1259         }
1260         ff_data_to_hex(iv, seg->iv, sizeof(seg->iv), 0);
1261         ff_data_to_hex(key, pls->key, sizeof(pls->key), 0);
1262         iv[32] = key[32] = '\0';
1263         if (strstr(seg->url, "://"))
1264             snprintf(url, sizeof(url), "crypto+%s", seg->url);
1265         else
1266             snprintf(url, sizeof(url), "crypto:%s", seg->url);
1267
1268         av_dict_set(&opts, "key", key, 0);
1269         av_dict_set(&opts, "iv", iv, 0);
1270
1271         ret = open_url(pls->parent, in, url, &c->avio_opts, opts, &is_http);
1272         if (ret < 0) {
1273             goto cleanup;
1274         }
1275         ret = 0;
1276     } else if (seg->key_type == KEY_SAMPLE_AES) {
1277         av_log(pls->parent, AV_LOG_ERROR,
1278                "SAMPLE-AES encryption is not supported yet\n");
1279         ret = AVERROR_PATCHWELCOME;
1280     }
1281     else
1282       ret = AVERROR(ENOSYS);
1283
1284     /* Seek to the requested position. If this was a HTTP request, the offset
1285      * should already be where want it to, but this allows e.g. local testing
1286      * without a HTTP server.
1287      *
1288      * This is not done for HTTP at all as avio_seek() does internal bookkeeping
1289      * of file offset which is out-of-sync with the actual offset when "offset"
1290      * AVOption is used with http protocol, causing the seek to not be a no-op
1291      * as would be expected. Wrong offset received from the server will not be
1292      * noticed without the call, though.
1293      */
1294     if (ret == 0 && !is_http && seg->url_offset) {
1295         int64_t seekret = avio_seek(*in, seg->url_offset, SEEK_SET);
1296         if (seekret < 0) {
1297             av_log(pls->parent, AV_LOG_ERROR, "Unable to seek to offset %"PRId64" of HLS segment '%s'\n", seg->url_offset, seg->url);
1298             ret = seekret;
1299             ff_format_io_close(pls->parent, in);
1300         }
1301     }
1302
1303 cleanup:
1304     av_dict_free(&opts);
1305     pls->cur_seg_offset = 0;
1306     return ret;
1307 }
1308
1309 static int update_init_section(struct playlist *pls, struct segment *seg)
1310 {
1311     static const int max_init_section_size = 1024*1024;
1312     HLSContext *c = pls->parent->priv_data;
1313     int64_t sec_size;
1314     int64_t urlsize;
1315     int ret;
1316
1317     if (seg->init_section == pls->cur_init_section)
1318         return 0;
1319
1320     pls->cur_init_section = NULL;
1321
1322     if (!seg->init_section)
1323         return 0;
1324
1325     ret = open_input(c, pls, seg->init_section, &pls->input);
1326     if (ret < 0) {
1327         av_log(pls->parent, AV_LOG_WARNING,
1328                "Failed to open an initialization section in playlist %d\n",
1329                pls->index);
1330         return ret;
1331     }
1332
1333     if (seg->init_section->size >= 0)
1334         sec_size = seg->init_section->size;
1335     else if ((urlsize = avio_size(pls->input)) >= 0)
1336         sec_size = urlsize;
1337     else
1338         sec_size = max_init_section_size;
1339
1340     av_log(pls->parent, AV_LOG_DEBUG,
1341            "Downloading an initialization section of size %"PRId64"\n",
1342            sec_size);
1343
1344     sec_size = FFMIN(sec_size, max_init_section_size);
1345
1346     av_fast_malloc(&pls->init_sec_buf, &pls->init_sec_buf_size, sec_size);
1347
1348     ret = read_from_url(pls, seg->init_section, pls->init_sec_buf,
1349                         pls->init_sec_buf_size);
1350     ff_format_io_close(pls->parent, &pls->input);
1351
1352     if (ret < 0)
1353         return ret;
1354
1355     pls->cur_init_section = seg->init_section;
1356     pls->init_sec_data_len = ret;
1357     pls->init_sec_buf_read_offset = 0;
1358
1359     /* spec says audio elementary streams do not have media initialization
1360      * sections, so there should be no ID3 timestamps */
1361     pls->is_id3_timestamped = 0;
1362
1363     return 0;
1364 }
1365
1366 static int64_t default_reload_interval(struct playlist *pls)
1367 {
1368     return pls->n_segments > 0 ?
1369                           pls->segments[pls->n_segments - 1]->duration :
1370                           pls->target_duration;
1371 }
1372
1373 static int playlist_needed(struct playlist *pls)
1374 {
1375     AVFormatContext *s = pls->parent;
1376     int i, j;
1377     int stream_needed = 0;
1378     int first_st;
1379
1380     /* If there is no context or streams yet, the playlist is needed */
1381     if (!pls->ctx || !pls->n_main_streams)
1382         return 1;
1383
1384     /* check if any of the streams in the playlist are needed */
1385     for (i = 0; i < pls->n_main_streams; i++) {
1386         if (pls->main_streams[i]->discard < AVDISCARD_ALL) {
1387             stream_needed = 1;
1388             break;
1389         }
1390     }
1391
1392     /* If all streams in the playlist were discarded, the playlist is not
1393      * needed (regardless of whether whole programs are discarded or not). */
1394     if (!stream_needed)
1395         return 0;
1396
1397     /* Otherwise, check if all the programs (variants) this playlist is in are
1398      * discarded. Since all streams in the playlist are part of the same programs
1399      * we can just check the programs of the first stream. */
1400
1401     first_st = pls->main_streams[0]->index;
1402
1403     for (i = 0; i < s->nb_programs; i++) {
1404         AVProgram *program = s->programs[i];
1405         if (program->discard < AVDISCARD_ALL) {
1406             for (j = 0; j < program->nb_stream_indexes; j++) {
1407                 if (program->stream_index[j] == first_st) {
1408                     /* playlist is in an undiscarded program */
1409                     return 1;
1410                 }
1411             }
1412         }
1413     }
1414
1415     /* some streams were not discarded but all the programs were */
1416     return 0;
1417 }
1418
1419 static int read_data(void *opaque, uint8_t *buf, int buf_size)
1420 {
1421     struct playlist *v = opaque;
1422     HLSContext *c = v->parent->priv_data;
1423     int ret;
1424     int just_opened = 0;
1425     int reload_count = 0;
1426     struct segment *seg;
1427
1428 restart:
1429     if (!v->needed)
1430         return AVERROR_EOF;
1431
1432     if (!v->input || (c->http_persistent && v->input_read_done)) {
1433         int64_t reload_interval;
1434
1435         /* Check that the playlist is still needed before opening a new
1436          * segment. */
1437         v->needed = playlist_needed(v);
1438
1439         if (!v->needed) {
1440             av_log(v->parent, AV_LOG_INFO, "No longer receiving playlist %d ('%s')\n",
1441                    v->index, v->url);
1442             return AVERROR_EOF;
1443         }
1444
1445         /* If this is a live stream and the reload interval has elapsed since
1446          * the last playlist reload, reload the playlists now. */
1447         reload_interval = default_reload_interval(v);
1448
1449 reload:
1450         reload_count++;
1451         if (reload_count > c->max_reload)
1452             return AVERROR_EOF;
1453         if (!v->finished &&
1454             av_gettime_relative() - v->last_load_time >= reload_interval) {
1455             if ((ret = parse_playlist(c, v->url, v, NULL)) < 0) {
1456                 if (ret != AVERROR_EXIT)
1457                     av_log(v->parent, AV_LOG_WARNING, "Failed to reload playlist %d\n",
1458                            v->index);
1459                 return ret;
1460             }
1461             /* If we need to reload the playlist again below (if
1462              * there's still no more segments), switch to a reload
1463              * interval of half the target duration. */
1464             reload_interval = v->target_duration / 2;
1465         }
1466         if (v->cur_seq_no < v->start_seq_no) {
1467             av_log(v->parent, AV_LOG_WARNING,
1468                    "skipping %"PRId64" segments ahead, expired from playlists\n",
1469                    v->start_seq_no - v->cur_seq_no);
1470             v->cur_seq_no = v->start_seq_no;
1471         }
1472         if (v->cur_seq_no > v->last_seq_no) {
1473             v->last_seq_no = v->cur_seq_no;
1474             v->m3u8_hold_counters = 0;
1475         } else if (v->last_seq_no == v->cur_seq_no) {
1476             v->m3u8_hold_counters++;
1477             if (v->m3u8_hold_counters >= c->m3u8_hold_counters) {
1478                 return AVERROR_EOF;
1479             }
1480         } else {
1481             av_log(v->parent, AV_LOG_WARNING, "maybe the m3u8 list sequence have been wraped.\n");
1482         }
1483         if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
1484             if (v->finished)
1485                 return AVERROR_EOF;
1486             while (av_gettime_relative() - v->last_load_time < reload_interval) {
1487                 if (ff_check_interrupt(c->interrupt_callback))
1488                     return AVERROR_EXIT;
1489                 av_usleep(100*1000);
1490             }
1491             /* Enough time has elapsed since the last reload */
1492             goto reload;
1493         }
1494
1495         v->input_read_done = 0;
1496         seg = current_segment(v);
1497
1498         /* load/update Media Initialization Section, if any */
1499         ret = update_init_section(v, seg);
1500         if (ret)
1501             return ret;
1502
1503         if (c->http_multiple == 1 && v->input_next_requested) {
1504             FFSWAP(AVIOContext *, v->input, v->input_next);
1505             v->cur_seg_offset = 0;
1506             v->input_next_requested = 0;
1507             ret = 0;
1508         } else {
1509             ret = open_input(c, v, seg, &v->input);
1510         }
1511         if (ret < 0) {
1512             if (ff_check_interrupt(c->interrupt_callback))
1513                 return AVERROR_EXIT;
1514             av_log(v->parent, AV_LOG_WARNING, "Failed to open segment %"PRId64" of playlist %d\n",
1515                    v->cur_seq_no,
1516                    v->index);
1517             v->cur_seq_no += 1;
1518             goto reload;
1519         }
1520         just_opened = 1;
1521     }
1522
1523     if (c->http_multiple == -1) {
1524         uint8_t *http_version_opt = NULL;
1525         int r = av_opt_get(v->input, "http_version", AV_OPT_SEARCH_CHILDREN, &http_version_opt);
1526         if (r >= 0) {
1527             c->http_multiple = (!strncmp((const char *)http_version_opt, "1.1", 3) || !strncmp((const char *)http_version_opt, "2.0", 3));
1528             av_freep(&http_version_opt);
1529         }
1530     }
1531
1532     seg = next_segment(v);
1533     if (c->http_multiple == 1 && !v->input_next_requested &&
1534         seg && seg->key_type == KEY_NONE && av_strstart(seg->url, "http", NULL)) {
1535         ret = open_input(c, v, seg, &v->input_next);
1536         if (ret < 0) {
1537             if (ff_check_interrupt(c->interrupt_callback))
1538                 return AVERROR_EXIT;
1539             av_log(v->parent, AV_LOG_WARNING, "Failed to open segment %"PRId64" of playlist %d\n",
1540                    v->cur_seq_no + 1,
1541                    v->index);
1542         } else {
1543             v->input_next_requested = 1;
1544         }
1545     }
1546
1547     if (v->init_sec_buf_read_offset < v->init_sec_data_len) {
1548         /* Push init section out first before first actual segment */
1549         int copy_size = FFMIN(v->init_sec_data_len - v->init_sec_buf_read_offset, buf_size);
1550         memcpy(buf, v->init_sec_buf, copy_size);
1551         v->init_sec_buf_read_offset += copy_size;
1552         return copy_size;
1553     }
1554
1555     seg = current_segment(v);
1556     ret = read_from_url(v, seg, buf, buf_size);
1557     if (ret > 0) {
1558         if (just_opened && v->is_id3_timestamped != 0) {
1559             /* Intercept ID3 tags here, elementary audio streams are required
1560              * to convey timestamps using them in the beginning of each segment. */
1561             intercept_id3(v, buf, buf_size, &ret);
1562         }
1563
1564         return ret;
1565     }
1566     if (c->http_persistent &&
1567         seg->key_type == KEY_NONE && av_strstart(seg->url, "http", NULL)) {
1568         v->input_read_done = 1;
1569     } else {
1570         ff_format_io_close(v->parent, &v->input);
1571     }
1572     v->cur_seq_no++;
1573
1574     c->cur_seq_no = v->cur_seq_no;
1575
1576     goto restart;
1577 }
1578
1579 static void add_renditions_to_variant(HLSContext *c, struct variant *var,
1580                                       enum AVMediaType type, const char *group_id)
1581 {
1582     int i;
1583
1584     for (i = 0; i < c->n_renditions; i++) {
1585         struct rendition *rend = c->renditions[i];
1586
1587         if (rend->type == type && !strcmp(rend->group_id, group_id)) {
1588
1589             if (rend->playlist)
1590                 /* rendition is an external playlist
1591                  * => add the playlist to the variant */
1592                 dynarray_add(&var->playlists, &var->n_playlists, rend->playlist);
1593             else
1594                 /* rendition is part of the variant main Media Playlist
1595                  * => add the rendition to the main Media Playlist */
1596                 dynarray_add(&var->playlists[0]->renditions,
1597                              &var->playlists[0]->n_renditions,
1598                              rend);
1599         }
1600     }
1601 }
1602
1603 static void add_metadata_from_renditions(AVFormatContext *s, struct playlist *pls,
1604                                          enum AVMediaType type)
1605 {
1606     int rend_idx = 0;
1607     int i;
1608
1609     for (i = 0; i < pls->n_main_streams; i++) {
1610         AVStream *st = pls->main_streams[i];
1611
1612         if (st->codecpar->codec_type != type)
1613             continue;
1614
1615         for (; rend_idx < pls->n_renditions; rend_idx++) {
1616             struct rendition *rend = pls->renditions[rend_idx];
1617
1618             if (rend->type != type)
1619                 continue;
1620
1621             if (rend->language[0])
1622                 av_dict_set(&st->metadata, "language", rend->language, 0);
1623             if (rend->name[0])
1624                 av_dict_set(&st->metadata, "comment", rend->name, 0);
1625
1626             st->disposition |= rend->disposition;
1627         }
1628         if (rend_idx >=pls->n_renditions)
1629             break;
1630     }
1631 }
1632
1633 /* if timestamp was in valid range: returns 1 and sets seq_no
1634  * if not: returns 0 and sets seq_no to closest segment */
1635 static int find_timestamp_in_playlist(HLSContext *c, struct playlist *pls,
1636                                       int64_t timestamp, int64_t *seq_no)
1637 {
1638     int i;
1639     int64_t pos = c->first_timestamp == AV_NOPTS_VALUE ?
1640                   0 : c->first_timestamp;
1641
1642     if (timestamp < pos) {
1643         *seq_no = pls->start_seq_no;
1644         return 0;
1645     }
1646
1647     for (i = 0; i < pls->n_segments; i++) {
1648         int64_t diff = pos + pls->segments[i]->duration - timestamp;
1649         if (diff > 0) {
1650             *seq_no = pls->start_seq_no + i;
1651             return 1;
1652         }
1653         pos += pls->segments[i]->duration;
1654     }
1655
1656     *seq_no = pls->start_seq_no + pls->n_segments - 1;
1657
1658     return 0;
1659 }
1660
1661 static int64_t select_cur_seq_no(HLSContext *c, struct playlist *pls)
1662 {
1663     int64_t seq_no;
1664
1665     if (!pls->finished && !c->first_packet &&
1666         av_gettime_relative() - pls->last_load_time >= default_reload_interval(pls))
1667         /* reload the playlist since it was suspended */
1668         parse_playlist(c, pls->url, pls, NULL);
1669
1670     /* If playback is already in progress (we are just selecting a new
1671      * playlist) and this is a complete file, find the matching segment
1672      * by counting durations. */
1673     if (pls->finished && c->cur_timestamp != AV_NOPTS_VALUE) {
1674         find_timestamp_in_playlist(c, pls, c->cur_timestamp, &seq_no);
1675         return seq_no;
1676     }
1677
1678     if (!pls->finished) {
1679         if (!c->first_packet && /* we are doing a segment selection during playback */
1680             c->cur_seq_no >= pls->start_seq_no &&
1681             c->cur_seq_no < pls->start_seq_no + pls->n_segments)
1682             /* While spec 3.4.3 says that we cannot assume anything about the
1683              * content at the same sequence number on different playlists,
1684              * in practice this seems to work and doing it otherwise would
1685              * require us to download a segment to inspect its timestamps. */
1686             return c->cur_seq_no;
1687
1688         /* If this is a live stream, start live_start_index segments from the
1689          * start or end */
1690         if (c->live_start_index < 0)
1691             return pls->start_seq_no + FFMAX(pls->n_segments + c->live_start_index, 0);
1692         else
1693             return pls->start_seq_no + FFMIN(c->live_start_index, pls->n_segments - 1);
1694     }
1695
1696     /* Otherwise just start on the first segment. */
1697     return pls->start_seq_no;
1698 }
1699
1700 static int save_avio_options(AVFormatContext *s)
1701 {
1702     HLSContext *c = s->priv_data;
1703     static const char * const opts[] = {
1704         "headers", "http_proxy", "user_agent", "cookies", "referer", "rw_timeout", "icy", NULL };
1705     const char * const * opt = opts;
1706     uint8_t *buf;
1707     int ret = 0;
1708
1709     while (*opt) {
1710         if (av_opt_get(s->pb, *opt, AV_OPT_SEARCH_CHILDREN | AV_OPT_ALLOW_NULL, &buf) >= 0) {
1711             ret = av_dict_set(&c->avio_opts, *opt, buf,
1712                               AV_DICT_DONT_STRDUP_VAL);
1713             if (ret < 0)
1714                 return ret;
1715         }
1716         opt++;
1717     }
1718
1719     return ret;
1720 }
1721
1722 static int nested_io_open(AVFormatContext *s, AVIOContext **pb, const char *url,
1723                           int flags, AVDictionary **opts)
1724 {
1725     av_log(s, AV_LOG_ERROR,
1726            "A HLS playlist item '%s' referred to an external file '%s'. "
1727            "Opening this file was forbidden for security reasons\n",
1728            s->url, url);
1729     return AVERROR(EPERM);
1730 }
1731
1732 static void add_stream_to_programs(AVFormatContext *s, struct playlist *pls, AVStream *stream)
1733 {
1734     HLSContext *c = s->priv_data;
1735     int i, j;
1736     int bandwidth = -1;
1737
1738     for (i = 0; i < c->n_variants; i++) {
1739         struct variant *v = c->variants[i];
1740
1741         for (j = 0; j < v->n_playlists; j++) {
1742             if (v->playlists[j] != pls)
1743                 continue;
1744
1745             av_program_add_stream_index(s, i, stream->index);
1746
1747             if (bandwidth < 0)
1748                 bandwidth = v->bandwidth;
1749             else if (bandwidth != v->bandwidth)
1750                 bandwidth = -1; /* stream in multiple variants with different bandwidths */
1751         }
1752     }
1753
1754     if (bandwidth >= 0)
1755         av_dict_set_int(&stream->metadata, "variant_bitrate", bandwidth, 0);
1756 }
1757
1758 static int set_stream_info_from_input_stream(AVStream *st, struct playlist *pls, AVStream *ist)
1759 {
1760     int err;
1761
1762     err = avcodec_parameters_copy(st->codecpar, ist->codecpar);
1763     if (err < 0)
1764         return err;
1765
1766     if (pls->is_id3_timestamped) /* custom timestamps via id3 */
1767         avpriv_set_pts_info(st, 33, 1, MPEG_TIME_BASE);
1768     else
1769         avpriv_set_pts_info(st, ist->pts_wrap_bits, ist->time_base.num, ist->time_base.den);
1770
1771     // copy disposition
1772     st->disposition = ist->disposition;
1773
1774     // copy side data
1775     for (int i = 0; i < ist->nb_side_data; i++) {
1776         const AVPacketSideData *sd_src = &ist->side_data[i];
1777         uint8_t *dst_data;
1778
1779         dst_data = av_stream_new_side_data(st, sd_src->type, sd_src->size);
1780         if (!dst_data)
1781             return AVERROR(ENOMEM);
1782         memcpy(dst_data, sd_src->data, sd_src->size);
1783     }
1784
1785     st->internal->need_context_update = 1;
1786
1787     return 0;
1788 }
1789
1790 /* add new subdemuxer streams to our context, if any */
1791 static int update_streams_from_subdemuxer(AVFormatContext *s, struct playlist *pls)
1792 {
1793     int err;
1794
1795     while (pls->n_main_streams < pls->ctx->nb_streams) {
1796         int ist_idx = pls->n_main_streams;
1797         AVStream *st = avformat_new_stream(s, NULL);
1798         AVStream *ist = pls->ctx->streams[ist_idx];
1799
1800         if (!st)
1801             return AVERROR(ENOMEM);
1802
1803         st->id = pls->index;
1804         dynarray_add(&pls->main_streams, &pls->n_main_streams, st);
1805
1806         add_stream_to_programs(s, pls, st);
1807
1808         err = set_stream_info_from_input_stream(st, pls, ist);
1809         if (err < 0)
1810             return err;
1811     }
1812
1813     return 0;
1814 }
1815
1816 static void update_noheader_flag(AVFormatContext *s)
1817 {
1818     HLSContext *c = s->priv_data;
1819     int flag_needed = 0;
1820     int i;
1821
1822     for (i = 0; i < c->n_playlists; i++) {
1823         struct playlist *pls = c->playlists[i];
1824
1825         if (pls->has_noheader_flag) {
1826             flag_needed = 1;
1827             break;
1828         }
1829     }
1830
1831     if (flag_needed)
1832         s->ctx_flags |= AVFMTCTX_NOHEADER;
1833     else
1834         s->ctx_flags &= ~AVFMTCTX_NOHEADER;
1835 }
1836
1837 static int hls_close(AVFormatContext *s)
1838 {
1839     HLSContext *c = s->priv_data;
1840
1841     free_playlist_list(c);
1842     free_variant_list(c);
1843     free_rendition_list(c);
1844
1845     av_dict_free(&c->avio_opts);
1846     ff_format_io_close(c->ctx, &c->playlist_pb);
1847
1848     return 0;
1849 }
1850
1851 static int hls_read_header(AVFormatContext *s)
1852 {
1853     HLSContext *c = s->priv_data;
1854     int ret = 0, i;
1855     int64_t highest_cur_seq_no = 0;
1856
1857     c->ctx                = s;
1858     c->interrupt_callback = &s->interrupt_callback;
1859
1860     c->first_packet = 1;
1861     c->first_timestamp = AV_NOPTS_VALUE;
1862     c->cur_timestamp = AV_NOPTS_VALUE;
1863
1864     if ((ret = save_avio_options(s)) < 0)
1865         goto fail;
1866
1867     /* XXX: Some HLS servers don't like being sent the range header,
1868        in this case, need to  setting http_seekable = 0 to disable
1869        the range header */
1870     av_dict_set_int(&c->avio_opts, "seekable", c->http_seekable, 0);
1871
1872     if ((ret = parse_playlist(c, s->url, NULL, s->pb)) < 0)
1873         goto fail;
1874
1875     if (c->n_variants == 0) {
1876         av_log(s, AV_LOG_WARNING, "Empty playlist\n");
1877         ret = AVERROR_EOF;
1878         goto fail;
1879     }
1880     /* If the playlist only contained playlists (Master Playlist),
1881      * parse each individual playlist. */
1882     if (c->n_playlists > 1 || c->playlists[0]->n_segments == 0) {
1883         for (i = 0; i < c->n_playlists; i++) {
1884             struct playlist *pls = c->playlists[i];
1885             pls->m3u8_hold_counters = 0;
1886             if ((ret = parse_playlist(c, pls->url, pls, NULL)) < 0) {
1887                 av_log(s, AV_LOG_WARNING, "parse_playlist error %s [%s]\n", av_err2str(ret), pls->url);
1888                 pls->broken = 1;
1889                 if (c->n_playlists > 1)
1890                     continue;
1891                 goto fail;
1892             }
1893         }
1894     }
1895
1896     for (i = 0; i < c->n_variants; i++) {
1897         if (c->variants[i]->playlists[0]->n_segments == 0) {
1898             av_log(s, AV_LOG_WARNING, "Empty segment [%s]\n", c->variants[i]->playlists[0]->url);
1899             c->variants[i]->playlists[0]->broken = 1;
1900         }
1901     }
1902
1903     /* If this isn't a live stream, calculate the total duration of the
1904      * stream. */
1905     if (c->variants[0]->playlists[0]->finished) {
1906         int64_t duration = 0;
1907         for (i = 0; i < c->variants[0]->playlists[0]->n_segments; i++)
1908             duration += c->variants[0]->playlists[0]->segments[i]->duration;
1909         s->duration = duration;
1910     }
1911
1912     /* Associate renditions with variants */
1913     for (i = 0; i < c->n_variants; i++) {
1914         struct variant *var = c->variants[i];
1915
1916         if (var->audio_group[0])
1917             add_renditions_to_variant(c, var, AVMEDIA_TYPE_AUDIO, var->audio_group);
1918         if (var->video_group[0])
1919             add_renditions_to_variant(c, var, AVMEDIA_TYPE_VIDEO, var->video_group);
1920         if (var->subtitles_group[0])
1921             add_renditions_to_variant(c, var, AVMEDIA_TYPE_SUBTITLE, var->subtitles_group);
1922     }
1923
1924     /* Create a program for each variant */
1925     for (i = 0; i < c->n_variants; i++) {
1926         struct variant *v = c->variants[i];
1927         AVProgram *program;
1928
1929         program = av_new_program(s, i);
1930         if (!program)
1931             goto fail;
1932         av_dict_set_int(&program->metadata, "variant_bitrate", v->bandwidth, 0);
1933     }
1934
1935     /* Select the starting segments */
1936     for (i = 0; i < c->n_playlists; i++) {
1937         struct playlist *pls = c->playlists[i];
1938
1939         if (pls->n_segments == 0)
1940             continue;
1941
1942         pls->cur_seq_no = select_cur_seq_no(c, pls);
1943         highest_cur_seq_no = FFMAX(highest_cur_seq_no, pls->cur_seq_no);
1944     }
1945
1946     /* Open the demuxer for each playlist */
1947     for (i = 0; i < c->n_playlists; i++) {
1948         struct playlist *pls = c->playlists[i];
1949         char *url;
1950         ff_const59 AVInputFormat *in_fmt = NULL;
1951
1952         if (!(pls->ctx = avformat_alloc_context())) {
1953             ret = AVERROR(ENOMEM);
1954             goto fail;
1955         }
1956
1957         if (pls->n_segments == 0)
1958             continue;
1959
1960         pls->index  = i;
1961         pls->needed = 1;
1962         pls->parent = s;
1963
1964         /*
1965          * If this is a live stream and this playlist looks like it is one segment
1966          * behind, try to sync it up so that every substream starts at the same
1967          * time position (so e.g. avformat_find_stream_info() will see packets from
1968          * all active streams within the first few seconds). This is not very generic,
1969          * though, as the sequence numbers are technically independent.
1970          */
1971         if (!pls->finished && pls->cur_seq_no == highest_cur_seq_no - 1 &&
1972             highest_cur_seq_no < pls->start_seq_no + pls->n_segments) {
1973             pls->cur_seq_no = highest_cur_seq_no;
1974         }
1975
1976         pls->read_buffer = av_malloc(INITIAL_BUFFER_SIZE);
1977         if (!pls->read_buffer){
1978             ret = AVERROR(ENOMEM);
1979             avformat_free_context(pls->ctx);
1980             pls->ctx = NULL;
1981             goto fail;
1982         }
1983         ffio_init_context(&pls->pb, pls->read_buffer, INITIAL_BUFFER_SIZE, 0, pls,
1984                           read_data, NULL, NULL);
1985         pls->ctx->probesize = s->probesize > 0 ? s->probesize : 1024 * 4;
1986         pls->ctx->max_analyze_duration = s->max_analyze_duration > 0 ? s->max_analyze_duration : 4 * AV_TIME_BASE;
1987         pls->ctx->interrupt_callback = s->interrupt_callback;
1988         url = av_strdup(pls->segments[0]->url);
1989         ret = av_probe_input_buffer(&pls->pb, &in_fmt, url, NULL, 0, 0);
1990         if (ret < 0) {
1991             /* Free the ctx - it isn't initialized properly at this point,
1992              * so avformat_close_input shouldn't be called. If
1993              * avformat_open_input fails below, it frees and zeros the
1994              * context, so it doesn't need any special treatment like this. */
1995             av_log(s, AV_LOG_ERROR, "Error when loading first segment '%s'\n", url);
1996             avformat_free_context(pls->ctx);
1997             pls->ctx = NULL;
1998             av_free(url);
1999             goto fail;
2000         }
2001         av_free(url);
2002         pls->ctx->pb       = &pls->pb;
2003         pls->ctx->io_open  = nested_io_open;
2004         pls->ctx->flags   |= s->flags & ~AVFMT_FLAG_CUSTOM_IO;
2005
2006         if ((ret = ff_copy_whiteblacklists(pls->ctx, s)) < 0)
2007             goto fail;
2008
2009         ret = avformat_open_input(&pls->ctx, pls->segments[0]->url, in_fmt, NULL);
2010         if (ret < 0)
2011             goto fail;
2012
2013         if (pls->id3_deferred_extra && pls->ctx->nb_streams == 1) {
2014             ff_id3v2_parse_apic(pls->ctx, pls->id3_deferred_extra);
2015             avformat_queue_attached_pictures(pls->ctx);
2016             ff_id3v2_parse_priv(pls->ctx, pls->id3_deferred_extra);
2017             ff_id3v2_free_extra_meta(&pls->id3_deferred_extra);
2018         }
2019
2020         if (pls->is_id3_timestamped == -1)
2021             av_log(s, AV_LOG_WARNING, "No expected HTTP requests have been made\n");
2022
2023         /*
2024          * For ID3 timestamped raw audio streams we need to detect the packet
2025          * durations to calculate timestamps in fill_timing_for_id3_timestamped_stream(),
2026          * but for other streams we can rely on our user calling avformat_find_stream_info()
2027          * on us if they want to.
2028          */
2029         if (pls->is_id3_timestamped || (pls->n_renditions > 0 && pls->renditions[0]->type == AVMEDIA_TYPE_AUDIO)) {
2030             ret = avformat_find_stream_info(pls->ctx, NULL);
2031             if (ret < 0)
2032                 goto fail;
2033         }
2034
2035         pls->has_noheader_flag = !!(pls->ctx->ctx_flags & AVFMTCTX_NOHEADER);
2036
2037         /* Create new AVStreams for each stream in this playlist */
2038         ret = update_streams_from_subdemuxer(s, pls);
2039         if (ret < 0)
2040             goto fail;
2041
2042         /*
2043          * Copy any metadata from playlist to main streams, but do not set
2044          * event flags.
2045          */
2046         if (pls->n_main_streams)
2047             av_dict_copy(&pls->main_streams[0]->metadata, pls->ctx->metadata, 0);
2048
2049         add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_AUDIO);
2050         add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_VIDEO);
2051         add_metadata_from_renditions(s, pls, AVMEDIA_TYPE_SUBTITLE);
2052     }
2053
2054     update_noheader_flag(s);
2055
2056     return 0;
2057 fail:
2058     hls_close(s);
2059     return ret;
2060 }
2061
2062 static int recheck_discard_flags(AVFormatContext *s, int first)
2063 {
2064     HLSContext *c = s->priv_data;
2065     int i, changed = 0;
2066     int cur_needed;
2067
2068     /* Check if any new streams are needed */
2069     for (i = 0; i < c->n_playlists; i++) {
2070         struct playlist *pls = c->playlists[i];
2071
2072         cur_needed = playlist_needed(c->playlists[i]);
2073
2074         if (pls->broken) {
2075             continue;
2076         }
2077         if (cur_needed && !pls->needed) {
2078             pls->needed = 1;
2079             changed = 1;
2080             pls->cur_seq_no = select_cur_seq_no(c, pls);
2081             pls->pb.eof_reached = 0;
2082             if (c->cur_timestamp != AV_NOPTS_VALUE) {
2083                 /* catch up */
2084                 pls->seek_timestamp = c->cur_timestamp;
2085                 pls->seek_flags = AVSEEK_FLAG_ANY;
2086                 pls->seek_stream_index = -1;
2087             }
2088             av_log(s, AV_LOG_INFO, "Now receiving playlist %d, segment %"PRId64"\n", i, pls->cur_seq_no);
2089         } else if (first && !cur_needed && pls->needed) {
2090             ff_format_io_close(pls->parent, &pls->input);
2091             pls->input_read_done = 0;
2092             ff_format_io_close(pls->parent, &pls->input_next);
2093             pls->input_next_requested = 0;
2094             pls->needed = 0;
2095             changed = 1;
2096             av_log(s, AV_LOG_INFO, "No longer receiving playlist %d\n", i);
2097         }
2098     }
2099     return changed;
2100 }
2101
2102 static void fill_timing_for_id3_timestamped_stream(struct playlist *pls)
2103 {
2104     if (pls->id3_offset >= 0) {
2105         pls->pkt.dts = pls->id3_mpegts_timestamp +
2106                                  av_rescale_q(pls->id3_offset,
2107                                               pls->ctx->streams[pls->pkt.stream_index]->time_base,
2108                                               MPEG_TIME_BASE_Q);
2109         if (pls->pkt.duration)
2110             pls->id3_offset += pls->pkt.duration;
2111         else
2112             pls->id3_offset = -1;
2113     } else {
2114         /* there have been packets with unknown duration
2115          * since the last id3 tag, should not normally happen */
2116         pls->pkt.dts = AV_NOPTS_VALUE;
2117     }
2118
2119     if (pls->pkt.duration)
2120         pls->pkt.duration = av_rescale_q(pls->pkt.duration,
2121                                          pls->ctx->streams[pls->pkt.stream_index]->time_base,
2122                                          MPEG_TIME_BASE_Q);
2123
2124     pls->pkt.pts = AV_NOPTS_VALUE;
2125 }
2126
2127 static AVRational get_timebase(struct playlist *pls)
2128 {
2129     if (pls->is_id3_timestamped)
2130         return MPEG_TIME_BASE_Q;
2131
2132     return pls->ctx->streams[pls->pkt.stream_index]->time_base;
2133 }
2134
2135 static int compare_ts_with_wrapdetect(int64_t ts_a, struct playlist *pls_a,
2136                                       int64_t ts_b, struct playlist *pls_b)
2137 {
2138     int64_t scaled_ts_a = av_rescale_q(ts_a, get_timebase(pls_a), MPEG_TIME_BASE_Q);
2139     int64_t scaled_ts_b = av_rescale_q(ts_b, get_timebase(pls_b), MPEG_TIME_BASE_Q);
2140
2141     return av_compare_mod(scaled_ts_a, scaled_ts_b, 1LL << 33);
2142 }
2143
2144 static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
2145 {
2146     HLSContext *c = s->priv_data;
2147     int ret, i, minplaylist = -1;
2148
2149     recheck_discard_flags(s, c->first_packet);
2150     c->first_packet = 0;
2151
2152     for (i = 0; i < c->n_playlists; i++) {
2153         struct playlist *pls = c->playlists[i];
2154         /* Make sure we've got one buffered packet from each open playlist
2155          * stream */
2156         if (pls->needed && !pls->pkt.data) {
2157             while (1) {
2158                 int64_t ts_diff;
2159                 AVRational tb;
2160                 ret = av_read_frame(pls->ctx, &pls->pkt);
2161                 if (ret < 0) {
2162                     if (!avio_feof(&pls->pb) && ret != AVERROR_EOF)
2163                         return ret;
2164                     break;
2165                 } else {
2166                     /* stream_index check prevents matching picture attachments etc. */
2167                     if (pls->is_id3_timestamped && pls->pkt.stream_index == 0) {
2168                         /* audio elementary streams are id3 timestamped */
2169                         fill_timing_for_id3_timestamped_stream(pls);
2170                     }
2171
2172                     if (c->first_timestamp == AV_NOPTS_VALUE &&
2173                         pls->pkt.dts       != AV_NOPTS_VALUE)
2174                         c->first_timestamp = av_rescale_q(pls->pkt.dts,
2175                             get_timebase(pls), AV_TIME_BASE_Q);
2176                 }
2177
2178                 if (pls->seek_timestamp == AV_NOPTS_VALUE)
2179                     break;
2180
2181                 if (pls->seek_stream_index < 0 ||
2182                     pls->seek_stream_index == pls->pkt.stream_index) {
2183
2184                     if (pls->pkt.dts == AV_NOPTS_VALUE) {
2185                         pls->seek_timestamp = AV_NOPTS_VALUE;
2186                         break;
2187                     }
2188
2189                     tb = get_timebase(pls);
2190                     ts_diff = av_rescale_rnd(pls->pkt.dts, AV_TIME_BASE,
2191                                             tb.den, AV_ROUND_DOWN) -
2192                             pls->seek_timestamp;
2193                     if (ts_diff >= 0 && (pls->seek_flags  & AVSEEK_FLAG_ANY ||
2194                                         pls->pkt.flags & AV_PKT_FLAG_KEY)) {
2195                         pls->seek_timestamp = AV_NOPTS_VALUE;
2196                         break;
2197                     }
2198                 }
2199                 av_packet_unref(&pls->pkt);
2200             }
2201         }
2202         /* Check if this stream has the packet with the lowest dts */
2203         if (pls->pkt.data) {
2204             struct playlist *minpls = minplaylist < 0 ?
2205                                      NULL : c->playlists[minplaylist];
2206             if (minplaylist < 0) {
2207                 minplaylist = i;
2208             } else {
2209                 int64_t dts     =    pls->pkt.dts;
2210                 int64_t mindts  = minpls->pkt.dts;
2211
2212                 if (dts == AV_NOPTS_VALUE ||
2213                     (mindts != AV_NOPTS_VALUE && compare_ts_with_wrapdetect(dts, pls, mindts, minpls) < 0))
2214                     minplaylist = i;
2215             }
2216         }
2217     }
2218
2219     /* If we got a packet, return it */
2220     if (minplaylist >= 0) {
2221         struct playlist *pls = c->playlists[minplaylist];
2222         AVStream *ist;
2223         AVStream *st;
2224
2225         ret = update_streams_from_subdemuxer(s, pls);
2226         if (ret < 0) {
2227             av_packet_unref(&pls->pkt);
2228             return ret;
2229         }
2230
2231         // If sub-demuxer reports updated metadata, copy it to the first stream
2232         // and set its AVSTREAM_EVENT_FLAG_METADATA_UPDATED flag.
2233         if (pls->ctx->event_flags & AVFMT_EVENT_FLAG_METADATA_UPDATED) {
2234             if (pls->n_main_streams) {
2235                 st = pls->main_streams[0];
2236                 av_dict_copy(&st->metadata, pls->ctx->metadata, 0);
2237                 st->event_flags |= AVSTREAM_EVENT_FLAG_METADATA_UPDATED;
2238             }
2239             pls->ctx->event_flags &= ~AVFMT_EVENT_FLAG_METADATA_UPDATED;
2240         }
2241
2242         /* check if noheader flag has been cleared by the subdemuxer */
2243         if (pls->has_noheader_flag && !(pls->ctx->ctx_flags & AVFMTCTX_NOHEADER)) {
2244             pls->has_noheader_flag = 0;
2245             update_noheader_flag(s);
2246         }
2247
2248         if (pls->pkt.stream_index >= pls->n_main_streams) {
2249             av_log(s, AV_LOG_ERROR, "stream index inconsistency: index %d, %d main streams, %d subdemuxer streams\n",
2250                    pls->pkt.stream_index, pls->n_main_streams, pls->ctx->nb_streams);
2251             av_packet_unref(&pls->pkt);
2252             return AVERROR_BUG;
2253         }
2254
2255         ist = pls->ctx->streams[pls->pkt.stream_index];
2256         st = pls->main_streams[pls->pkt.stream_index];
2257
2258         av_packet_move_ref(pkt, &pls->pkt);
2259         pkt->stream_index = st->index;
2260
2261         if (pkt->dts != AV_NOPTS_VALUE)
2262             c->cur_timestamp = av_rescale_q(pkt->dts,
2263                                             ist->time_base,
2264                                             AV_TIME_BASE_Q);
2265
2266         /* There may be more situations where this would be useful, but this at least
2267          * handles newly probed codecs properly (i.e. request_probe by mpegts). */
2268         if (ist->codecpar->codec_id != st->codecpar->codec_id) {
2269             ret = set_stream_info_from_input_stream(st, pls, ist);
2270             if (ret < 0) {
2271                 return ret;
2272             }
2273         }
2274
2275         return 0;
2276     }
2277     return AVERROR_EOF;
2278 }
2279
2280 static int hls_read_seek(AVFormatContext *s, int stream_index,
2281                                int64_t timestamp, int flags)
2282 {
2283     HLSContext *c = s->priv_data;
2284     struct playlist *seek_pls = NULL;
2285     int i, j;
2286     int stream_subdemuxer_index;
2287     int64_t first_timestamp, seek_timestamp, duration;
2288     int64_t seq_no;
2289
2290     if ((flags & AVSEEK_FLAG_BYTE) || (c->ctx->ctx_flags & AVFMTCTX_UNSEEKABLE))
2291         return AVERROR(ENOSYS);
2292
2293     first_timestamp = c->first_timestamp == AV_NOPTS_VALUE ?
2294                       0 : c->first_timestamp;
2295
2296     seek_timestamp = av_rescale_rnd(timestamp, AV_TIME_BASE,
2297                                     s->streams[stream_index]->time_base.den,
2298                                     flags & AVSEEK_FLAG_BACKWARD ?
2299                                     AV_ROUND_DOWN : AV_ROUND_UP);
2300
2301     duration = s->duration == AV_NOPTS_VALUE ?
2302                0 : s->duration;
2303
2304     if (0 < duration && duration < seek_timestamp - first_timestamp)
2305         return AVERROR(EIO);
2306
2307     /* find the playlist with the specified stream */
2308     for (i = 0; i < c->n_playlists; i++) {
2309         struct playlist *pls = c->playlists[i];
2310         for (j = 0; j < pls->n_main_streams; j++) {
2311             if (pls->main_streams[j] == s->streams[stream_index]) {
2312                 seek_pls = pls;
2313                 stream_subdemuxer_index = j;
2314                 break;
2315             }
2316         }
2317     }
2318     /* check if the timestamp is valid for the playlist with the
2319      * specified stream index */
2320     if (!seek_pls || !find_timestamp_in_playlist(c, seek_pls, seek_timestamp, &seq_no))
2321         return AVERROR(EIO);
2322
2323     /* set segment now so we do not need to search again below */
2324     seek_pls->cur_seq_no = seq_no;
2325     seek_pls->seek_stream_index = stream_subdemuxer_index;
2326
2327     for (i = 0; i < c->n_playlists; i++) {
2328         /* Reset reading */
2329         struct playlist *pls = c->playlists[i];
2330         ff_format_io_close(pls->parent, &pls->input);
2331         pls->input_read_done = 0;
2332         ff_format_io_close(pls->parent, &pls->input_next);
2333         pls->input_next_requested = 0;
2334         av_packet_unref(&pls->pkt);
2335         pls->pb.eof_reached = 0;
2336         /* Clear any buffered data */
2337         pls->pb.buf_end = pls->pb.buf_ptr = pls->pb.buffer;
2338         /* Reset the pos, to let the mpegts demuxer know we've seeked. */
2339         pls->pb.pos = 0;
2340         /* Flush the packet queue of the subdemuxer. */
2341         ff_read_frame_flush(pls->ctx);
2342
2343         pls->seek_timestamp = seek_timestamp;
2344         pls->seek_flags = flags;
2345
2346         if (pls != seek_pls) {
2347             /* set closest segment seq_no for playlists not handled above */
2348             find_timestamp_in_playlist(c, pls, seek_timestamp, &pls->cur_seq_no);
2349             /* seek the playlist to the given position without taking
2350              * keyframes into account since this playlist does not have the
2351              * specified stream where we should look for the keyframes */
2352             pls->seek_stream_index = -1;
2353             pls->seek_flags |= AVSEEK_FLAG_ANY;
2354         }
2355     }
2356
2357     c->cur_timestamp = seek_timestamp;
2358
2359     return 0;
2360 }
2361
2362 static int hls_probe(const AVProbeData *p)
2363 {
2364     /* Require #EXTM3U at the start, and either one of the ones below
2365      * somewhere for a proper match. */
2366     if (strncmp(p->buf, "#EXTM3U", 7))
2367         return 0;
2368
2369     if (strstr(p->buf, "#EXT-X-STREAM-INF:")     ||
2370         strstr(p->buf, "#EXT-X-TARGETDURATION:") ||
2371         strstr(p->buf, "#EXT-X-MEDIA-SEQUENCE:"))
2372         return AVPROBE_SCORE_MAX;
2373     return 0;
2374 }
2375
2376 #define OFFSET(x) offsetof(HLSContext, x)
2377 #define FLAGS AV_OPT_FLAG_DECODING_PARAM
2378 static const AVOption hls_options[] = {
2379     {"live_start_index", "segment index to start live streams at (negative values are from the end)",
2380         OFFSET(live_start_index), AV_OPT_TYPE_INT, {.i64 = -3}, INT_MIN, INT_MAX, FLAGS},
2381     {"allowed_extensions", "List of file extensions that hls is allowed to access",
2382         OFFSET(allowed_extensions), AV_OPT_TYPE_STRING,
2383         {.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"},
2384         INT_MIN, INT_MAX, FLAGS},
2385     {"max_reload", "Maximum number of times a insufficient list is attempted to be reloaded",
2386         OFFSET(max_reload), AV_OPT_TYPE_INT, {.i64 = 1000}, 0, INT_MAX, FLAGS},
2387     {"m3u8_hold_counters", "The maximum number of times to load m3u8 when it refreshes without new segments",
2388         OFFSET(m3u8_hold_counters), AV_OPT_TYPE_INT, {.i64 = 1000}, 0, INT_MAX, FLAGS},
2389     {"http_persistent", "Use persistent HTTP connections",
2390         OFFSET(http_persistent), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, FLAGS },
2391     {"http_multiple", "Use multiple HTTP connections for fetching segments",
2392         OFFSET(http_multiple), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, FLAGS},
2393     {"http_seekable", "Use HTTP partial requests, 0 = disable, 1 = enable, -1 = auto",
2394         OFFSET(http_seekable), AV_OPT_TYPE_BOOL, { .i64 = -1}, -1, 1, FLAGS},
2395     {NULL}
2396 };
2397
2398 static const AVClass hls_class = {
2399     .class_name = "hls demuxer",
2400     .item_name  = av_default_item_name,
2401     .option     = hls_options,
2402     .version    = LIBAVUTIL_VERSION_INT,
2403 };
2404
2405 AVInputFormat ff_hls_demuxer = {
2406     .name           = "hls",
2407     .long_name      = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming"),
2408     .priv_class     = &hls_class,
2409     .priv_data_size = sizeof(HLSContext),
2410     .flags          = AVFMT_NOGENSEARCH | AVFMT_TS_DISCONT,
2411     .read_probe     = hls_probe,
2412     .read_header    = hls_read_header,
2413     .read_packet    = hls_read_packet,
2414     .read_close     = hls_close,
2415     .read_seek      = hls_read_seek,
2416 };