]> git.sesse.net Git - ffmpeg/blob - libavformat/avio.c
mpegvideo_enc: enable rtp_mode when multiple slices are used
[ffmpeg] / libavformat / avio.c
1 /*
2  * unbuffered I/O
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/avstring.h"
23 #include "libavutil/dict.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/time.h"
26 #include "os_support.h"
27 #include "avformat.h"
28 #if CONFIG_NETWORK
29 #include "network.h"
30 #endif
31 #include "url.h"
32
33 static URLProtocol *first_protocol = NULL;
34
35 URLProtocol *ffurl_protocol_next(const URLProtocol *prev)
36 {
37     return prev ? prev->next : first_protocol;
38 }
39
40 /** @name Logging context. */
41 /*@{*/
42 static const char *urlcontext_to_name(void *ptr)
43 {
44     URLContext *h = (URLContext *)ptr;
45     if (h->prot)
46         return h->prot->name;
47     else
48         return "NULL";
49 }
50
51 static void *urlcontext_child_next(void *obj, void *prev)
52 {
53     URLContext *h = obj;
54     if (!prev && h->priv_data && h->prot->priv_data_class)
55         return h->priv_data;
56     return NULL;
57 }
58
59 static const AVClass *urlcontext_child_class_next(const AVClass *prev)
60 {
61     URLProtocol *p = NULL;
62
63     /* find the protocol that corresponds to prev */
64     while (prev && (p = ffurl_protocol_next(p)))
65         if (p->priv_data_class == prev)
66             break;
67
68     /* find next protocol with priv options */
69     while (p = ffurl_protocol_next(p))
70         if (p->priv_data_class)
71             return p->priv_data_class;
72     return NULL;
73 }
74
75 static const AVOption options[] = { { NULL } };
76 const AVClass ffurl_context_class = {
77     .class_name       = "URLContext",
78     .item_name        = urlcontext_to_name,
79     .option           = options,
80     .version          = LIBAVUTIL_VERSION_INT,
81     .child_next       = urlcontext_child_next,
82     .child_class_next = urlcontext_child_class_next,
83 };
84 /*@}*/
85
86 const char *avio_enum_protocols(void **opaque, int output)
87 {
88     URLProtocol *p;
89     *opaque = ffurl_protocol_next(*opaque);
90     if (!(p = *opaque))
91         return NULL;
92     if ((output && p->url_write) || (!output && p->url_read))
93         return p->name;
94     return avio_enum_protocols(opaque, output);
95 }
96
97 int ffurl_register_protocol(URLProtocol *protocol)
98 {
99     URLProtocol **p;
100     p = &first_protocol;
101     while (*p)
102         p = &(*p)->next;
103     *p             = protocol;
104     protocol->next = NULL;
105     return 0;
106 }
107
108 static int url_alloc_for_protocol(URLContext **puc, struct URLProtocol *up,
109                                   const char *filename, int flags,
110                                   const AVIOInterruptCB *int_cb)
111 {
112     URLContext *uc;
113     int err;
114
115 #if CONFIG_NETWORK
116     if (up->flags & URL_PROTOCOL_FLAG_NETWORK && !ff_network_init())
117         return AVERROR(EIO);
118 #endif
119     uc = av_mallocz(sizeof(URLContext) + strlen(filename) + 1);
120     if (!uc) {
121         err = AVERROR(ENOMEM);
122         goto fail;
123     }
124     uc->av_class = &ffurl_context_class;
125     uc->filename = (char *)&uc[1];
126     strcpy(uc->filename, filename);
127     uc->prot            = up;
128     uc->flags           = flags;
129     uc->is_streamed     = 0; /* default = not streamed */
130     uc->max_packet_size = 0; /* default: stream file */
131     if (up->priv_data_size) {
132         uc->priv_data = av_mallocz(up->priv_data_size);
133         if (!uc->priv_data) {
134             err = AVERROR(ENOMEM);
135             goto fail;
136         }
137         if (up->priv_data_class) {
138             *(const AVClass **)uc->priv_data = up->priv_data_class;
139             av_opt_set_defaults(uc->priv_data);
140         }
141     }
142     if (int_cb)
143         uc->interrupt_callback = *int_cb;
144
145     *puc = uc;
146     return 0;
147 fail:
148     *puc = NULL;
149     if (uc)
150         av_freep(&uc->priv_data);
151     av_freep(&uc);
152 #if CONFIG_NETWORK
153     if (up->flags & URL_PROTOCOL_FLAG_NETWORK)
154         ff_network_close();
155 #endif
156     return err;
157 }
158
159 int ffurl_connect(URLContext *uc, AVDictionary **options)
160 {
161     int err =
162         uc->prot->url_open2 ? uc->prot->url_open2(uc,
163                                                   uc->filename,
164                                                   uc->flags,
165                                                   options) :
166         uc->prot->url_open(uc, uc->filename, uc->flags);
167     if (err)
168         return err;
169     uc->is_connected = 1;
170     /* We must be careful here as ffurl_seek() could be slow,
171      * for example for http */
172     if ((uc->flags & AVIO_FLAG_WRITE) || !strcmp(uc->prot->name, "file"))
173         if (!uc->is_streamed && ffurl_seek(uc, 0, SEEK_SET) < 0)
174             uc->is_streamed = 1;
175     return 0;
176 }
177
178 #define URL_SCHEME_CHARS                        \
179     "abcdefghijklmnopqrstuvwxyz"                \
180     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"                \
181     "0123456789+-."
182
183 int ffurl_alloc(URLContext **puc, const char *filename, int flags,
184                 const AVIOInterruptCB *int_cb)
185 {
186     URLProtocol *up = NULL;
187     char proto_str[128], proto_nested[128], *ptr;
188     size_t proto_len = strspn(filename, URL_SCHEME_CHARS);
189
190     if (filename[proto_len] != ':' || is_dos_path(filename))
191         strcpy(proto_str, "file");
192     else
193         av_strlcpy(proto_str, filename,
194                    FFMIN(proto_len + 1, sizeof(proto_str)));
195
196     av_strlcpy(proto_nested, proto_str, sizeof(proto_nested));
197     if ((ptr = strchr(proto_nested, '+')))
198         *ptr = '\0';
199
200     while (up = ffurl_protocol_next(up)) {
201         if (!strcmp(proto_str, up->name))
202             return url_alloc_for_protocol(puc, up, filename, flags, int_cb);
203         if (up->flags & URL_PROTOCOL_FLAG_NESTED_SCHEME &&
204             !strcmp(proto_nested, up->name))
205             return url_alloc_for_protocol(puc, up, filename, flags, int_cb);
206     }
207     *puc = NULL;
208     return AVERROR_PROTOCOL_NOT_FOUND;
209 }
210
211 int ffurl_open(URLContext **puc, const char *filename, int flags,
212                const AVIOInterruptCB *int_cb, AVDictionary **options)
213 {
214     int ret = ffurl_alloc(puc, filename, flags, int_cb);
215     if (ret)
216         return ret;
217     if (options && (*puc)->prot->priv_data_class &&
218         (ret = av_opt_set_dict((*puc)->priv_data, options)) < 0)
219         goto fail;
220     ret = ffurl_connect(*puc, options);
221     if (!ret)
222         return 0;
223 fail:
224     ffurl_close(*puc);
225     *puc = NULL;
226     return ret;
227 }
228
229 static inline int retry_transfer_wrapper(URLContext *h, uint8_t *buf,
230                                          int size, int size_min,
231                                          int (*transfer_func)(URLContext *h,
232                                                               uint8_t *buf,
233                                                               int size))
234 {
235     int ret, len;
236     int fast_retries = 5;
237
238     len = 0;
239     while (len < size_min) {
240         ret = transfer_func(h, buf + len, size - len);
241         if (ret == AVERROR(EINTR))
242             continue;
243         if (h->flags & AVIO_FLAG_NONBLOCK)
244             return ret;
245         if (ret == AVERROR(EAGAIN)) {
246             ret = 0;
247             if (fast_retries)
248                 fast_retries--;
249             else
250                 av_usleep(1000);
251         } else if (ret < 1)
252             return (ret < 0 && ret != AVERROR_EOF) ? ret : len;
253         if (ret)
254             fast_retries = FFMAX(fast_retries, 2);
255         len += ret;
256         if (ff_check_interrupt(&h->interrupt_callback))
257             return AVERROR_EXIT;
258     }
259     return len;
260 }
261
262 int ffurl_read(URLContext *h, unsigned char *buf, int size)
263 {
264     if (!(h->flags & AVIO_FLAG_READ))
265         return AVERROR(EIO);
266     return retry_transfer_wrapper(h, buf, size, 1, h->prot->url_read);
267 }
268
269 int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
270 {
271     if (!(h->flags & AVIO_FLAG_READ))
272         return AVERROR(EIO);
273     return retry_transfer_wrapper(h, buf, size, size, h->prot->url_read);
274 }
275
276 int ffurl_write(URLContext *h, const unsigned char *buf, int size)
277 {
278     if (!(h->flags & AVIO_FLAG_WRITE))
279         return AVERROR(EIO);
280     /* avoid sending too big packets */
281     if (h->max_packet_size && size > h->max_packet_size)
282         return AVERROR(EIO);
283
284     return retry_transfer_wrapper(h, buf, size, size,
285                                   (int (*)(struct URLContext *, uint8_t *, int))
286                                   h->prot->url_write);
287 }
288
289 int64_t ffurl_seek(URLContext *h, int64_t pos, int whence)
290 {
291     int64_t ret;
292
293     if (!h->prot->url_seek)
294         return AVERROR(ENOSYS);
295     ret = h->prot->url_seek(h, pos, whence & ~AVSEEK_FORCE);
296     return ret;
297 }
298
299 int ffurl_close(URLContext *h)
300 {
301     int ret = 0;
302     if (!h)
303         return 0;     /* can happen when ffurl_open fails */
304
305     if (h->is_connected && h->prot->url_close)
306         ret = h->prot->url_close(h);
307 #if CONFIG_NETWORK
308     if (h->prot->flags & URL_PROTOCOL_FLAG_NETWORK)
309         ff_network_close();
310 #endif
311     if (h->prot->priv_data_size) {
312         if (h->prot->priv_data_class)
313             av_opt_free(h->priv_data);
314         av_free(h->priv_data);
315     }
316     av_free(h);
317     return ret;
318 }
319
320 int avio_check(const char *url, int flags)
321 {
322     URLContext *h;
323     int ret = ffurl_alloc(&h, url, flags, NULL);
324     if (ret)
325         return ret;
326
327     if (h->prot->url_check) {
328         ret = h->prot->url_check(h, flags);
329     } else {
330         ret = ffurl_connect(h, NULL);
331         if (ret >= 0)
332             ret = flags;
333     }
334
335     ffurl_close(h);
336     return ret;
337 }
338
339 int64_t ffurl_size(URLContext *h)
340 {
341     int64_t pos, size;
342
343     size = ffurl_seek(h, 0, AVSEEK_SIZE);
344     if (size < 0) {
345         pos = ffurl_seek(h, 0, SEEK_CUR);
346         if ((size = ffurl_seek(h, -1, SEEK_END)) < 0)
347             return size;
348         size++;
349         ffurl_seek(h, pos, SEEK_SET);
350     }
351     return size;
352 }
353
354 int ffurl_get_file_handle(URLContext *h)
355 {
356     if (!h->prot->url_get_file_handle)
357         return -1;
358     return h->prot->url_get_file_handle(h);
359 }
360
361 int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
362 {
363     if (!h->prot->url_get_multi_file_handle) {
364         if (!h->prot->url_get_file_handle)
365             return AVERROR(ENOSYS);
366         *handles = av_malloc(sizeof(**handles));
367         if (!*handles)
368             return AVERROR(ENOMEM);
369         *numhandles = 1;
370         *handles[0] = h->prot->url_get_file_handle(h);
371         return 0;
372     }
373     return h->prot->url_get_multi_file_handle(h, handles, numhandles);
374 }
375
376 int ffurl_shutdown(URLContext *h, int flags)
377 {
378     if (!h->prot->url_shutdown)
379         return AVERROR(EINVAL);
380     return h->prot->url_shutdown(h, flags);
381 }
382
383 int ff_check_interrupt(AVIOInterruptCB *cb)
384 {
385     int ret;
386     if (cb && cb->callback && (ret = cb->callback(cb->opaque)))
387         return ret;
388     return 0;
389 }