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