]> git.sesse.net Git - ffmpeg/blob - libavformat/avio.c
Fix detected fps for old divx/xvid.
[ffmpeg] / libavformat / avio.c
1 /*
2  * Unbuffered io for ffmpeg system
3  * Copyright (c) 2001 Fabrice Bellard
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 #include "avformat.h"
22 #include "avstring.h"
23
24 static int default_interrupt_cb(void);
25
26 URLProtocol *first_protocol = NULL;
27 URLInterruptCB *url_interrupt_cb = default_interrupt_cb;
28
29 URLProtocol *av_protocol_next(URLProtocol *p)
30 {
31     if(p) return p->next;
32     else  return first_protocol;
33 }
34
35 int register_protocol(URLProtocol *protocol)
36 {
37     URLProtocol **p;
38     p = &first_protocol;
39     while (*p != NULL) p = &(*p)->next;
40     *p = protocol;
41     protocol->next = NULL;
42     return 0;
43 }
44
45 int url_open(URLContext **puc, const char *filename, int flags)
46 {
47     URLContext *uc;
48     URLProtocol *up;
49     const char *p;
50     char proto_str[128], *q;
51     int err;
52
53     p = filename;
54     q = proto_str;
55     while (*p != '\0' && *p != ':') {
56         /* protocols can only contain alphabetic chars */
57         if (!isalpha(*p))
58             goto file_proto;
59         if ((q - proto_str) < sizeof(proto_str) - 1)
60             *q++ = *p;
61         p++;
62     }
63     /* if the protocol has length 1, we consider it is a dos drive */
64     if (*p == '\0' || (q - proto_str) <= 1) {
65     file_proto:
66         strcpy(proto_str, "file");
67     } else {
68         *q = '\0';
69     }
70
71     up = first_protocol;
72     while (up != NULL) {
73         if (!strcmp(proto_str, up->name))
74             goto found;
75         up = up->next;
76     }
77     err = AVERROR(ENOENT);
78     goto fail;
79  found:
80     uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1);
81     if (!uc) {
82         err = AVERROR(ENOMEM);
83         goto fail;
84     }
85     uc->filename = (char *) &uc[1];
86     strcpy(uc->filename, filename);
87     uc->prot = up;
88     uc->flags = flags;
89     uc->is_streamed = 0; /* default = not streamed */
90     uc->max_packet_size = 0; /* default: stream file */
91     err = up->url_open(uc, filename, flags);
92     if (err < 0) {
93         av_free(uc);
94         *puc = NULL;
95         return err;
96     }
97     *puc = uc;
98     return 0;
99  fail:
100     *puc = NULL;
101     return err;
102 }
103
104 int url_read(URLContext *h, unsigned char *buf, int size)
105 {
106     int ret;
107     if (h->flags & URL_WRONLY)
108         return AVERROR(EIO);
109     ret = h->prot->url_read(h, buf, size);
110     return ret;
111 }
112
113 #if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS)
114 int url_write(URLContext *h, unsigned char *buf, int size)
115 {
116     int ret;
117     if (!(h->flags & (URL_WRONLY | URL_RDWR)))
118         return AVERROR(EIO);
119     /* avoid sending too big packets */
120     if (h->max_packet_size && size > h->max_packet_size)
121         return AVERROR(EIO);
122     ret = h->prot->url_write(h, buf, size);
123     return ret;
124 }
125 #endif //CONFIG_MUXERS || CONFIG_PROTOCOLS
126
127 offset_t url_seek(URLContext *h, offset_t pos, int whence)
128 {
129     offset_t ret;
130
131     if (!h->prot->url_seek)
132         return AVERROR(EPIPE);
133     ret = h->prot->url_seek(h, pos, whence);
134     return ret;
135 }
136
137 int url_close(URLContext *h)
138 {
139     int ret = 0;
140     if (!h) return 0; /* can happen when url_open fails */
141
142     if (h->prot->url_close)
143         ret = h->prot->url_close(h);
144     av_free(h);
145     return ret;
146 }
147
148 int url_exist(const char *filename)
149 {
150     URLContext *h;
151     if (url_open(&h, filename, URL_RDONLY) < 0)
152         return 0;
153     url_close(h);
154     return 1;
155 }
156
157 offset_t url_filesize(URLContext *h)
158 {
159     offset_t pos, size;
160
161     size= url_seek(h, 0, AVSEEK_SIZE);
162     if(size<0){
163         pos = url_seek(h, 0, SEEK_CUR);
164         if ((size = url_seek(h, -1, SEEK_END)) < 0)
165             return size;
166         size++;
167         url_seek(h, pos, SEEK_SET);
168     }
169     return size;
170 }
171
172 int url_get_max_packet_size(URLContext *h)
173 {
174     return h->max_packet_size;
175 }
176
177 void url_get_filename(URLContext *h, char *buf, int buf_size)
178 {
179     av_strlcpy(buf, h->filename, buf_size);
180 }
181
182
183 static int default_interrupt_cb(void)
184 {
185     return 0;
186 }
187
188 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb)
189 {
190     if (!interrupt_cb)
191         interrupt_cb = default_interrupt_cb;
192     url_interrupt_cb = interrupt_cb;
193 }
194
195 int av_url_read_pause(URLContext *h, int pause)
196 {
197     if (!h->prot->url_read_pause)
198         return AVERROR(ENOSYS);
199     return h->prot->url_read_pause(h, pause);
200 }
201
202 offset_t av_url_read_seek(URLContext *h,
203         int stream_index, int64_t timestamp, int flags)
204 {
205     if (!h->prot->url_read_seek)
206         return AVERROR(ENOSYS);
207     return h->prot->url_read_seek(h, stream_index, timestamp, flags);
208 }