]> git.sesse.net Git - ffmpeg/blob - libavformat/hls.c
Merge commit '78071a1420b425dfb787ac739048f523007b8139'
[ffmpeg] / libavformat / hls.c
1 /*
2  * Apple HTTP Live Streaming demuxer
3  * Copyright (c) 2010 Martin Storsjo
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Apple HTTP Live Streaming demuxer
25  * http://tools.ietf.org/html/draft-pantos-http-live-streaming
26  */
27
28 #include "libavutil/avstring.h"
29 #include "libavutil/intreadwrite.h"
30 #include "libavutil/mathematics.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/dict.h"
33 #include "libavutil/time.h"
34 #include "avformat.h"
35 #include "internal.h"
36 #include "avio_internal.h"
37 #include "url.h"
38
39 #define INITIAL_BUFFER_SIZE 32768
40
41 /*
42  * An apple http stream consists of a playlist with media segment files,
43  * played sequentially. There may be several playlists with the same
44  * video content, in different bandwidth variants, that are played in
45  * parallel (preferably only one bandwidth variant at a time). In this case,
46  * the user supplied the url to a main playlist that only lists the variant
47  * playlists.
48  *
49  * If the main playlist doesn't point at any variants, we still create
50  * one anonymous toplevel variant for this, to maintain the structure.
51  */
52
53 enum KeyType {
54     KEY_NONE,
55     KEY_AES_128,
56 };
57
58 struct segment {
59     int duration;
60     char url[MAX_URL_SIZE];
61     char key[MAX_URL_SIZE];
62     enum KeyType key_type;
63     uint8_t iv[16];
64 };
65
66 /*
67  * Each variant has its own demuxer. If it currently is active,
68  * it has an open AVIOContext too, and potentially an AVPacket
69  * containing the next packet from this stream.
70  */
71 struct variant {
72     int bandwidth;
73     char url[MAX_URL_SIZE];
74     AVIOContext pb;
75     uint8_t* read_buffer;
76     URLContext *input;
77     AVFormatContext *parent;
78     int index;
79     AVFormatContext *ctx;
80     AVPacket pkt;
81     int stream_offset;
82
83     int finished;
84     int target_duration;
85     int start_seq_no;
86     int n_segments;
87     struct segment **segments;
88     int needed, cur_needed;
89     int cur_seq_no;
90     int64_t last_load_time;
91
92     char key_url[MAX_URL_SIZE];
93     uint8_t key[16];
94 };
95
96 typedef struct HLSContext {
97     int n_variants;
98     struct variant **variants;
99     int cur_seq_no;
100     int end_of_segment;
101     int first_packet;
102     int64_t first_timestamp;
103     int64_t seek_timestamp;
104     int seek_flags;
105     AVIOInterruptCB *interrupt_callback;
106 } HLSContext;
107
108 static int read_chomp_line(AVIOContext *s, char *buf, int maxlen)
109 {
110     int len = ff_get_line(s, buf, maxlen);
111     while (len > 0 && isspace(buf[len - 1]))
112         buf[--len] = '\0';
113     return len;
114 }
115
116 static void free_segment_list(struct variant *var)
117 {
118     int i;
119     for (i = 0; i < var->n_segments; i++)
120         av_free(var->segments[i]);
121     av_freep(&var->segments);
122     var->n_segments = 0;
123 }
124
125 static void free_variant_list(HLSContext *c)
126 {
127     int i;
128     for (i = 0; i < c->n_variants; i++) {
129         struct variant *var = c->variants[i];
130         free_segment_list(var);
131         av_free_packet(&var->pkt);
132         av_free(var->pb.buffer);
133         if (var->input)
134             ffurl_close(var->input);
135         if (var->ctx) {
136             var->ctx->pb = NULL;
137             avformat_close_input(&var->ctx);
138         }
139         av_free(var);
140     }
141     av_freep(&c->variants);
142     c->n_variants = 0;
143 }
144
145 /*
146  * Used to reset a statically allocated AVPacket to a clean slate,
147  * containing no data.
148  */
149 static void reset_packet(AVPacket *pkt)
150 {
151     av_init_packet(pkt);
152     pkt->data = NULL;
153 }
154
155 static struct variant *new_variant(HLSContext *c, int bandwidth,
156                                    const char *url, const char *base)
157 {
158     struct variant *var = av_mallocz(sizeof(struct variant));
159     if (!var)
160         return NULL;
161     reset_packet(&var->pkt);
162     var->bandwidth = bandwidth;
163     ff_make_absolute_url(var->url, sizeof(var->url), base, url);
164     dynarray_add(&c->variants, &c->n_variants, var);
165     return var;
166 }
167
168 struct variant_info {
169     char bandwidth[20];
170 };
171
172 static void handle_variant_args(struct variant_info *info, const char *key,
173                                 int key_len, char **dest, int *dest_len)
174 {
175     if (!strncmp(key, "BANDWIDTH=", key_len)) {
176         *dest     =        info->bandwidth;
177         *dest_len = sizeof(info->bandwidth);
178     }
179 }
180
181 struct key_info {
182      char uri[MAX_URL_SIZE];
183      char method[10];
184      char iv[35];
185 };
186
187 static void handle_key_args(struct key_info *info, const char *key,
188                             int key_len, char **dest, int *dest_len)
189 {
190     if (!strncmp(key, "METHOD=", key_len)) {
191         *dest     =        info->method;
192         *dest_len = sizeof(info->method);
193     } else if (!strncmp(key, "URI=", key_len)) {
194         *dest     =        info->uri;
195         *dest_len = sizeof(info->uri);
196     } else if (!strncmp(key, "IV=", key_len)) {
197         *dest     =        info->iv;
198         *dest_len = sizeof(info->iv);
199     }
200 }
201
202 static int parse_playlist(HLSContext *c, const char *url,
203                           struct variant *var, AVIOContext *in)
204 {
205     int ret = 0, duration = 0, is_segment = 0, is_variant = 0, bandwidth = 0;
206     enum KeyType key_type = KEY_NONE;
207     uint8_t iv[16] = "";
208     int has_iv = 0;
209     char key[MAX_URL_SIZE] = "";
210     char line[1024];
211     const char *ptr;
212     int close_in = 0;
213
214     if (!in) {
215         AVDictionary *opts = NULL;
216         close_in = 1;
217         /* Some HLS servers dont like being sent the range header */
218         av_dict_set(&opts, "seekable", "0", 0);
219         ret = avio_open2(&in, url, AVIO_FLAG_READ,
220                          c->interrupt_callback, &opts);
221         av_dict_free(&opts);
222         if (ret < 0)
223             return ret;
224     }
225
226     read_chomp_line(in, line, sizeof(line));
227     if (strcmp(line, "#EXTM3U")) {
228         ret = AVERROR_INVALIDDATA;
229         goto fail;
230     }
231
232     if (var) {
233         free_segment_list(var);
234         var->finished = 0;
235     }
236     while (!url_feof(in)) {
237         read_chomp_line(in, line, sizeof(line));
238         if (av_strstart(line, "#EXT-X-STREAM-INF:", &ptr)) {
239             struct variant_info info = {{0}};
240             is_variant = 1;
241             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_variant_args,
242                                &info);
243             bandwidth = atoi(info.bandwidth);
244         } else if (av_strstart(line, "#EXT-X-KEY:", &ptr)) {
245             struct key_info info = {{0}};
246             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_key_args,
247                                &info);
248             key_type = KEY_NONE;
249             has_iv = 0;
250             if (!strcmp(info.method, "AES-128"))
251                 key_type = KEY_AES_128;
252             if (!strncmp(info.iv, "0x", 2) || !strncmp(info.iv, "0X", 2)) {
253                 ff_hex_to_data(iv, info.iv + 2);
254                 has_iv = 1;
255             }
256             av_strlcpy(key, info.uri, sizeof(key));
257         } else if (av_strstart(line, "#EXT-X-TARGETDURATION:", &ptr)) {
258             if (!var) {
259                 var = new_variant(c, 0, url, NULL);
260                 if (!var) {
261                     ret = AVERROR(ENOMEM);
262                     goto fail;
263                 }
264             }
265             var->target_duration = atoi(ptr);
266         } else if (av_strstart(line, "#EXT-X-MEDIA-SEQUENCE:", &ptr)) {
267             if (!var) {
268                 var = new_variant(c, 0, url, NULL);
269                 if (!var) {
270                     ret = AVERROR(ENOMEM);
271                     goto fail;
272                 }
273             }
274             var->start_seq_no = atoi(ptr);
275         } else if (av_strstart(line, "#EXT-X-ENDLIST", &ptr)) {
276             if (var)
277                 var->finished = 1;
278         } else if (av_strstart(line, "#EXTINF:", &ptr)) {
279             is_segment = 1;
280             duration   = atoi(ptr);
281         } else if (av_strstart(line, "#", NULL)) {
282             continue;
283         } else if (line[0]) {
284             if (is_variant) {
285                 if (!new_variant(c, bandwidth, line, url)) {
286                     ret = AVERROR(ENOMEM);
287                     goto fail;
288                 }
289                 is_variant = 0;
290                 bandwidth  = 0;
291             }
292             if (is_segment) {
293                 struct segment *seg;
294                 if (!var) {
295                     var = new_variant(c, 0, url, NULL);
296                     if (!var) {
297                         ret = AVERROR(ENOMEM);
298                         goto fail;
299                     }
300                 }
301                 seg = av_malloc(sizeof(struct segment));
302                 if (!seg) {
303                     ret = AVERROR(ENOMEM);
304                     goto fail;
305                 }
306                 seg->duration = duration;
307                 seg->key_type = key_type;
308                 if (has_iv) {
309                     memcpy(seg->iv, iv, sizeof(iv));
310                 } else {
311                     int seq = var->start_seq_no + var->n_segments;
312                     memset(seg->iv, 0, sizeof(seg->iv));
313                     AV_WB32(seg->iv + 12, seq);
314                 }
315                 ff_make_absolute_url(seg->key, sizeof(seg->key), url, key);
316                 ff_make_absolute_url(seg->url, sizeof(seg->url), url, line);
317                 dynarray_add(&var->segments, &var->n_segments, seg);
318                 is_segment = 0;
319             }
320         }
321     }
322     if (var)
323         var->last_load_time = av_gettime();
324
325 fail:
326     if (close_in)
327         avio_close(in);
328     return ret;
329 }
330
331 static int open_input(struct variant *var)
332 {
333     AVDictionary *opts = NULL;
334     int ret;
335     struct segment *seg = var->segments[var->cur_seq_no - var->start_seq_no];
336     av_dict_set(&opts, "seekable", "0", 0);
337     if (seg->key_type == KEY_NONE) {
338         ret = ffurl_open(&var->input, seg->url, AVIO_FLAG_READ,
339                           &var->parent->interrupt_callback, &opts);
340         goto cleanup;
341     } else if (seg->key_type == KEY_AES_128) {
342         char iv[33], key[33], url[MAX_URL_SIZE];
343         if (strcmp(seg->key, var->key_url)) {
344             URLContext *uc;
345             if (ffurl_open(&uc, seg->key, AVIO_FLAG_READ,
346                            &var->parent->interrupt_callback, &opts) == 0) {
347                 if (ffurl_read_complete(uc, var->key, sizeof(var->key))
348                     != sizeof(var->key)) {
349                     av_log(NULL, AV_LOG_ERROR, "Unable to read key file %s\n",
350                            seg->key);
351                 }
352                 ffurl_close(uc);
353             } else {
354                 av_log(NULL, AV_LOG_ERROR, "Unable to open key file %s\n",
355                        seg->key);
356             }
357             av_strlcpy(var->key_url, seg->key, sizeof(var->key_url));
358         }
359         ff_data_to_hex(iv, seg->iv, sizeof(seg->iv), 0);
360         ff_data_to_hex(key, var->key, sizeof(var->key), 0);
361         iv[32] = key[32] = '\0';
362         if (strstr(seg->url, "://"))
363             snprintf(url, sizeof(url), "crypto+%s", seg->url);
364         else
365             snprintf(url, sizeof(url), "crypto:%s", seg->url);
366         if ((ret = ffurl_alloc(&var->input, url, AVIO_FLAG_READ,
367                                &var->parent->interrupt_callback)) < 0)
368             goto cleanup;
369         av_opt_set(var->input->priv_data, "key", key, 0);
370         av_opt_set(var->input->priv_data, "iv", iv, 0);
371         if ((ret = ffurl_connect(var->input, &opts)) < 0) {
372             ffurl_close(var->input);
373             var->input = NULL;
374             goto cleanup;
375         }
376         ret = 0;
377     }
378     else
379       ret = AVERROR(ENOSYS);
380
381 cleanup:
382     av_dict_free(&opts);
383     return ret;
384 }
385
386 static int read_data(void *opaque, uint8_t *buf, int buf_size)
387 {
388     struct variant *v = opaque;
389     HLSContext *c = v->parent->priv_data;
390     int ret, i;
391
392 restart:
393     if (!v->input) {
394         /* If this is a live stream and the reload interval has elapsed since
395          * the last playlist reload, reload the variant playlists now. */
396         int64_t reload_interval = v->n_segments > 0 ?
397                                   v->segments[v->n_segments - 1]->duration :
398                                   v->target_duration;
399         reload_interval *= 1000000;
400
401 reload:
402         if (!v->finished &&
403             av_gettime() - v->last_load_time >= reload_interval) {
404             if ((ret = parse_playlist(c, v->url, v, NULL)) < 0)
405                 return ret;
406             /* If we need to reload the playlist again below (if
407              * there's still no more segments), switch to a reload
408              * interval of half the target duration. */
409             reload_interval = v->target_duration * 500000;
410         }
411         if (v->cur_seq_no < v->start_seq_no) {
412             av_log(NULL, AV_LOG_WARNING,
413                    "skipping %d segments ahead, expired from playlists\n",
414                    v->start_seq_no - v->cur_seq_no);
415             v->cur_seq_no = v->start_seq_no;
416         }
417         if (v->cur_seq_no >= v->start_seq_no + v->n_segments) {
418             if (v->finished)
419                 return AVERROR_EOF;
420             while (av_gettime() - v->last_load_time < reload_interval) {
421                 if (ff_check_interrupt(c->interrupt_callback))
422                     return AVERROR_EXIT;
423                 av_usleep(100*1000);
424             }
425             /* Enough time has elapsed since the last reload */
426             goto reload;
427         }
428
429         ret = open_input(v);
430         if (ret < 0)
431             return ret;
432     }
433     ret = ffurl_read(v->input, buf, buf_size);
434     if (ret > 0)
435         return ret;
436     ffurl_close(v->input);
437     v->input = NULL;
438     v->cur_seq_no++;
439
440     c->end_of_segment = 1;
441     c->cur_seq_no = v->cur_seq_no;
442
443     if (v->ctx && v->ctx->nb_streams && v->parent->nb_streams >= v->stream_offset + v->ctx->nb_streams) {
444         v->needed = 0;
445         for (i = v->stream_offset; i < v->stream_offset + v->ctx->nb_streams;
446              i++) {
447             if (v->parent->streams[i]->discard < AVDISCARD_ALL)
448                 v->needed = 1;
449         }
450     }
451     if (!v->needed) {
452         av_log(v->parent, AV_LOG_INFO, "No longer receiving variant %d\n",
453                v->index);
454         return AVERROR_EOF;
455     }
456     goto restart;
457 }
458
459 static int hls_read_header(AVFormatContext *s)
460 {
461     HLSContext *c = s->priv_data;
462     int ret = 0, i, j, stream_offset = 0;
463
464     c->interrupt_callback = &s->interrupt_callback;
465
466     if ((ret = parse_playlist(c, s->filename, NULL, s->pb)) < 0)
467         goto fail;
468
469     if (c->n_variants == 0) {
470         av_log(NULL, AV_LOG_WARNING, "Empty playlist\n");
471         ret = AVERROR_EOF;
472         goto fail;
473     }
474     /* If the playlist only contained variants, parse each individual
475      * variant playlist. */
476     if (c->n_variants > 1 || c->variants[0]->n_segments == 0) {
477         for (i = 0; i < c->n_variants; i++) {
478             struct variant *v = c->variants[i];
479             if ((ret = parse_playlist(c, v->url, v, NULL)) < 0)
480                 goto fail;
481         }
482     }
483
484     if (c->variants[0]->n_segments == 0) {
485         av_log(NULL, AV_LOG_WARNING, "Empty playlist\n");
486         ret = AVERROR_EOF;
487         goto fail;
488     }
489
490     /* If this isn't a live stream, calculate the total duration of the
491      * stream. */
492     if (c->variants[0]->finished) {
493         int64_t duration = 0;
494         for (i = 0; i < c->variants[0]->n_segments; i++)
495             duration += c->variants[0]->segments[i]->duration;
496         s->duration = duration * AV_TIME_BASE;
497     }
498
499     /* Open the demuxer for each variant */
500     for (i = 0; i < c->n_variants; i++) {
501         struct variant *v = c->variants[i];
502         AVInputFormat *in_fmt = NULL;
503         char bitrate_str[20];
504         if (v->n_segments == 0)
505             continue;
506
507         if (!(v->ctx = avformat_alloc_context())) {
508             ret = AVERROR(ENOMEM);
509             goto fail;
510         }
511
512         v->index  = i;
513         v->needed = 1;
514         v->parent = s;
515
516         /* If this is a live stream with more than 3 segments, start at the
517          * third last segment. */
518         v->cur_seq_no = v->start_seq_no;
519         if (!v->finished && v->n_segments > 3)
520             v->cur_seq_no = v->start_seq_no + v->n_segments - 3;
521
522         v->read_buffer = av_malloc(INITIAL_BUFFER_SIZE);
523         ffio_init_context(&v->pb, v->read_buffer, INITIAL_BUFFER_SIZE, 0, v,
524                           read_data, NULL, NULL);
525         v->pb.seekable = 0;
526         ret = av_probe_input_buffer(&v->pb, &in_fmt, v->segments[0]->url,
527                                     NULL, 0, 0);
528         if (ret < 0) {
529             /* Free the ctx - it isn't initialized properly at this point,
530              * so avformat_close_input shouldn't be called. If
531              * avformat_open_input fails below, it frees and zeros the
532              * context, so it doesn't need any special treatment like this. */
533             av_log(s, AV_LOG_ERROR, "Error when loading first segment '%s'\n", v->segments[0]->url);
534             avformat_free_context(v->ctx);
535             v->ctx = NULL;
536             goto fail;
537         }
538         v->ctx->pb       = &v->pb;
539         ret = avformat_open_input(&v->ctx, v->segments[0]->url, in_fmt, NULL);
540         if (ret < 0)
541             goto fail;
542
543         v->stream_offset = stream_offset;
544         v->ctx->ctx_flags &= ~AVFMTCTX_NOHEADER;
545         ret = avformat_find_stream_info(v->ctx, NULL);
546         if (ret < 0)
547             goto fail;
548         snprintf(bitrate_str, sizeof(bitrate_str), "%d", v->bandwidth);
549         /* Create new AVStreams for each stream in this variant */
550         for (j = 0; j < v->ctx->nb_streams; j++) {
551             AVStream *st = avformat_new_stream(s, NULL);
552             if (!st) {
553                 ret = AVERROR(ENOMEM);
554                 goto fail;
555             }
556             st->id = i;
557             avcodec_copy_context(st->codec, v->ctx->streams[j]->codec);
558             if (v->bandwidth)
559                 av_dict_set(&st->metadata, "variant_bitrate", bitrate_str,
560                                  0);
561         }
562         stream_offset += v->ctx->nb_streams;
563     }
564
565     c->first_packet = 1;
566     c->first_timestamp = AV_NOPTS_VALUE;
567     c->seek_timestamp  = AV_NOPTS_VALUE;
568
569     return 0;
570 fail:
571     free_variant_list(c);
572     return ret;
573 }
574
575 static int recheck_discard_flags(AVFormatContext *s, int first)
576 {
577     HLSContext *c = s->priv_data;
578     int i, changed = 0;
579
580     /* Check if any new streams are needed */
581     for (i = 0; i < c->n_variants; i++)
582         c->variants[i]->cur_needed = 0;
583
584     for (i = 0; i < s->nb_streams; i++) {
585         AVStream *st = s->streams[i];
586         struct variant *var = c->variants[s->streams[i]->id];
587         if (st->discard < AVDISCARD_ALL)
588             var->cur_needed = 1;
589     }
590     for (i = 0; i < c->n_variants; i++) {
591         struct variant *v = c->variants[i];
592         if (v->cur_needed && !v->needed) {
593             v->needed = 1;
594             changed = 1;
595             v->cur_seq_no = c->cur_seq_no;
596             v->pb.eof_reached = 0;
597             av_log(s, AV_LOG_INFO, "Now receiving variant %d\n", i);
598         } else if (first && !v->cur_needed && v->needed) {
599             if (v->input)
600                 ffurl_close(v->input);
601             v->input = NULL;
602             v->needed = 0;
603             changed = 1;
604             av_log(s, AV_LOG_INFO, "No longer receiving variant %d\n", i);
605         }
606     }
607     return changed;
608 }
609
610 static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
611 {
612     HLSContext *c = s->priv_data;
613     int ret, i, minvariant = -1;
614
615     if (c->first_packet) {
616         recheck_discard_flags(s, 1);
617         c->first_packet = 0;
618     }
619
620 start:
621     c->end_of_segment = 0;
622     for (i = 0; i < c->n_variants; i++) {
623         struct variant *var = c->variants[i];
624         /* Make sure we've got one buffered packet from each open variant
625          * stream */
626         if (var->needed && !var->pkt.data) {
627             while (1) {
628                 int64_t ts_diff;
629                 AVStream *st;
630                 ret = av_read_frame(var->ctx, &var->pkt);
631                 if (ret < 0) {
632                     if (!url_feof(&var->pb) && ret != AVERROR_EOF)
633                         return ret;
634                     reset_packet(&var->pkt);
635                     break;
636                 } else {
637                     if (c->first_timestamp == AV_NOPTS_VALUE)
638                         c->first_timestamp = var->pkt.dts;
639                 }
640
641                 if (c->seek_timestamp == AV_NOPTS_VALUE)
642                     break;
643
644                 if (var->pkt.dts == AV_NOPTS_VALUE) {
645                     c->seek_timestamp = AV_NOPTS_VALUE;
646                     break;
647                 }
648
649                 st = var->ctx->streams[var->pkt.stream_index];
650                 ts_diff = av_rescale_rnd(var->pkt.dts, AV_TIME_BASE,
651                                          st->time_base.den, AV_ROUND_DOWN) -
652                           c->seek_timestamp;
653                 if (ts_diff >= 0 && (c->seek_flags  & AVSEEK_FLAG_ANY ||
654                                      var->pkt.flags & AV_PKT_FLAG_KEY)) {
655                     c->seek_timestamp = AV_NOPTS_VALUE;
656                     break;
657                 }
658             }
659         }
660         /* Check if this stream has the packet with the lowest dts */
661         if (var->pkt.data) {
662             if(minvariant < 0) {
663                 minvariant = i;
664             } else {
665                 struct variant *minvar = c->variants[minvariant];
666                 int64_t dts    =    var->pkt.dts;
667                 int64_t mindts = minvar->pkt.dts;
668                 AVStream *st   =    var->ctx->streams[   var->pkt.stream_index];
669                 AVStream *minst= minvar->ctx->streams[minvar->pkt.stream_index];
670
671                 if(   st->start_time != AV_NOPTS_VALUE)    dts -=    st->start_time;
672                 if(minst->start_time != AV_NOPTS_VALUE) mindts -= minst->start_time;
673
674                 if (av_compare_ts(dts, st->time_base, mindts, minst->time_base) < 0)
675                     minvariant = i;
676             }
677         }
678     }
679     if (c->end_of_segment) {
680         if (recheck_discard_flags(s, 0))
681             goto start;
682     }
683     /* If we got a packet, return it */
684     if (minvariant >= 0) {
685         *pkt = c->variants[minvariant]->pkt;
686         pkt->stream_index += c->variants[minvariant]->stream_offset;
687         reset_packet(&c->variants[minvariant]->pkt);
688         return 0;
689     }
690     return AVERROR_EOF;
691 }
692
693 static int hls_close(AVFormatContext *s)
694 {
695     HLSContext *c = s->priv_data;
696
697     free_variant_list(c);
698     return 0;
699 }
700
701 static int hls_read_seek(AVFormatContext *s, int stream_index,
702                                int64_t timestamp, int flags)
703 {
704     HLSContext *c = s->priv_data;
705     int i, j, ret;
706
707     if ((flags & AVSEEK_FLAG_BYTE) || !c->variants[0]->finished)
708         return AVERROR(ENOSYS);
709
710     c->seek_flags     = flags;
711     c->seek_timestamp = stream_index < 0 ? timestamp :
712                         av_rescale_rnd(timestamp, AV_TIME_BASE,
713                                        s->streams[stream_index]->time_base.den,
714                                        flags & AVSEEK_FLAG_BACKWARD ?
715                                        AV_ROUND_DOWN : AV_ROUND_UP);
716     timestamp = av_rescale_rnd(timestamp, 1, stream_index >= 0 ?
717                                s->streams[stream_index]->time_base.den :
718                                AV_TIME_BASE, flags & AVSEEK_FLAG_BACKWARD ?
719                                AV_ROUND_DOWN : AV_ROUND_UP);
720     if (s->duration < c->seek_timestamp) {
721         c->seek_timestamp = AV_NOPTS_VALUE;
722         return AVERROR(EIO);
723     }
724
725     ret = AVERROR(EIO);
726     for (i = 0; i < c->n_variants; i++) {
727         /* Reset reading */
728         struct variant *var = c->variants[i];
729         int64_t pos = c->first_timestamp == AV_NOPTS_VALUE ? 0 :
730                       av_rescale_rnd(c->first_timestamp, 1, stream_index >= 0 ?
731                                s->streams[stream_index]->time_base.den :
732                                AV_TIME_BASE, flags & AVSEEK_FLAG_BACKWARD ?
733                                AV_ROUND_DOWN : AV_ROUND_UP);
734          if (var->input) {
735             ffurl_close(var->input);
736             var->input = NULL;
737         }
738         av_free_packet(&var->pkt);
739         reset_packet(&var->pkt);
740         var->pb.eof_reached = 0;
741         /* Clear any buffered data */
742         var->pb.buf_end = var->pb.buf_ptr = var->pb.buffer;
743         /* Reset the pos, to let the mpegts demuxer know we've seeked. */
744         var->pb.pos = 0;
745
746         /* Locate the segment that contains the target timestamp */
747         for (j = 0; j < var->n_segments; j++) {
748             if (timestamp >= pos &&
749                 timestamp < pos + var->segments[j]->duration) {
750                 var->cur_seq_no = var->start_seq_no + j;
751                 ret = 0;
752                 break;
753             }
754             pos += var->segments[j]->duration;
755         }
756         if (ret)
757             c->seek_timestamp = AV_NOPTS_VALUE;
758     }
759     return ret;
760 }
761
762 static int hls_probe(AVProbeData *p)
763 {
764     /* Require #EXTM3U at the start, and either one of the ones below
765      * somewhere for a proper match. */
766     if (strncmp(p->buf, "#EXTM3U", 7))
767         return 0;
768     if (strstr(p->buf, "#EXT-X-STREAM-INF:")     ||
769         strstr(p->buf, "#EXT-X-TARGETDURATION:") ||
770         strstr(p->buf, "#EXT-X-MEDIA-SEQUENCE:"))
771         return AVPROBE_SCORE_MAX;
772     return 0;
773 }
774
775 AVInputFormat ff_hls_demuxer = {
776     .name           = "hls,applehttp",
777     .long_name      = NULL_IF_CONFIG_SMALL("Apple HTTP Live Streaming"),
778     .priv_data_size = sizeof(HLSContext),
779     .read_probe     = hls_probe,
780     .read_header    = hls_read_header,
781     .read_packet    = hls_read_packet,
782     .read_close     = hls_close,
783     .read_seek      = hls_read_seek,
784 };