Mercurial > libavformat.hg
annotate avio.c @ 3105:2b9c6bfc04a5 libavformat
Use block_align as the avi spec says.
fix issue274
author | michael |
---|---|
date | Mon, 03 Mar 2008 01:27:15 +0000 |
parents | 7a9a045dcdc3 |
children | e38d5357f0d0 |
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 uc->filename = (char *) &uc[1]; |
19 | 86 strcpy(uc->filename, filename); |
0 | 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) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
108 return AVERROR(EIO); |
0 | 109 ret = h->prot->url_read(h, buf, size); |
110 return ret; | |
111 } | |
112 | |
113 int url_write(URLContext *h, unsigned char *buf, int size) | |
114 { | |
115 int ret; | |
116 if (!(h->flags & (URL_WRONLY | URL_RDWR))) | |
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2189
diff
changeset
|
117 return AVERROR(EIO); |
0 | 118 /* avoid sending too big packets */ |
119 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
|
120 return AVERROR(EIO); |
0 | 121 ret = h->prot->url_write(h, buf, size); |
122 return ret; | |
123 } | |
124 | |
125 offset_t url_seek(URLContext *h, offset_t pos, int whence) | |
126 { | |
127 offset_t ret; | |
128 | |
129 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
|
130 return AVERROR(EPIPE); |
0 | 131 ret = h->prot->url_seek(h, pos, whence); |
132 return ret; | |
133 } | |
134 | |
135 int url_close(URLContext *h) | |
136 { | |
2757 | 137 int ret = 0; |
2710 | 138 if (!h) return 0; /* can happen when url_open fails */ |
0 | 139 |
2757 | 140 if (h->prot->url_close) |
141 ret = h->prot->url_close(h); | |
0 | 142 av_free(h); |
143 return ret; | |
144 } | |
145 | |
146 int url_exist(const char *filename) | |
147 { | |
148 URLContext *h; | |
149 if (url_open(&h, filename, URL_RDONLY) < 0) | |
150 return 0; | |
151 url_close(h); | |
152 return 1; | |
153 } | |
154 | |
155 offset_t url_filesize(URLContext *h) | |
156 { | |
157 offset_t pos, size; | |
885 | 158 |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1358
diff
changeset
|
159 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
|
160 if(size<0){ |
1613 | 161 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
|
162 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
|
163 return size; |
2649c0a9c037
protect the size=seek(SEEK_END,-1)+1 results with an if (.. < 0), else the
gpoirier
parents:
1648
diff
changeset
|
164 size++; |
1613 | 165 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
|
166 } |
0 | 167 return size; |
168 } | |
169 | |
170 int url_get_max_packet_size(URLContext *h) | |
171 { | |
172 return h->max_packet_size; | |
173 } | |
19 | 174 |
175 void url_get_filename(URLContext *h, char *buf, int buf_size) | |
176 { | |
2189 | 177 av_strlcpy(buf, h->filename, buf_size); |
19 | 178 } |
177 | 179 |
180 | |
181 static int default_interrupt_cb(void) | |
182 { | |
183 return 0; | |
184 } | |
185 | |
186 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb) | |
187 { | |
188 if (!interrupt_cb) | |
189 interrupt_cb = default_interrupt_cb; | |
190 url_interrupt_cb = interrupt_cb; | |
191 } | |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
192 |
2839
b51319dd86e5
Merge recently added and still unused play and pause functions.
michael
parents:
2834
diff
changeset
|
193 int av_url_read_pause(URLContext *h, int pause) |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
194 { |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
195 if (!h->prot->url_read_pause) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
196 return AVERROR(ENOSYS); |
2839
b51319dd86e5
Merge recently added and still unused play and pause functions.
michael
parents:
2834
diff
changeset
|
197 return h->prot->url_read_pause(h, pause); |
2778
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 |
2840
f51675f78402
Make recently added and still unused read_seek functions return offset_t.
michael
parents:
2839
diff
changeset
|
200 offset_t av_url_read_seek(URLContext *h, |
2778
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
201 int stream_index, int64_t timestamp, int flags) |
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 if (!h->prot->url_read_seek) |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
204 return AVERROR(ENOSYS); |
50e2307414ee
Extend URLProtocol with new function pointers and api functions for
andoma
parents:
2757
diff
changeset
|
205 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
|
206 } |