Mercurial > libavformat.hg
annotate aviobuf.c @ 1801:9cd35d039830 libavformat
spit an error message in case of invalid chunk
author | alex |
---|---|
date | Sun, 18 Feb 2007 00:47:13 +0000 |
parents | eb16c64144ee |
children | 3328f652d741 |
rev | line source |
---|---|
0 | 1 /* |
2 * Buffered I/O for ffmpeg system | |
3 * Copyright (c) 2000,2001 Fabrice Bellard | |
4 * | |
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1326
diff
changeset
|
5 * This file is part of FFmpeg. |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1326
diff
changeset
|
6 * |
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1326
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:
1326
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:
1326
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:
1326
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:
887
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 20 */ |
21 #include "avformat.h" | |
64 | 22 #include "avio.h" |
0 | 23 #include <stdarg.h> |
24 | |
25 #define IO_BUFFER_SIZE 32768 | |
26 | |
1326 | 27 static void fill_buffer(ByteIOContext *s); |
28 | |
0 | 29 int init_put_byte(ByteIOContext *s, |
30 unsigned char *buffer, | |
31 int buffer_size, | |
32 int write_flag, | |
33 void *opaque, | |
65 | 34 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size), |
554 | 35 int (*write_packet)(void *opaque, uint8_t *buf, int buf_size), |
778
4fbe04f998bf
Fix url_fsize for large files patch by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents:
764
diff
changeset
|
36 offset_t (*seek)(void *opaque, offset_t offset, int whence)) |
0 | 37 { |
38 s->buffer = buffer; | |
39 s->buffer_size = buffer_size; | |
40 s->buf_ptr = buffer; | |
41 s->write_flag = write_flag; | |
885 | 42 if (!s->write_flag) |
0 | 43 s->buf_end = buffer; |
44 else | |
45 s->buf_end = buffer + buffer_size; | |
46 s->opaque = opaque; | |
47 s->write_packet = write_packet; | |
48 s->read_packet = read_packet; | |
49 s->seek = seek; | |
50 s->pos = 0; | |
51 s->must_flush = 0; | |
52 s->eof_reached = 0; | |
554 | 53 s->error = 0; |
0 | 54 s->is_streamed = 0; |
55 s->max_packet_size = 0; | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
56 s->update_checksum= NULL; |
1403
1973528c6975
move memory reading ByteIOContext init from mov.c to avobuf.c
michael
parents:
1358
diff
changeset
|
57 if(!read_packet && !write_flag){ |
1973528c6975
move memory reading ByteIOContext init from mov.c to avobuf.c
michael
parents:
1358
diff
changeset
|
58 s->pos = buffer_size; |
1973528c6975
move memory reading ByteIOContext init from mov.c to avobuf.c
michael
parents:
1358
diff
changeset
|
59 s->buf_end = s->buffer + buffer_size; |
1973528c6975
move memory reading ByteIOContext init from mov.c to avobuf.c
michael
parents:
1358
diff
changeset
|
60 } |
0 | 61 return 0; |
62 } | |
885 | 63 |
0 | 64 static void flush_buffer(ByteIOContext *s) |
65 { | |
66 if (s->buf_ptr > s->buffer) { | |
554 | 67 if (s->write_packet && !s->error){ |
68 int ret= s->write_packet(s->opaque, s->buffer, s->buf_ptr - s->buffer); | |
69 if(ret < 0){ | |
70 s->error = ret; | |
71 } | |
72 } | |
421 | 73 if(s->update_checksum){ |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
74 s->checksum= s->update_checksum(s->checksum, s->checksum_ptr, s->buf_ptr - s->checksum_ptr); |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
75 s->checksum_ptr= s->buffer; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
76 } |
0 | 77 s->pos += s->buf_ptr - s->buffer; |
78 } | |
79 s->buf_ptr = s->buffer; | |
80 } | |
81 | |
82 void put_byte(ByteIOContext *s, int b) | |
83 { | |
84 *(s->buf_ptr)++ = b; | |
885 | 85 if (s->buf_ptr >= s->buf_end) |
0 | 86 flush_buffer(s); |
87 } | |
88 | |
89 void put_buffer(ByteIOContext *s, const unsigned char *buf, int size) | |
90 { | |
91 int len; | |
92 | |
93 while (size > 0) { | |
94 len = (s->buf_end - s->buf_ptr); | |
95 if (len > size) | |
96 len = size; | |
97 memcpy(s->buf_ptr, buf, len); | |
98 s->buf_ptr += len; | |
99 | |
885 | 100 if (s->buf_ptr >= s->buf_end) |
0 | 101 flush_buffer(s); |
102 | |
103 buf += len; | |
104 size -= len; | |
105 } | |
106 } | |
107 | |
108 void put_flush_packet(ByteIOContext *s) | |
109 { | |
110 flush_buffer(s); | |
111 s->must_flush = 0; | |
112 } | |
113 | |
114 offset_t url_fseek(ByteIOContext *s, offset_t offset, int whence) | |
115 { | |
116 offset_t offset1; | |
1323 | 117 offset_t pos= s->pos - (s->write_flag ? 0 : (s->buf_end - s->buffer)); |
0 | 118 |
119 if (whence != SEEK_CUR && whence != SEEK_SET) | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1747
diff
changeset
|
120 return AVERROR(EINVAL); |
885 | 121 |
1323 | 122 if (whence == SEEK_CUR) { |
123 offset1 = pos + (s->buf_ptr - s->buffer); | |
124 if (offset == 0) | |
125 return offset1; | |
126 offset += offset1; | |
127 } | |
128 offset1 = offset - pos; | |
129 if (!s->must_flush && | |
130 offset1 >= 0 && offset1 < (s->buf_end - s->buffer)) { | |
131 /* can do the seek inside the buffer */ | |
132 s->buf_ptr = s->buffer + offset1; | |
1326 | 133 } else if(s->is_streamed && !s->write_flag && |
134 offset1 >= 0 && offset1 < (s->buf_end - s->buffer) + (1<<16)){ | |
135 while(s->pos < offset && !s->eof_reached) | |
136 fill_buffer(s); | |
137 s->buf_ptr = s->buf_end + offset - s->pos; | |
1323 | 138 } else { |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1747
diff
changeset
|
139 offset_t res = AVERROR(EPIPE); |
1747
fa70e732d2db
Fix misbehaviour in url_fseek() when seeking fails.
gpoirier
parents:
1741
diff
changeset
|
140 |
1546
41356096b2d0
Fix compile with --disable-muxers, patch by Lo«Ác Le Loarer, lll+ffmpeg m4x org.
diego
parents:
1403
diff
changeset
|
141 #if defined(CONFIG_MUXERS) || defined(CONFIG_NETWORK) |
1323 | 142 if (s->write_flag) { |
0 | 143 flush_buffer(s); |
144 s->must_flush = 1; | |
1323 | 145 } else |
1546
41356096b2d0
Fix compile with --disable-muxers, patch by Lo«Ác Le Loarer, lll+ffmpeg m4x org.
diego
parents:
1403
diff
changeset
|
146 #endif /* defined(CONFIG_MUXERS) || defined(CONFIG_NETWORK) */ |
1323 | 147 { |
148 s->buf_end = s->buffer; | |
0 | 149 } |
1323 | 150 s->buf_ptr = s->buffer; |
1747
fa70e732d2db
Fix misbehaviour in url_fseek() when seeking fails.
gpoirier
parents:
1741
diff
changeset
|
151 if (!s->seek || (res = s->seek(s->opaque, offset, SEEK_SET)) < 0) |
fa70e732d2db
Fix misbehaviour in url_fseek() when seeking fails.
gpoirier
parents:
1741
diff
changeset
|
152 return res; |
1323 | 153 s->pos = offset; |
0 | 154 } |
1323 | 155 s->eof_reached = 0; |
0 | 156 return offset; |
157 } | |
158 | |
159 void url_fskip(ByteIOContext *s, offset_t offset) | |
160 { | |
161 url_fseek(s, offset, SEEK_CUR); | |
162 } | |
163 | |
164 offset_t url_ftell(ByteIOContext *s) | |
165 { | |
166 return url_fseek(s, 0, SEEK_CUR); | |
167 } | |
168 | |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
719
diff
changeset
|
169 offset_t url_fsize(ByteIOContext *s) |
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
719
diff
changeset
|
170 { |
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
719
diff
changeset
|
171 offset_t size; |
885 | 172 |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
719
diff
changeset
|
173 if (!s->seek) |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1747
diff
changeset
|
174 return AVERROR(EPIPE); |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1592
diff
changeset
|
175 size = s->seek(s->opaque, 0, AVSEEK_SIZE); |
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1592
diff
changeset
|
176 if(size<0){ |
1741
e9c7714b1c34
proper error handling in file size retrieval, patch by Ronald S. Bultje rbultje at ronald bitfreak net
bcoudurier
parents:
1613
diff
changeset
|
177 if ((size = s->seek(s->opaque, -1, SEEK_END)) < 0) |
e9c7714b1c34
proper error handling in file size retrieval, patch by Ronald S. Bultje rbultje at ronald bitfreak net
bcoudurier
parents:
1613
diff
changeset
|
178 return size; |
e9c7714b1c34
proper error handling in file size retrieval, patch by Ronald S. Bultje rbultje at ronald bitfreak net
bcoudurier
parents:
1613
diff
changeset
|
179 size++; |
1613 | 180 s->seek(s->opaque, s->pos, SEEK_SET); |
1612
a6eaa0762191
seekless filesize retrieving support in 7 lines of code, also doesnt break compatibility
michael
parents:
1592
diff
changeset
|
181 } |
764
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
719
diff
changeset
|
182 return size; |
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
719
diff
changeset
|
183 } |
cdb845a57ae4
drop most url_fileno() calls (allows to use ByteIOContext directly in caller apps instead of URLProtocol)
aurel
parents:
719
diff
changeset
|
184 |
0 | 185 int url_feof(ByteIOContext *s) |
186 { | |
187 return s->eof_reached; | |
188 } | |
189 | |
554 | 190 int url_ferror(ByteIOContext *s) |
191 { | |
192 return s->error; | |
193 } | |
194 | |
0 | 195 void put_le32(ByteIOContext *s, unsigned int val) |
196 { | |
197 put_byte(s, val); | |
198 put_byte(s, val >> 8); | |
199 put_byte(s, val >> 16); | |
200 put_byte(s, val >> 24); | |
201 } | |
202 | |
203 void put_be32(ByteIOContext *s, unsigned int val) | |
204 { | |
205 put_byte(s, val >> 24); | |
206 put_byte(s, val >> 16); | |
207 put_byte(s, val >> 8); | |
208 put_byte(s, val); | |
209 } | |
210 | |
211 void put_strz(ByteIOContext *s, const char *str) | |
212 { | |
213 if (str) | |
214 put_buffer(s, (const unsigned char *) str, strlen(str) + 1); | |
215 else | |
216 put_byte(s, 0); | |
217 } | |
218 | |
65 | 219 void put_le64(ByteIOContext *s, uint64_t val) |
0 | 220 { |
65 | 221 put_le32(s, (uint32_t)(val & 0xffffffff)); |
222 put_le32(s, (uint32_t)(val >> 32)); | |
0 | 223 } |
224 | |
65 | 225 void put_be64(ByteIOContext *s, uint64_t val) |
0 | 226 { |
65 | 227 put_be32(s, (uint32_t)(val >> 32)); |
228 put_be32(s, (uint32_t)(val & 0xffffffff)); | |
0 | 229 } |
230 | |
231 void put_le16(ByteIOContext *s, unsigned int val) | |
232 { | |
233 put_byte(s, val); | |
234 put_byte(s, val >> 8); | |
235 } | |
236 | |
237 void put_be16(ByteIOContext *s, unsigned int val) | |
238 { | |
239 put_byte(s, val >> 8); | |
240 put_byte(s, val); | |
241 } | |
242 | |
937 | 243 void put_le24(ByteIOContext *s, unsigned int val) |
244 { | |
245 put_le16(s, val & 0xffff); | |
246 put_byte(s, val >> 16); | |
247 } | |
248 | |
822 | 249 void put_be24(ByteIOContext *s, unsigned int val) |
250 { | |
251 put_be16(s, val >> 8); | |
252 put_byte(s, val); | |
253 } | |
254 | |
0 | 255 void put_tag(ByteIOContext *s, const char *tag) |
256 { | |
257 while (*tag) { | |
258 put_byte(s, *tag++); | |
259 } | |
260 } | |
261 | |
262 /* Input stream */ | |
263 | |
264 static void fill_buffer(ByteIOContext *s) | |
265 { | |
266 int len; | |
267 | |
268 /* no need to do anything if EOF already reached */ | |
269 if (s->eof_reached) | |
270 return; | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
271 |
421 | 272 if(s->update_checksum){ |
780 | 273 if(s->buf_end > s->checksum_ptr) |
274 s->checksum= s->update_checksum(s->checksum, s->checksum_ptr, s->buf_end - s->checksum_ptr); | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
275 s->checksum_ptr= s->buffer; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
276 } |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
277 |
0 | 278 len = s->read_packet(s->opaque, s->buffer, s->buffer_size); |
279 if (len <= 0) { | |
280 /* do not modify buffer if EOF reached so that a seek back can | |
281 be done without rereading data */ | |
282 s->eof_reached = 1; | |
554 | 283 if(len<0) |
284 s->error= len; | |
0 | 285 } else { |
286 s->pos += len; | |
287 s->buf_ptr = s->buffer; | |
288 s->buf_end = s->buffer + len; | |
289 } | |
290 } | |
291 | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
292 unsigned long get_checksum(ByteIOContext *s){ |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
293 s->checksum= s->update_checksum(s->checksum, s->checksum_ptr, s->buf_ptr - s->checksum_ptr); |
421 | 294 s->update_checksum= NULL; |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
295 return s->checksum; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
296 } |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
297 |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
298 void init_checksum(ByteIOContext *s, unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum){ |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
299 s->update_checksum= update_checksum; |
421 | 300 if(s->update_checksum){ |
1184 | 301 s->checksum= checksum; |
421 | 302 s->checksum_ptr= s->buf_ptr; |
303 } | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
304 } |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
389
diff
changeset
|
305 |
0 | 306 /* NOTE: return 0 if EOF, so you cannot use it if EOF handling is |
307 necessary */ | |
308 /* XXX: put an inline version */ | |
309 int get_byte(ByteIOContext *s) | |
310 { | |
311 if (s->buf_ptr < s->buf_end) { | |
312 return *s->buf_ptr++; | |
313 } else { | |
314 fill_buffer(s); | |
315 if (s->buf_ptr < s->buf_end) | |
316 return *s->buf_ptr++; | |
317 else | |
318 return 0; | |
319 } | |
320 } | |
321 | |
322 /* NOTE: return URL_EOF (-1) if EOF */ | |
323 int url_fgetc(ByteIOContext *s) | |
324 { | |
325 if (s->buf_ptr < s->buf_end) { | |
326 return *s->buf_ptr++; | |
327 } else { | |
328 fill_buffer(s); | |
329 if (s->buf_ptr < s->buf_end) | |
330 return *s->buf_ptr++; | |
331 else | |
332 return URL_EOF; | |
333 } | |
334 } | |
335 | |
336 int get_buffer(ByteIOContext *s, unsigned char *buf, int size) | |
337 { | |
338 int len, size1; | |
339 | |
340 size1 = size; | |
341 while (size > 0) { | |
342 len = s->buf_end - s->buf_ptr; | |
343 if (len > size) | |
344 len = size; | |
345 if (len == 0) { | |
719 | 346 if(size > s->buffer_size && !s->update_checksum){ |
347 len = s->read_packet(s->opaque, buf, size); | |
348 if (len <= 0) { | |
349 /* do not modify buffer if EOF reached so that a seek back can | |
350 be done without rereading data */ | |
351 s->eof_reached = 1; | |
352 if(len<0) | |
353 s->error= len; | |
354 break; | |
355 } else { | |
356 s->pos += len; | |
357 size -= len; | |
358 buf += len; | |
359 s->buf_ptr = s->buffer; | |
360 s->buf_end = s->buffer/* + len*/; | |
361 } | |
362 }else{ | |
363 fill_buffer(s); | |
364 len = s->buf_end - s->buf_ptr; | |
365 if (len == 0) | |
366 break; | |
367 } | |
0 | 368 } else { |
369 memcpy(buf, s->buf_ptr, len); | |
370 buf += len; | |
371 s->buf_ptr += len; | |
372 size -= len; | |
373 } | |
374 } | |
375 return size1 - size; | |
376 } | |
377 | |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
378 int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size) |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
379 { |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
380 int len; |
885 | 381 |
643 | 382 if(size<0) |
383 return -1; | |
389
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
384 |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
385 len = s->buf_end - s->buf_ptr; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
386 if (len == 0) { |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
387 fill_buffer(s); |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
388 len = s->buf_end - s->buf_ptr; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
389 } |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
390 if (len > size) |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
391 len = size; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
392 memcpy(buf, s->buf_ptr, len); |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
393 s->buf_ptr += len; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
394 return len; |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
395 } |
e14fcd57ad2f
decode latency patch by (Leon van Stuivenberg <l dot vanstuivenberg at chello dot nl>)
michael
parents:
364
diff
changeset
|
396 |
0 | 397 unsigned int get_le16(ByteIOContext *s) |
398 { | |
399 unsigned int val; | |
400 val = get_byte(s); | |
401 val |= get_byte(s) << 8; | |
402 return val; | |
403 } | |
404 | |
937 | 405 unsigned int get_le24(ByteIOContext *s) |
406 { | |
407 unsigned int val; | |
408 val = get_le16(s); | |
409 val |= get_byte(s) << 16; | |
410 return val; | |
411 } | |
412 | |
0 | 413 unsigned int get_le32(ByteIOContext *s) |
414 { | |
415 unsigned int val; | |
822 | 416 val = get_le16(s); |
417 val |= get_le16(s) << 16; | |
0 | 418 return val; |
419 } | |
420 | |
65 | 421 uint64_t get_le64(ByteIOContext *s) |
0 | 422 { |
65 | 423 uint64_t val; |
424 val = (uint64_t)get_le32(s); | |
425 val |= (uint64_t)get_le32(s) << 32; | |
0 | 426 return val; |
427 } | |
428 | |
429 unsigned int get_be16(ByteIOContext *s) | |
430 { | |
431 unsigned int val; | |
432 val = get_byte(s) << 8; | |
433 val |= get_byte(s); | |
434 return val; | |
435 } | |
436 | |
822 | 437 unsigned int get_be24(ByteIOContext *s) |
438 { | |
439 unsigned int val; | |
440 val = get_be16(s) << 8; | |
441 val |= get_byte(s); | |
442 return val; | |
443 } | |
0 | 444 unsigned int get_be32(ByteIOContext *s) |
445 { | |
446 unsigned int val; | |
822 | 447 val = get_be16(s) << 16; |
448 val |= get_be16(s); | |
0 | 449 return val; |
450 } | |
451 | |
452 char *get_strz(ByteIOContext *s, char *buf, int maxlen) | |
453 { | |
454 int i = 0; | |
455 char c; | |
456 | |
457 while ((c = get_byte(s))) { | |
458 if (i < maxlen-1) | |
459 buf[i++] = c; | |
460 } | |
885 | 461 |
0 | 462 buf[i] = 0; /* Ensure null terminated, but may be truncated */ |
463 | |
464 return buf; | |
465 } | |
466 | |
65 | 467 uint64_t get_be64(ByteIOContext *s) |
0 | 468 { |
65 | 469 uint64_t val; |
470 val = (uint64_t)get_be32(s) << 32; | |
471 val |= (uint64_t)get_be32(s); | |
0 | 472 return val; |
473 } | |
474 | |
475 /* link with avio functions */ | |
476 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
823
diff
changeset
|
477 #ifdef CONFIG_MUXERS |
554 | 478 static int url_write_packet(void *opaque, uint8_t *buf, int buf_size) |
0 | 479 { |
480 URLContext *h = opaque; | |
554 | 481 return url_write(h, buf, buf_size); |
0 | 482 } |
277
a313e1080322
disable encoders where appropriate (patch courtesy of BERO
melanson
parents:
122
diff
changeset
|
483 #else |
887 | 484 #define url_write_packet NULL |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
823
diff
changeset
|
485 #endif //CONFIG_MUXERS |
0 | 486 |
65 | 487 static int url_read_packet(void *opaque, uint8_t *buf, int buf_size) |
0 | 488 { |
489 URLContext *h = opaque; | |
490 return url_read(h, buf, buf_size); | |
491 } | |
492 | |
778
4fbe04f998bf
Fix url_fsize for large files patch by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents:
764
diff
changeset
|
493 static offset_t url_seek_packet(void *opaque, offset_t offset, int whence) |
0 | 494 { |
495 URLContext *h = opaque; | |
502
813b0119a98e
ffserver fixes by (Koos Vriezen <koos.vriezen at xs4all dot nl>)
michael
parents:
482
diff
changeset
|
496 return url_seek(h, offset, whence); |
813b0119a98e
ffserver fixes by (Koos Vriezen <koos.vriezen at xs4all dot nl>)
michael
parents:
482
diff
changeset
|
497 //return 0; |
0 | 498 } |
499 | |
500 int url_fdopen(ByteIOContext *s, URLContext *h) | |
501 { | |
65 | 502 uint8_t *buffer; |
0 | 503 int buffer_size, max_packet_size; |
504 | |
885 | 505 |
0 | 506 max_packet_size = url_get_max_packet_size(h); |
507 if (max_packet_size) { | |
508 buffer_size = max_packet_size; /* no need to bufferize more than one packet */ | |
509 } else { | |
510 buffer_size = IO_BUFFER_SIZE; | |
511 } | |
512 buffer = av_malloc(buffer_size); | |
513 if (!buffer) | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1747
diff
changeset
|
514 return AVERROR(ENOMEM); |
0 | 515 |
885 | 516 if (init_put_byte(s, buffer, buffer_size, |
364
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
277
diff
changeset
|
517 (h->flags & URL_WRONLY || h->flags & URL_RDWR), h, |
0 | 518 url_read_packet, url_write_packet, url_seek_packet) < 0) { |
519 av_free(buffer); | |
482 | 520 return AVERROR_IO; |
0 | 521 } |
522 s->is_streamed = h->is_streamed; | |
523 s->max_packet_size = max_packet_size; | |
524 return 0; | |
525 } | |
526 | |
527 /* XXX: must be called before any I/O */ | |
528 int url_setbufsize(ByteIOContext *s, int buf_size) | |
529 { | |
65 | 530 uint8_t *buffer; |
0 | 531 buffer = av_malloc(buf_size); |
532 if (!buffer) | |
1787
eb16c64144ee
This fixes error handling for BeOS, removing the need for some ifdefs.
mmu_man
parents:
1747
diff
changeset
|
533 return AVERROR(ENOMEM); |
0 | 534 |
535 av_free(s->buffer); | |
536 s->buffer = buffer; | |
537 s->buffer_size = buf_size; | |
538 s->buf_ptr = buffer; | |
885 | 539 if (!s->write_flag) |
0 | 540 s->buf_end = buffer; |
541 else | |
542 s->buf_end = buffer + buf_size; | |
543 return 0; | |
544 } | |
545 | |
546 /* NOTE: when opened as read/write, the buffers are only used for | |
547 reading */ | |
548 int url_fopen(ByteIOContext *s, const char *filename, int flags) | |
549 { | |
550 URLContext *h; | |
551 int err; | |
552 | |
553 err = url_open(&h, filename, flags); | |
554 if (err < 0) | |
555 return err; | |
556 err = url_fdopen(s, h); | |
557 if (err < 0) { | |
558 url_close(h); | |
559 return err; | |
560 } | |
561 return 0; | |
562 } | |
563 | |
564 int url_fclose(ByteIOContext *s) | |
565 { | |
566 URLContext *h = s->opaque; | |
885 | 567 |
0 | 568 av_free(s->buffer); |
569 memset(s, 0, sizeof(ByteIOContext)); | |
570 return url_close(h); | |
571 } | |
572 | |
573 URLContext *url_fileno(ByteIOContext *s) | |
574 { | |
575 return s->opaque; | |
576 } | |
577 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
823
diff
changeset
|
578 #ifdef CONFIG_MUXERS |
0 | 579 /* XXX: currently size is limited */ |
580 int url_fprintf(ByteIOContext *s, const char *fmt, ...) | |
581 { | |
582 va_list ap; | |
583 char buf[4096]; | |
584 int ret; | |
585 | |
586 va_start(ap, fmt); | |
587 ret = vsnprintf(buf, sizeof(buf), fmt, ap); | |
588 va_end(ap); | |
589 put_buffer(s, buf, strlen(buf)); | |
590 return ret; | |
591 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
823
diff
changeset
|
592 #endif //CONFIG_MUXERS |
0 | 593 |
594 /* note: unlike fgets, the EOL character is not returned and a whole | |
595 line is parsed. return NULL if first char read was EOF */ | |
596 char *url_fgets(ByteIOContext *s, char *buf, int buf_size) | |
597 { | |
598 int c; | |
599 char *q; | |
600 | |
601 c = url_fgetc(s); | |
602 if (c == EOF) | |
603 return NULL; | |
604 q = buf; | |
605 for(;;) { | |
606 if (c == EOF || c == '\n') | |
607 break; | |
608 if ((q - buf) < buf_size - 1) | |
609 *q++ = c; | |
610 c = url_fgetc(s); | |
611 } | |
612 if (buf_size > 0) | |
613 *q = '\0'; | |
614 return buf; | |
615 } | |
616 | |
885 | 617 /* |
0 | 618 * Return the maximum packet size associated to packetized buffered file |
619 * handle. If the file is not packetized (stream like http or file on | |
620 * disk), then 0 is returned. | |
885 | 621 * |
0 | 622 * @param h buffered file handle |
623 * @return maximum packet size in bytes | |
624 */ | |
625 int url_fget_max_packet_size(ByteIOContext *s) | |
626 { | |
627 return s->max_packet_size; | |
628 } | |
629 | |
1546
41356096b2d0
Fix compile with --disable-muxers, patch by Lo«Ác Le Loarer, lll+ffmpeg m4x org.
diego
parents:
1403
diff
changeset
|
630 /* url_open_dyn_buf and url_close_dyn_buf are used in rtp.c to send a response |
41356096b2d0
Fix compile with --disable-muxers, patch by Lo«Ác Le Loarer, lll+ffmpeg m4x org.
diego
parents:
1403
diff
changeset
|
631 * back to the server even if CONFIG_MUXERS is not set. */ |
41356096b2d0
Fix compile with --disable-muxers, patch by Lo«Ác Le Loarer, lll+ffmpeg m4x org.
diego
parents:
1403
diff
changeset
|
632 #if defined(CONFIG_MUXERS) || defined(CONFIG_NETWORK) |
0 | 633 /* buffer handling */ |
65 | 634 int url_open_buf(ByteIOContext *s, uint8_t *buf, int buf_size, int flags) |
0 | 635 { |
885 | 636 return init_put_byte(s, buf, buf_size, |
364
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
277
diff
changeset
|
637 (flags & URL_WRONLY || flags & URL_RDWR), |
0d74e8abcb3d
avio patch by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
277
diff
changeset
|
638 NULL, NULL, NULL, NULL); |
0 | 639 } |
640 | |
641 /* return the written or read size */ | |
642 int url_close_buf(ByteIOContext *s) | |
643 { | |
644 put_flush_packet(s); | |
645 return s->buf_ptr - s->buffer; | |
646 } | |
647 | |
648 /* output in a dynamic buffer */ | |
649 | |
650 typedef struct DynBuffer { | |
651 int pos, size, allocated_size; | |
65 | 652 uint8_t *buffer; |
0 | 653 int io_buffer_size; |
65 | 654 uint8_t io_buffer[1]; |
0 | 655 } DynBuffer; |
656 | |
554 | 657 static int dyn_buf_write(void *opaque, uint8_t *buf, int buf_size) |
0 | 658 { |
659 DynBuffer *d = opaque; | |
660 int new_size, new_allocated_size; | |
885 | 661 |
0 | 662 /* reallocate buffer if needed */ |
663 new_size = d->pos + buf_size; | |
664 new_allocated_size = d->allocated_size; | |
639 | 665 if(new_size < d->pos || new_size > INT_MAX/2) |
666 return -1; | |
0 | 667 while (new_size > new_allocated_size) { |
668 if (!new_allocated_size) | |
669 new_allocated_size = new_size; | |
670 else | |
885 | 671 new_allocated_size += new_allocated_size / 2 + 1; |
0 | 672 } |
885 | 673 |
0 | 674 if (new_allocated_size > d->allocated_size) { |
93
69ed49c151bf
ffserver deallocate ctx->streams on closing patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
65
diff
changeset
|
675 d->buffer = av_realloc(d->buffer, new_allocated_size); |
69ed49c151bf
ffserver deallocate ctx->streams on closing patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
65
diff
changeset
|
676 if(d->buffer == NULL) |
554 | 677 return -1234; |
0 | 678 d->allocated_size = new_allocated_size; |
679 } | |
680 memcpy(d->buffer + d->pos, buf, buf_size); | |
681 d->pos = new_size; | |
682 if (d->pos > d->size) | |
683 d->size = d->pos; | |
554 | 684 return buf_size; |
0 | 685 } |
686 | |
554 | 687 static int dyn_packet_buf_write(void *opaque, uint8_t *buf, int buf_size) |
0 | 688 { |
689 unsigned char buf1[4]; | |
554 | 690 int ret; |
0 | 691 |
692 /* packetized write: output the header */ | |
693 buf1[0] = (buf_size >> 24); | |
694 buf1[1] = (buf_size >> 16); | |
695 buf1[2] = (buf_size >> 8); | |
696 buf1[3] = (buf_size); | |
554 | 697 ret= dyn_buf_write(opaque, buf1, 4); |
698 if(ret < 0) | |
699 return ret; | |
0 | 700 |
701 /* then the data */ | |
554 | 702 return dyn_buf_write(opaque, buf, buf_size); |
0 | 703 } |
704 | |
778
4fbe04f998bf
Fix url_fsize for large files patch by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
michael
parents:
764
diff
changeset
|
705 static offset_t dyn_buf_seek(void *opaque, offset_t offset, int whence) |
0 | 706 { |
707 DynBuffer *d = opaque; | |
708 | |
709 if (whence == SEEK_CUR) | |
710 offset += d->pos; | |
711 else if (whence == SEEK_END) | |
712 offset += d->size; | |
713 if (offset < 0 || offset > 0x7fffffffLL) | |
714 return -1; | |
715 d->pos = offset; | |
716 return 0; | |
717 } | |
718 | |
719 static int url_open_dyn_buf_internal(ByteIOContext *s, int max_packet_size) | |
720 { | |
721 DynBuffer *d; | |
722 int io_buffer_size, ret; | |
885 | 723 |
724 if (max_packet_size) | |
0 | 725 io_buffer_size = max_packet_size; |
726 else | |
727 io_buffer_size = 1024; | |
885 | 728 |
639 | 729 if(sizeof(DynBuffer) + io_buffer_size < io_buffer_size) |
730 return -1; | |
0 | 731 d = av_malloc(sizeof(DynBuffer) + io_buffer_size); |
732 if (!d) | |
733 return -1; | |
734 d->io_buffer_size = io_buffer_size; | |
735 d->buffer = NULL; | |
736 d->pos = 0; | |
737 d->size = 0; | |
738 d->allocated_size = 0; | |
885 | 739 ret = init_put_byte(s, d->io_buffer, io_buffer_size, |
740 1, d, NULL, | |
741 max_packet_size ? dyn_packet_buf_write : dyn_buf_write, | |
0 | 742 max_packet_size ? NULL : dyn_buf_seek); |
743 if (ret == 0) { | |
744 s->max_packet_size = max_packet_size; | |
745 } | |
746 return ret; | |
747 } | |
748 | |
749 /* | |
750 * Open a write only memory stream. | |
885 | 751 * |
0 | 752 * @param s new IO context |
753 * @return zero if no error. | |
754 */ | |
755 int url_open_dyn_buf(ByteIOContext *s) | |
756 { | |
757 return url_open_dyn_buf_internal(s, 0); | |
758 } | |
759 | |
760 /* | |
761 * Open a write only packetized memory stream with a maximum packet | |
762 * size of 'max_packet_size'. The stream is stored in a memory buffer | |
763 * with a big endian 4 byte header giving the packet size in bytes. | |
885 | 764 * |
0 | 765 * @param s new IO context |
885 | 766 * @param max_packet_size maximum packet size (must be > 0) |
0 | 767 * @return zero if no error. |
768 */ | |
769 int url_open_dyn_packet_buf(ByteIOContext *s, int max_packet_size) | |
770 { | |
771 if (max_packet_size <= 0) | |
772 return -1; | |
773 return url_open_dyn_buf_internal(s, max_packet_size); | |
774 } | |
775 | |
885 | 776 /* |
0 | 777 * Return the written size and a pointer to the buffer. The buffer |
885 | 778 * must be freed with av_free(). |
0 | 779 * @param s IO context |
780 * @param pointer to a byte buffer | |
781 * @return the length of the byte buffer | |
782 */ | |
65 | 783 int url_close_dyn_buf(ByteIOContext *s, uint8_t **pbuffer) |
0 | 784 { |
785 DynBuffer *d = s->opaque; | |
786 int size; | |
787 | |
788 put_flush_packet(s); | |
789 | |
790 *pbuffer = d->buffer; | |
791 size = d->size; | |
792 av_free(d); | |
793 return size; | |
794 } | |
1546
41356096b2d0
Fix compile with --disable-muxers, patch by Lo«Ác Le Loarer, lll+ffmpeg m4x org.
diego
parents:
1403
diff
changeset
|
795 #endif /* CONFIG_MUXERS || CONFIG_NETWORK */ |