Mercurial > libavformat.hg
annotate avio.c @ 1546:41356096b2d0 libavformat
Fix compile with --disable-muxers, patch by Lo«Ác Le Loarer, lll+ffmpeg m4x org.
author | diego |
---|---|
date | Thu, 30 Nov 2006 01:00:12 +0000 |
parents | 0899bfe4105c |
children | a6eaa0762191 |
rev | line source |
---|---|
0 | 1 /* |
2 * Unbuffered io for ffmpeg system | |
3 * Copyright (c) 2001 Fabrice Bellard | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
0 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
0 | 11 * |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
0 | 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 | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
905
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
885
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
21 #include "avformat.h" | |
22 | |
177 | 23 static int default_interrupt_cb(void); |
24 | |
0 | 25 URLProtocol *first_protocol = NULL; |
177 | 26 URLInterruptCB *url_interrupt_cb = default_interrupt_cb; |
0 | 27 |
28 int register_protocol(URLProtocol *protocol) | |
29 { | |
30 URLProtocol **p; | |
31 p = &first_protocol; | |
32 while (*p != NULL) p = &(*p)->next; | |
33 *p = protocol; | |
34 protocol->next = NULL; | |
35 return 0; | |
36 } | |
37 | |
38 int url_open(URLContext **puc, const char *filename, int flags) | |
39 { | |
40 URLContext *uc; | |
41 URLProtocol *up; | |
42 const char *p; | |
43 char proto_str[128], *q; | |
44 int err; | |
45 | |
46 p = filename; | |
47 q = proto_str; | |
48 while (*p != '\0' && *p != ':') { | |
67
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
49 /* protocols can only contain alphabetic chars */ |
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
50 if (!isalpha(*p)) |
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
51 goto file_proto; |
0 | 52 if ((q - proto_str) < sizeof(proto_str) - 1) |
53 *q++ = *p; | |
54 p++; | |
55 } | |
56 /* if the protocol has length 1, we consider it is a dos drive */ | |
57 if (*p == '\0' || (q - proto_str) <= 1) { | |
67
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
58 file_proto: |
0 | 59 strcpy(proto_str, "file"); |
60 } else { | |
61 *q = '\0'; | |
62 } | |
885 | 63 |
0 | 64 up = first_protocol; |
65 while (up != NULL) { | |
66 if (!strcmp(proto_str, up->name)) | |
67 goto found; | |
68 up = up->next; | |
69 } | |
70 err = -ENOENT; | |
71 goto fail; | |
72 found: | |
19 | 73 uc = av_malloc(sizeof(URLContext) + strlen(filename)); |
0 | 74 if (!uc) { |
75 err = -ENOMEM; | |
76 goto fail; | |
77 } | |
19 | 78 strcpy(uc->filename, filename); |
0 | 79 uc->prot = up; |
80 uc->flags = flags; | |
81 uc->is_streamed = 0; /* default = not streamed */ | |
82 uc->max_packet_size = 0; /* default: stream file */ | |
83 err = up->url_open(uc, filename, flags); | |
84 if (err < 0) { | |
85 av_free(uc); | |
86 *puc = NULL; | |
87 return err; | |
88 } | |
89 *puc = uc; | |
90 return 0; | |
91 fail: | |
92 *puc = NULL; | |
93 return err; | |
94 } | |
95 | |
96 int url_read(URLContext *h, unsigned char *buf, int size) | |
97 { | |
98 int ret; | |
99 if (h->flags & URL_WRONLY) | |
482 | 100 return AVERROR_IO; |
0 | 101 ret = h->prot->url_read(h, buf, size); |
102 return ret; | |
103 } | |
104 | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
896
diff
changeset
|
105 #if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS) |
0 | 106 int url_write(URLContext *h, unsigned char *buf, int size) |
107 { | |
108 int ret; | |
109 if (!(h->flags & (URL_WRONLY | URL_RDWR))) | |
482 | 110 return AVERROR_IO; |
0 | 111 /* avoid sending too big packets */ |
112 if (h->max_packet_size && size > h->max_packet_size) | |
885 | 113 return AVERROR_IO; |
0 | 114 ret = h->prot->url_write(h, buf, size); |
115 return ret; | |
116 } | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
896
diff
changeset
|
117 #endif //CONFIG_MUXERS || CONFIG_PROTOCOLS |
0 | 118 |
119 offset_t url_seek(URLContext *h, offset_t pos, int whence) | |
120 { | |
121 offset_t ret; | |
122 | |
123 if (!h->prot->url_seek) | |
124 return -EPIPE; | |
125 ret = h->prot->url_seek(h, pos, whence); | |
126 return ret; | |
127 } | |
128 | |
129 int url_close(URLContext *h) | |
130 { | |
131 int ret; | |
132 | |
133 ret = h->prot->url_close(h); | |
134 av_free(h); | |
135 return ret; | |
136 } | |
137 | |
138 int url_exist(const char *filename) | |
139 { | |
140 URLContext *h; | |
141 if (url_open(&h, filename, URL_RDONLY) < 0) | |
142 return 0; | |
143 url_close(h); | |
144 return 1; | |
145 } | |
146 | |
147 offset_t url_filesize(URLContext *h) | |
148 { | |
149 offset_t pos, size; | |
885 | 150 |
0 | 151 pos = url_seek(h, 0, SEEK_CUR); |
433
6e4fc3169fb3
avoid seeking to the end, as it confuses some crappy code
michael
parents:
277
diff
changeset
|
152 size = url_seek(h, -1, SEEK_END)+1; |
0 | 153 url_seek(h, pos, SEEK_SET); |
154 return size; | |
155 } | |
156 | |
885 | 157 /* |
0 | 158 * Return the maximum packet size associated to packetized file |
159 * handle. If the file is not packetized (stream like http or file on | |
160 * disk), then 0 is returned. | |
885 | 161 * |
0 | 162 * @param h file handle |
163 * @return maximum packet size in bytes | |
164 */ | |
165 int url_get_max_packet_size(URLContext *h) | |
166 { | |
167 return h->max_packet_size; | |
168 } | |
19 | 169 |
170 void url_get_filename(URLContext *h, char *buf, int buf_size) | |
171 { | |
172 pstrcpy(buf, buf_size, h->filename); | |
173 } | |
177 | 174 |
175 | |
176 static int default_interrupt_cb(void) | |
177 { | |
178 return 0; | |
179 } | |
180 | |
885 | 181 /** |
177 | 182 * The callback is called in blocking functions to test regulary if |
183 * asynchronous interruption is needed. -EINTR is returned in this | |
184 * case by the interrupted function. 'NULL' means no interrupt | |
885 | 185 * callback is given. |
177 | 186 */ |
187 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb) | |
188 { | |
189 if (!interrupt_cb) | |
190 interrupt_cb = default_interrupt_cb; | |
191 url_interrupt_cb = interrupt_cb; | |
192 } |