Mercurial > libavformat.hg
annotate avio.c @ 1730:05e2cabcd8ed libavformat
remove useless field
author | bcoudurier |
---|---|
date | Wed, 24 Jan 2007 10:57:38 +0000 |
parents | 90987914ad57 |
children | 2649c0a9c037 |
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: | |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
73 uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1); |
0 | 74 if (!uc) { |
75 err = -ENOMEM; | |
76 goto fail; | |
77 } | |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
78 #if LIBAVFORMAT_VERSION_INT >= (52<<16) |
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
79 uc->filename = (char *) &uc[1]; |
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
80 #endif |
19 | 81 strcpy(uc->filename, filename); |
0 | 82 uc->prot = up; |
83 uc->flags = flags; | |
84 uc->is_streamed = 0; /* default = not streamed */ | |
85 uc->max_packet_size = 0; /* default: stream file */ | |
86 err = up->url_open(uc, filename, flags); | |
87 if (err < 0) { | |
88 av_free(uc); | |
89 *puc = NULL; | |
90 return err; | |
91 } | |
92 *puc = uc; | |
93 return 0; | |
94 fail: | |
95 *puc = NULL; | |
96 return err; | |
97 } | |
98 | |
99 int url_read(URLContext *h, unsigned char *buf, int size) | |
100 { | |
101 int ret; | |
102 if (h->flags & URL_WRONLY) | |
482 | 103 return AVERROR_IO; |
0 | 104 ret = h->prot->url_read(h, buf, size); |
105 return ret; | |
106 } | |
107 | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
896
diff
changeset
|
108 #if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS) |
0 | 109 int url_write(URLContext *h, unsigned char *buf, int size) |
110 { | |
111 int ret; | |
112 if (!(h->flags & (URL_WRONLY | URL_RDWR))) | |
482 | 113 return AVERROR_IO; |
0 | 114 /* avoid sending too big packets */ |
115 if (h->max_packet_size && size > h->max_packet_size) | |
885 | 116 return AVERROR_IO; |
0 | 117 ret = h->prot->url_write(h, buf, size); |
118 return ret; | |
119 } | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
896
diff
changeset
|
120 #endif //CONFIG_MUXERS || CONFIG_PROTOCOLS |
0 | 121 |
122 offset_t url_seek(URLContext *h, offset_t pos, int whence) | |
123 { | |
124 offset_t ret; | |
125 | |
126 if (!h->prot->url_seek) | |
127 return -EPIPE; | |
128 ret = h->prot->url_seek(h, pos, whence); | |
129 return ret; | |
130 } | |
131 | |
132 int url_close(URLContext *h) | |
133 { | |
134 int ret; | |
135 | |
136 ret = h->prot->url_close(h); | |
137 av_free(h); | |
138 return ret; | |
139 } | |
140 | |
141 int url_exist(const char *filename) | |
142 { | |
143 URLContext *h; | |
144 if (url_open(&h, filename, URL_RDONLY) < 0) | |
145 return 0; | |
146 url_close(h); | |
147 return 1; | |
148 } | |
149 | |
150 offset_t url_filesize(URLContext *h) | |
151 { | |
152 offset_t pos, size; | |
885 | 153 |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
154 size= url_seek(h, 0, AVSEEK_SIZE); |
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
155 if(size<0){ |
1613 | 156 pos = url_seek(h, 0, SEEK_CUR); |
157 size = url_seek(h, -1, SEEK_END)+1; | |
158 url_seek(h, pos, SEEK_SET); | |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
159 } |
0 | 160 return size; |
161 } | |
162 | |
885 | 163 /* |
0 | 164 * Return the maximum packet size associated to packetized file |
165 * handle. If the file is not packetized (stream like http or file on | |
166 * disk), then 0 is returned. | |
885 | 167 * |
0 | 168 * @param h file handle |
169 * @return maximum packet size in bytes | |
170 */ | |
171 int url_get_max_packet_size(URLContext *h) | |
172 { | |
173 return h->max_packet_size; | |
174 } | |
19 | 175 |
176 void url_get_filename(URLContext *h, char *buf, int buf_size) | |
177 { | |
178 pstrcpy(buf, buf_size, h->filename); | |
179 } | |
177 | 180 |
181 | |
182 static int default_interrupt_cb(void) | |
183 { | |
184 return 0; | |
185 } | |
186 | |
885 | 187 /** |
177 | 188 * The callback is called in blocking functions to test regulary if |
189 * asynchronous interruption is needed. -EINTR is returned in this | |
190 * case by the interrupted function. 'NULL' means no interrupt | |
885 | 191 * callback is given. |
177 | 192 */ |
193 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb) | |
194 { | |
195 if (!interrupt_cb) | |
196 interrupt_cb = default_interrupt_cb; | |
197 url_interrupt_cb = interrupt_cb; | |
198 } |