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