]> git.sesse.net Git - ffmpeg/blob - libavformat/applehttpproto.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / applehttpproto.c
1 /*
2  * Apple HTTP Live Streaming Protocol Handler
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 Protocol Handler
25  * http://tools.ietf.org/html/draft-pantos-http-live-streaming
26  */
27
28 #include "libavutil/avstring.h"
29 #include "avformat.h"
30 #include "internal.h"
31 #include "url.h"
32 #include <unistd.h>
33
34 /*
35  * An apple http stream consists of a playlist with media segment files,
36  * played sequentially. There may be several playlists with the same
37  * video content, in different bandwidth variants, that are played in
38  * parallel (preferrably only one bandwidth variant at a time). In this case,
39  * the user supplied the url to a main playlist that only lists the variant
40  * playlists.
41  *
42  * If the main playlist doesn't point at any variants, we still create
43  * one anonymous toplevel variant for this, to maintain the structure.
44  */
45
46 struct segment {
47     int duration;
48     char url[MAX_URL_SIZE];
49 };
50
51 struct variant {
52     int bandwidth;
53     char url[MAX_URL_SIZE];
54 };
55
56 typedef struct AppleHTTPContext {
57     char playlisturl[MAX_URL_SIZE];
58     int target_duration;
59     int start_seq_no;
60     int finished;
61     int n_segments;
62     struct segment **segments;
63     int n_variants;
64     struct variant **variants;
65     int cur_seq_no;
66     URLContext *seg_hd;
67     int64_t last_load_time;
68 } AppleHTTPContext;
69
70 static int read_chomp_line(AVIOContext *s, char *buf, int maxlen)
71 {
72     int len = ff_get_line(s, buf, maxlen);
73     while (len > 0 && isspace(buf[len - 1]))
74         buf[--len] = '\0';
75     return len;
76 }
77
78 static void free_segment_list(AppleHTTPContext *s)
79 {
80     int i;
81     for (i = 0; i < s->n_segments; i++)
82         av_free(s->segments[i]);
83     av_freep(&s->segments);
84     s->n_segments = 0;
85 }
86
87 static void free_variant_list(AppleHTTPContext *s)
88 {
89     int i;
90     for (i = 0; i < s->n_variants; i++)
91         av_free(s->variants[i]);
92     av_freep(&s->variants);
93     s->n_variants = 0;
94 }
95
96 struct variant_info {
97     char bandwidth[20];
98 };
99
100 static void handle_variant_args(struct variant_info *info, const char *key,
101                                 int key_len, char **dest, int *dest_len)
102 {
103     if (!strncmp(key, "BANDWIDTH=", key_len)) {
104         *dest     =        info->bandwidth;
105         *dest_len = sizeof(info->bandwidth);
106     }
107 }
108
109 static int parse_playlist(URLContext *h, const char *url)
110 {
111     AppleHTTPContext *s = h->priv_data;
112     AVIOContext *in;
113     int ret = 0, duration = 0, is_segment = 0, is_variant = 0, bandwidth = 0;
114     char line[1024];
115     const char *ptr;
116
117     if ((ret = avio_open2(&in, url, AVIO_FLAG_READ,
118                           &h->interrupt_callback, NULL)) < 0)
119         return ret;
120
121     read_chomp_line(in, line, sizeof(line));
122     if (strcmp(line, "#EXTM3U"))
123         return AVERROR_INVALIDDATA;
124
125     free_segment_list(s);
126     s->finished = 0;
127     while (!url_feof(in)) {
128         read_chomp_line(in, line, sizeof(line));
129         if (av_strstart(line, "#EXT-X-STREAM-INF:", &ptr)) {
130             struct variant_info info = {{0}};
131             is_variant = 1;
132             ff_parse_key_value(ptr, (ff_parse_key_val_cb) handle_variant_args,
133                                &info);
134             bandwidth = atoi(info.bandwidth);
135         } else if (av_strstart(line, "#EXT-X-TARGETDURATION:", &ptr)) {
136             s->target_duration = atoi(ptr);
137         } else if (av_strstart(line, "#EXT-X-MEDIA-SEQUENCE:", &ptr)) {
138             s->start_seq_no = atoi(ptr);
139         } else if (av_strstart(line, "#EXT-X-ENDLIST", &ptr)) {
140             s->finished = 1;
141         } else if (av_strstart(line, "#EXTINF:", &ptr)) {
142             is_segment = 1;
143             duration = atoi(ptr);
144         } else if (av_strstart(line, "#", NULL)) {
145             continue;
146         } else if (line[0]) {
147             if (is_segment) {
148                 struct segment *seg = av_malloc(sizeof(struct segment));
149                 if (!seg) {
150                     ret = AVERROR(ENOMEM);
151                     goto fail;
152                 }
153                 seg->duration = duration;
154                 ff_make_absolute_url(seg->url, sizeof(seg->url), url, line);
155                 dynarray_add(&s->segments, &s->n_segments, seg);
156                 is_segment = 0;
157             } else if (is_variant) {
158                 struct variant *var = av_malloc(sizeof(struct variant));
159                 if (!var) {
160                     ret = AVERROR(ENOMEM);
161                     goto fail;
162                 }
163                 var->bandwidth = bandwidth;
164                 ff_make_absolute_url(var->url, sizeof(var->url), url, line);
165                 dynarray_add(&s->variants, &s->n_variants, var);
166                 is_variant = 0;
167             }
168         }
169     }
170     s->last_load_time = av_gettime();
171
172 fail:
173     avio_close(in);
174     return ret;
175 }
176
177 static int applehttp_open(URLContext *h, const char *uri, int flags)
178 {
179     AppleHTTPContext *s;
180     int ret, i;
181     const char *nested_url;
182
183     if (flags & AVIO_FLAG_WRITE)
184         return AVERROR(ENOSYS);
185
186     s = av_mallocz(sizeof(AppleHTTPContext));
187     if (!s)
188         return AVERROR(ENOMEM);
189     h->priv_data = s;
190     h->is_streamed = 1;
191
192     if (av_strstart(uri, "applehttp+", &nested_url)) {
193         av_strlcpy(s->playlisturl, nested_url, sizeof(s->playlisturl));
194     } else if (av_strstart(uri, "applehttp://", &nested_url)) {
195         av_strlcpy(s->playlisturl, "http://", sizeof(s->playlisturl));
196         av_strlcat(s->playlisturl, nested_url, sizeof(s->playlisturl));
197     } else {
198         av_log(h, AV_LOG_ERROR, "Unsupported url %s\n", uri);
199         ret = AVERROR(EINVAL);
200         goto fail;
201     }
202
203     if ((ret = parse_playlist(h, s->playlisturl)) < 0)
204         goto fail;
205
206     if (s->n_segments == 0 && s->n_variants > 0) {
207         int max_bandwidth = 0, maxvar = -1;
208         for (i = 0; i < s->n_variants; i++) {
209             if (s->variants[i]->bandwidth > max_bandwidth || i == 0) {
210                 max_bandwidth = s->variants[i]->bandwidth;
211                 maxvar = i;
212             }
213         }
214         av_strlcpy(s->playlisturl, s->variants[maxvar]->url,
215                    sizeof(s->playlisturl));
216         if ((ret = parse_playlist(h, s->playlisturl)) < 0)
217             goto fail;
218     }
219
220     if (s->n_segments == 0) {
221         av_log(h, AV_LOG_WARNING, "Empty playlist\n");
222         ret = AVERROR(EIO);
223         goto fail;
224     }
225     s->cur_seq_no = s->start_seq_no;
226     if (!s->finished && s->n_segments >= 3)
227         s->cur_seq_no = s->start_seq_no + s->n_segments - 3;
228
229     return 0;
230
231 fail:
232     av_free(s);
233     return ret;
234 }
235
236 static int applehttp_read(URLContext *h, uint8_t *buf, int size)
237 {
238     AppleHTTPContext *s = h->priv_data;
239     const char *url;
240     int ret;
241
242 start:
243     if (s->seg_hd) {
244         ret = ffurl_read(s->seg_hd, buf, size);
245         if (ret > 0)
246             return ret;
247     }
248     if (s->seg_hd) {
249         ffurl_close(s->seg_hd);
250         s->seg_hd = NULL;
251         s->cur_seq_no++;
252     }
253 retry:
254     if (!s->finished) {
255         int64_t now = av_gettime();
256         if (now - s->last_load_time >= s->target_duration*1000000)
257             if ((ret = parse_playlist(h, s->playlisturl)) < 0)
258                 return ret;
259     }
260     if (s->cur_seq_no < s->start_seq_no) {
261         av_log(h, AV_LOG_WARNING,
262                "skipping %d segments ahead, expired from playlist\n",
263                s->start_seq_no - s->cur_seq_no);
264         s->cur_seq_no = s->start_seq_no;
265     }
266     if (s->cur_seq_no - s->start_seq_no >= s->n_segments) {
267         if (s->finished)
268             return AVERROR_EOF;
269         while (av_gettime() - s->last_load_time < s->target_duration*1000000) {
270             if (ff_check_interrupt(&h->interrupt_callback))
271                 return AVERROR_EXIT;
272             usleep(100*1000);
273         }
274         goto retry;
275     }
276     url = s->segments[s->cur_seq_no - s->start_seq_no]->url,
277     av_log(h, AV_LOG_DEBUG, "opening %s\n", url);
278     ret = ffurl_open(&s->seg_hd, url, AVIO_FLAG_READ,
279                      &h->interrupt_callback, NULL);
280     if (ret < 0) {
281         if (ff_check_interrupt(&h->interrupt_callback))
282             return AVERROR_EXIT;
283         av_log(h, AV_LOG_WARNING, "Unable to open %s\n", url);
284         s->cur_seq_no++;
285         goto retry;
286     }
287     goto start;
288 }
289
290 static int applehttp_close(URLContext *h)
291 {
292     AppleHTTPContext *s = h->priv_data;
293
294     free_segment_list(s);
295     free_variant_list(s);
296     ffurl_close(s->seg_hd);
297     av_free(s);
298     return 0;
299 }
300
301 URLProtocol ff_applehttp_protocol = {
302     .name      = "applehttp",
303     .url_open  = applehttp_open,
304     .url_read  = applehttp_read,
305     .url_close = applehttp_close,
306     .flags     = URL_PROTOCOL_FLAG_NESTED_SCHEME,
307 };