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