Mercurial > libavformat.hg
annotate avio.c @ 2827:f717dd23fc23 libavformat
Enable av_read_pause(), av_read_play() and the ASF demuxer's av_read_seek()
to use the protocol-native functionality if available.
Patch by Bj«Órn Axelsson: bjorn point axelsson at intinor dot se
Original thread: [FFmpeg-devel] [PATCH][4/4] Enable use of the extended API
Date: Thu Nov 22 16:01:06 CET 2007
author | benoit |
---|---|
date | Mon, 17 Dec 2007 09:28:46 +0000 |
parents | 173b5cb7efde |
children | 63fda6ba2173 |
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" | |
2189 | 22 #include "avstring.h" |
0 | 23 |
177 | 24 static int default_interrupt_cb(void); |
25 | |
0 | 26 URLProtocol *first_protocol = NULL; |
177 | 27 URLInterruptCB *url_interrupt_cb = default_interrupt_cb; |
0 | 28 |
2812 | 29 URLProtocol *av_protocol_next(URLProtocol *p) |
30 { | |
31 if(p) return p->next; | |
32 else return first_protocol; | |
33 } | |
34 | |
0 | 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 != ':') { | |
67
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
56 /* protocols can only contain alphabetic chars */ |
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
57 if (!isalpha(*p)) |
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
58 goto file_proto; |
0 | 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) { | |
67
22e4d9d88e25
avoid false URL protocol detection when using ':' in filenames
bellard
parents:
19
diff
changeset
|
65 file_proto: |
0 | 66 strcpy(proto_str, "file"); |
67 } else { | |
68 *q = '\0'; | |
69 } | |
885 | 70 |
0 | 71 up = first_protocol; |
72 while (up != NULL) { | |
73 if (!strcmp(proto_str, up->name)) | |
74 goto found; | |
75 up = up->next; | |
76 } | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1746
diff
changeset
|
77 err = AVERROR(ENOENT); |
0 | 78 goto fail; |
79 found: | |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
80 uc = av_malloc(sizeof(URLContext) + strlen(filename) + 1); |
0 | 81 if (!uc) { |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1746
diff
changeset
|
82 err = AVERROR(ENOMEM); |
0 | 83 goto fail; |
84 } | |
1648
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
85 #if LIBAVFORMAT_VERSION_INT >= (52<<16) |
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
86 uc->filename = (char *) &uc[1]; |
90987914ad57
makes the filename member of the URLContext a pointer, so that the
gpoirier
parents:
1613
diff
changeset
|
87 #endif |
19 | 88 strcpy(uc->filename, filename); |
0 | 89 uc->prot = up; |
90 uc->flags = flags; | |
91 uc->is_streamed = 0; /* default = not streamed */ | |
92 uc->max_packet_size = 0; /* default: stream file */ | |
93 err = up->url_open(uc, filename, flags); | |
94 if (err < 0) { | |
95 av_free(uc); | |
96 *puc = NULL; | |
97 return err; | |
98 } | |
99 *puc = uc; | |
100 return 0; | |
101 fail: | |
102 *puc = NULL; | |
103 return err; | |
104 } | |
105 | |
106 int url_read(URLContext *h, unsigned char *buf, int size) | |
107 { | |
108 int ret; | |
109 if (h->flags & URL_WRONLY) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
110 return AVERROR(EIO); |
0 | 111 ret = h->prot->url_read(h, buf, size); |
112 return ret; | |
113 } | |
114 | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
896
diff
changeset
|
115 #if defined(CONFIG_MUXERS) || defined(CONFIG_PROTOCOLS) |
0 | 116 int url_write(URLContext *h, unsigned char *buf, int size) |
117 { | |
118 int ret; | |
119 if (!(h->flags & (URL_WRONLY | URL_RDWR))) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
120 return AVERROR(EIO); |
0 | 121 /* avoid sending too big packets */ |
122 if (h->max_packet_size && size > h->max_packet_size) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
123 return AVERROR(EIO); |
0 | 124 ret = h->prot->url_write(h, buf, size); |
125 return ret; | |
126 } | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
896
diff
changeset
|
127 #endif //CONFIG_MUXERS || CONFIG_PROTOCOLS |
0 | 128 |
129 offset_t url_seek(URLContext *h, offset_t pos, int whence) | |
130 { | |
131 offset_t ret; | |
132 | |
133 if (!h->prot->url_seek) | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1746
diff
changeset
|
134 return AVERROR(EPIPE); |
0 | 135 ret = h->prot->url_seek(h, pos, whence); |
136 return ret; | |
137 } | |
138 | |
139 int url_close(URLContext *h) | |
140 { | |
2757 | 141 int ret = 0; |
2710 | 142 if (!h) return 0; /* can happen when url_open fails */ |
0 | 143 |
2757 | 144 if (h->prot->url_close) |
145 ret = h->prot->url_close(h); | |
0 | 146 av_free(h); |
147 return ret; | |
148 } | |
149 | |
150 int url_exist(const char *filename) | |
151 { | |
152 URLContext *h; | |
153 if (url_open(&h, filename, URL_RDONLY) < 0) | |
154 return 0; | |
155 url_close(h); | |
156 return 1; | |
157 } | |
158 | |
159 offset_t url_filesize(URLContext *h) | |
160 { | |
161 offset_t pos, size; | |
885 | 162 |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
163 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
|
164 if(size<0){ |
1613 | 165 pos = url_seek(h, 0, SEEK_CUR); |
1746
2649c0a9c037
protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents:
1648
diff
changeset
|
166 if ((size = url_seek(h, -1, SEEK_END)) < 0) |
2649c0a9c037
protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents:
1648
diff
changeset
|
167 return size; |
2649c0a9c037
protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents:
1648
diff
changeset
|
168 size++; |
1613 | 169 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
|
170 } |
0 | 171 return size; |
172 } | |
173 | |
174 int url_get_max_packet_size(URLContext *h) | |
175 { | |
176 return h->max_packet_size; | |
177 } | |
19 | 178 |
179 void url_get_filename(URLContext *h, char *buf, int buf_size) | |
180 { | |
2189 | 181 av_strlcpy(buf, h->filename, buf_size); |
19 | 182 } |
177 | 183 |
184 | |
185 static int default_interrupt_cb(void) | |
186 { | |
187 return 0; | |
188 } | |
189 | |
190 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb) | |
191 { | |
192 if (!interrupt_cb) | |
193 interrupt_cb = default_interrupt_cb; | |
194 url_interrupt_cb = interrupt_cb; | |
195 } | |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
196 |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
197 int av_url_read_play(URLContext *h) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
198 { |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
199 if (!h->prot->url_read_play) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
200 return AVERROR(ENOSYS); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
201 return h->prot->url_read_play(h); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
202 } |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
203 |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
204 int av_url_read_pause(URLContext *h) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
205 { |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
206 if (!h->prot->url_read_pause) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
207 return AVERROR(ENOSYS); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
208 return h->prot->url_read_pause(h); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
209 } |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
210 |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
211 int av_url_read_seek(URLContext *h, |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
212 int stream_index, int64_t timestamp, int flags) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
213 { |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
214 if (!h->prot->url_read_seek) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
215 return AVERROR(ENOSYS); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
216 return h->prot->url_read_seek(h, stream_index, timestamp, flags); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
217 } |