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