]> git.sesse.net Git - ffmpeg/blob - libavformat/avio.h
fba98e318f3ebfc0a4c8c51b950baed8a4ba8d28
[ffmpeg] / libavformat / avio.h
1 /*
2  * copyright (c) 2001 Fabrice Bellard
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 #ifndef AVFORMAT_AVIO_H
21 #define AVFORMAT_AVIO_H
22
23 /**
24  * @file
25  * unbuffered I/O operations
26  *
27  * @warning This file has to be considered an internal but installed
28  * header, so it should not be directly included in your projects.
29  */
30
31 #include <stdint.h>
32
33 #include "libavutil/common.h"
34 #include "libavutil/log.h"
35
36 #include "libavformat/version.h"
37
38 /* unbuffered I/O */
39
40 /**
41  * URL Context.
42  * New fields can be added to the end with minor version bumps.
43  * Removal, reordering and changes to existing fields require a major
44  * version bump.
45  * sizeof(URLContext) must not be used outside libav*.
46  */
47 typedef struct URLContext {
48 #if FF_API_URL_CLASS
49     const AVClass *av_class; ///< information for av_log(). Set by url_open().
50 #endif
51     struct URLProtocol *prot;
52     int flags;
53     int is_streamed;  /**< true if streamed (no seek possible), default = false */
54     int max_packet_size;  /**< if non zero, the stream is packetized with this max packet size */
55     void *priv_data;
56     char *filename; /**< specified URL */
57     int is_connected;
58 } URLContext;
59
60 typedef struct URLPollEntry {
61     URLContext *handle;
62     int events;
63     int revents;
64 } URLPollEntry;
65
66 /**
67  * @defgroup open_modes URL open modes
68  * The flags argument to url_open and cosins must be one of the following
69  * constants, optionally ORed with other flags.
70  * @{
71  */
72 #define URL_RDONLY 0  /**< read-only */
73 #define URL_WRONLY 1  /**< write-only */
74 #define URL_RDWR   2  /**< read-write */
75 /**
76  * @}
77  */
78
79 /**
80  * Use non-blocking mode.
81  * If this flag is set, operations on the context will return
82  * AVERROR(EAGAIN) if they can not be performed immediately.
83  * If this flag is not set, operations on the context will never return
84  * AVERROR(EAGAIN).
85  * Note that this flag does not affect the opening/connecting of the
86  * context. Connecting a protocol will always block if necessary (e.g. on
87  * network protocols) but never hang (e.g. on busy devices).
88  * Warning: non-blocking protocols is work-in-progress; this flag may be
89  * silently ignored.
90  */
91 #define URL_FLAG_NONBLOCK 4
92
93 typedef int URLInterruptCB(void);
94
95 /**
96  * Create a URLContext for accessing to the resource indicated by
97  * url, and open it using the URLProtocol up.
98  *
99  * @param puc pointer to the location where, in case of success, the
100  * function puts the pointer to the created URLContext
101  * @param flags flags which control how the resource indicated by url
102  * is to be opened
103  * @return 0 in case of success, a negative value corresponding to an
104  * AVERROR code in case of failure
105  */
106 int url_open_protocol (URLContext **puc, struct URLProtocol *up,
107                        const char *url, int flags);
108
109 /**
110  * Create a URLContext for accessing to the resource indicated by
111  * url, but do not initiate the connection yet.
112  *
113  * @param puc pointer to the location where, in case of success, the
114  * function puts the pointer to the created URLContext
115  * @param flags flags which control how the resource indicated by url
116  * is to be opened
117  * @return 0 in case of success, a negative value corresponding to an
118  * AVERROR code in case of failure
119  */
120 int url_alloc(URLContext **h, const char *url, int flags);
121
122 /**
123  * Connect an URLContext that has been allocated by url_alloc
124  */
125 int url_connect(URLContext *h);
126
127 /**
128  * Create an URLContext for accessing to the resource indicated by
129  * url, and open it.
130  *
131  * @param puc pointer to the location where, in case of success, the
132  * function puts the pointer to the created URLContext
133  * @param flags flags which control how the resource indicated by url
134  * is to be opened
135  * @return 0 in case of success, a negative value corresponding to an
136  * AVERROR code in case of failure
137  */
138 int url_open(URLContext **h, const char *url, int flags);
139
140 /**
141  * Read up to size bytes from the resource accessed by h, and store
142  * the read bytes in buf.
143  *
144  * @return The number of bytes actually read, or a negative value
145  * corresponding to an AVERROR code in case of error. A value of zero
146  * indicates that it is not possible to read more from the accessed
147  * resource (except if the value of the size argument is also zero).
148  */
149 int url_read(URLContext *h, unsigned char *buf, int size);
150
151 /**
152  * Read as many bytes as possible (up to size), calling the
153  * read function multiple times if necessary.
154  * This makes special short-read handling in applications
155  * unnecessary, if the return value is < size then it is
156  * certain there was either an error or the end of file was reached.
157  */
158 int url_read_complete(URLContext *h, unsigned char *buf, int size);
159
160 /**
161  * Write size bytes from buf to the resource accessed by h.
162  *
163  * @return the number of bytes actually written, or a negative value
164  * corresponding to an AVERROR code in case of failure
165  */
166 int url_write(URLContext *h, const unsigned char *buf, int size);
167
168 /**
169  * Passing this as the "whence" parameter to a seek function causes it to
170  * return the filesize without seeking anywhere. Supporting this is optional.
171  * If it is not supported then the seek function will return <0.
172  */
173 #define AVSEEK_SIZE 0x10000
174
175 /**
176  * Change the position that will be used by the next read/write
177  * operation on the resource accessed by h.
178  *
179  * @param pos specifies the new position to set
180  * @param whence specifies how pos should be interpreted, it must be
181  * one of SEEK_SET (seek from the beginning), SEEK_CUR (seek from the
182  * current position), SEEK_END (seek from the end), or AVSEEK_SIZE
183  * (return the filesize of the requested resource, pos is ignored).
184  * @return a negative value corresponding to an AVERROR code in case
185  * of failure, or the resulting file position, measured in bytes from
186  * the beginning of the file. You can use this feature together with
187  * SEEK_CUR to read the current file position.
188  */
189 int64_t url_seek(URLContext *h, int64_t pos, int whence);
190
191 /**
192  * Close the resource accessed by the URLContext h, and free the
193  * memory used by it.
194  *
195  * @return a negative value if an error condition occurred, 0
196  * otherwise
197  */
198 int url_close(URLContext *h);
199
200 /**
201  * Return a non-zero value if the resource indicated by url
202  * exists, 0 otherwise.
203  */
204 int url_exist(const char *url);
205
206 /**
207  * Return the filesize of the resource accessed by h, AVERROR(ENOSYS)
208  * if the operation is not supported by h, or another negative value
209  * corresponding to an AVERROR error code in case of failure.
210  */
211 int64_t url_filesize(URLContext *h);
212
213 /**
214  * Return the file descriptor associated with this URL. For RTP, this
215  * will return only the RTP file descriptor, not the RTCP file descriptor.
216  *
217  * @return the file descriptor associated with this URL, or <0 on error.
218  */
219 int url_get_file_handle(URLContext *h);
220
221 /**
222  * Return the maximum packet size associated to packetized file
223  * handle. If the file is not packetized (stream like HTTP or file on
224  * disk), then 0 is returned.
225  *
226  * @param h file handle
227  * @return maximum packet size in bytes
228  */
229 int url_get_max_packet_size(URLContext *h);
230
231 /**
232  * Copy the filename of the resource accessed by h to buf.
233  *
234  * @param buf_size size in bytes of buf
235  */
236 void url_get_filename(URLContext *h, char *buf, int buf_size);
237
238 /**
239  * The callback is called in blocking functions to test regulary if
240  * asynchronous interruption is needed. AVERROR(EINTR) is returned
241  * in this case by the interrupted function. 'NULL' means no interrupt
242  * callback is given.
243  */
244 void url_set_interrupt_cb(URLInterruptCB *interrupt_cb);
245
246 /* not implemented */
247 int url_poll(URLPollEntry *poll_table, int n, int timeout);
248
249 /**
250  * Pause and resume playing - only meaningful if using a network streaming
251  * protocol (e.g. MMS).
252  * @param pause 1 for pause, 0 for resume
253  */
254 int av_url_read_pause(URLContext *h, int pause);
255
256 /**
257  * Seek to a given timestamp relative to some component stream.
258  * Only meaningful if using a network streaming protocol (e.g. MMS.).
259  * @param stream_index The stream index that the timestamp is relative to.
260  *        If stream_index is (-1) the timestamp should be in AV_TIME_BASE
261  *        units from the beginning of the presentation.
262  *        If a stream_index >= 0 is used and the protocol does not support
263  *        seeking based on component streams, the call will fail with ENOTSUP.
264  * @param timestamp timestamp in AVStream.time_base units
265  *        or if there is no stream specified then in AV_TIME_BASE units.
266  * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
267  *        and AVSEEK_FLAG_ANY. The protocol may silently ignore
268  *        AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
269  *        fail with ENOTSUP if used and not supported.
270  * @return >= 0 on success
271  * @see AVInputFormat::read_seek
272  */
273 int64_t av_url_read_seek(URLContext *h, int stream_index,
274                          int64_t timestamp, int flags);
275
276 /**
277  * Oring this flag as into the "whence" parameter to a seek function causes it to
278  * seek by any means (like reopening and linear reading) or other normally unreasonble
279  * means that can be extreemly slow.
280  * This may be ignored by the seek code.
281  */
282 #define AVSEEK_FORCE 0x20000
283
284 typedef struct URLProtocol {
285     const char *name;
286     int (*url_open)(URLContext *h, const char *url, int flags);
287     int (*url_read)(URLContext *h, unsigned char *buf, int size);
288     int (*url_write)(URLContext *h, const unsigned char *buf, int size);
289     int64_t (*url_seek)(URLContext *h, int64_t pos, int whence);
290     int (*url_close)(URLContext *h);
291     struct URLProtocol *next;
292     int (*url_read_pause)(URLContext *h, int pause);
293     int64_t (*url_read_seek)(URLContext *h, int stream_index,
294                              int64_t timestamp, int flags);
295     int (*url_get_file_handle)(URLContext *h);
296     int priv_data_size;
297     const AVClass *priv_data_class;
298 } URLProtocol;
299
300 #if FF_API_REGISTER_PROTOCOL
301 extern URLProtocol *first_protocol;
302 #endif
303
304 extern URLInterruptCB *url_interrupt_cb;
305
306 /**
307  * If protocol is NULL, returns the first registered protocol,
308  * if protocol is non-NULL, returns the next registered protocol after protocol,
309  * or NULL if protocol is the last one.
310  */
311 URLProtocol *av_protocol_next(URLProtocol *p);
312
313 #if FF_API_REGISTER_PROTOCOL
314 /**
315  * @deprecated Use av_register_protocol() instead.
316  */
317 attribute_deprecated int register_protocol(URLProtocol *protocol);
318
319 /**
320  * @deprecated Use av_register_protocol2() instead.
321  */
322 attribute_deprecated int av_register_protocol(URLProtocol *protocol);
323 #endif
324
325 /**
326  * Register the URLProtocol protocol.
327  *
328  * @param size the size of the URLProtocol struct referenced
329  */
330 int av_register_protocol2(URLProtocol *protocol, int size);
331
332 /**
333  * Bytestream IO Context.
334  * New fields can be added to the end with minor version bumps.
335  * Removal, reordering and changes to existing fields require a major
336  * version bump.
337  * sizeof(AVIOContext) must not be used outside libav*.
338  */
339 typedef struct {
340     unsigned char *buffer;
341     int buffer_size;
342     unsigned char *buf_ptr, *buf_end;
343     void *opaque;
344     int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
345     int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
346     int64_t (*seek)(void *opaque, int64_t offset, int whence);
347     int64_t pos; /**< position in the file of the current buffer */
348     int must_flush; /**< true if the next seek should flush */
349     int eof_reached; /**< true if eof reached */
350     int write_flag;  /**< true if open for writing */
351     int is_streamed;
352     int max_packet_size;
353     unsigned long checksum;
354     unsigned char *checksum_ptr;
355     unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
356     int error;         ///< contains the error code or 0 if no error happened
357     int (*read_pause)(void *opaque, int pause);
358     int64_t (*read_seek)(void *opaque, int stream_index,
359                          int64_t timestamp, int flags);
360 } AVIOContext;
361
362 #if FF_API_OLD_AVIO
363 typedef attribute_deprecated AVIOContext ByteIOContext;
364
365 attribute_deprecated int init_put_byte(AVIOContext *s,
366                   unsigned char *buffer,
367                   int buffer_size,
368                   int write_flag,
369                   void *opaque,
370                   int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
371                   int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
372                   int64_t (*seek)(void *opaque, int64_t offset, int whence));
373 attribute_deprecated AVIOContext *av_alloc_put_byte(
374                   unsigned char *buffer,
375                   int buffer_size,
376                   int write_flag,
377                   void *opaque,
378                   int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
379                   int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
380                   int64_t (*seek)(void *opaque, int64_t offset, int whence));
381
382 /**
383  * @defgroup old_avio_funcs Old put_/get_*() functions
384  * @deprecated use the avio_ -prefixed functions instead.
385  * @{
386  */
387 attribute_deprecated int          get_buffer(AVIOContext *s, unsigned char *buf, int size);
388 attribute_deprecated int          get_partial_buffer(AVIOContext *s, unsigned char *buf, int size);
389 attribute_deprecated int          get_byte(AVIOContext *s);
390 attribute_deprecated unsigned int get_le16(AVIOContext *s);
391 attribute_deprecated unsigned int get_le24(AVIOContext *s);
392 attribute_deprecated unsigned int get_le32(AVIOContext *s);
393 attribute_deprecated uint64_t     get_le64(AVIOContext *s);
394 attribute_deprecated unsigned int get_be16(AVIOContext *s);
395 attribute_deprecated unsigned int get_be24(AVIOContext *s);
396 attribute_deprecated unsigned int get_be32(AVIOContext *s);
397 attribute_deprecated uint64_t     get_be64(AVIOContext *s);
398
399 attribute_deprecated void         put_byte(AVIOContext *s, int b);
400 attribute_deprecated void         put_nbyte(AVIOContext *s, int b, int count);
401 attribute_deprecated void         put_buffer(AVIOContext *s, const unsigned char *buf, int size);
402 attribute_deprecated void         put_le64(AVIOContext *s, uint64_t val);
403 attribute_deprecated void         put_be64(AVIOContext *s, uint64_t val);
404 attribute_deprecated void         put_le32(AVIOContext *s, unsigned int val);
405 attribute_deprecated void         put_be32(AVIOContext *s, unsigned int val);
406 attribute_deprecated void         put_le24(AVIOContext *s, unsigned int val);
407 attribute_deprecated void         put_be24(AVIOContext *s, unsigned int val);
408 attribute_deprecated void         put_le16(AVIOContext *s, unsigned int val);
409 attribute_deprecated void         put_be16(AVIOContext *s, unsigned int val);
410 attribute_deprecated void         put_tag(AVIOContext *s, const char *tag);
411 /**
412  * @}
413  */
414
415
416 /**
417  * @defgroup old_url_f_funcs Old url_f* functions
418  * @deprecated use the avio_ -prefixed functions instead.
419  * @{
420  */
421 attribute_deprecated int url_fopen( AVIOContext **s, const char *url, int flags);
422 attribute_deprecated int url_fclose(AVIOContext *s);
423 attribute_deprecated int64_t url_fseek(AVIOContext *s, int64_t offset, int whence);
424 attribute_deprecated int url_fskip(AVIOContext *s, int64_t offset);
425 /**
426  * @}
427  */
428 #endif
429
430 AVIOContext *avio_alloc_context(
431                   unsigned char *buffer,
432                   int buffer_size,
433                   int write_flag,
434                   void *opaque,
435                   int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
436                   int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
437                   int64_t (*seek)(void *opaque, int64_t offset, int whence));
438
439 void avio_w8(AVIOContext *s, int b);
440 void avio_write(AVIOContext *s, const unsigned char *buf, int size);
441 void avio_wl64(AVIOContext *s, uint64_t val);
442 void avio_wb64(AVIOContext *s, uint64_t val);
443 void avio_wl32(AVIOContext *s, unsigned int val);
444 void avio_wb32(AVIOContext *s, unsigned int val);
445 void avio_wl24(AVIOContext *s, unsigned int val);
446 void avio_wb24(AVIOContext *s, unsigned int val);
447 void avio_wl16(AVIOContext *s, unsigned int val);
448 void avio_wb16(AVIOContext *s, unsigned int val);
449
450 #if FF_API_OLD_AVIO
451 attribute_deprecated void put_strz(AVIOContext *s, const char *buf);
452 #endif
453
454 /**
455  * Write a NULL-terminated string.
456  * @return number of bytes written.
457  */
458 int avio_put_str(AVIOContext *s, const char *str);
459
460 /**
461  * Convert an UTF-8 string to UTF-16LE and write it.
462  * @return number of bytes written.
463  */
464 int avio_put_str16le(AVIOContext *s, const char *str);
465
466 /**
467  * fseek() equivalent for AVIOContext.
468  * @return new position or AVERROR.
469  */
470 int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
471
472 /**
473  * ftell() equivalent for AVIOContext.
474  * @return position or AVERROR.
475  */
476 int64_t url_ftell(AVIOContext *s);
477
478 /**
479  * Get the filesize.
480  * @return filesize or AVERROR
481  */
482 int64_t url_fsize(AVIOContext *s);
483
484 /**
485  * feof() equivalent for AVIOContext.
486  * @return non zero if and only if end of file
487  */
488 int url_feof(AVIOContext *s);
489
490 int url_ferror(AVIOContext *s);
491
492 int av_url_read_fpause(AVIOContext *h, int pause);
493 int64_t av_url_read_fseek(AVIOContext *h, int stream_index,
494                           int64_t timestamp, int flags);
495
496 #define URL_EOF (-1)
497 /** @note return URL_EOF (-1) if EOF */
498 int url_fgetc(AVIOContext *s);
499
500 /** @warning currently size is limited */
501 #ifdef __GNUC__
502 int url_fprintf(AVIOContext *s, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
503 #else
504 int url_fprintf(AVIOContext *s, const char *fmt, ...);
505 #endif
506
507 /** @note unlike fgets, the EOL character is not returned and a whole
508     line is parsed. return NULL if first char read was EOF */
509 char *url_fgets(AVIOContext *s, char *buf, int buf_size);
510
511 void put_flush_packet(AVIOContext *s);
512
513
514 /**
515  * Read size bytes from AVIOContext into buf.
516  * @return number of bytes read or AVERROR
517  */
518 int avio_read(AVIOContext *s, unsigned char *buf, int size);
519
520 /** @note return 0 if EOF, so you cannot use it if EOF handling is
521     necessary */
522 int          avio_r8  (AVIOContext *s);
523 unsigned int avio_rl16(AVIOContext *s);
524 unsigned int avio_rl24(AVIOContext *s);
525 unsigned int avio_rl32(AVIOContext *s);
526 uint64_t     avio_rl64(AVIOContext *s);
527
528 /**
529  * Read a string from pb into buf. The reading will terminate when either
530  * a NULL character was encountered, maxlen bytes have been read, or nothing
531  * more can be read from pb. The result is guaranteed to be NULL-terminated, it
532  * will be truncated if buf is too small.
533  * Note that the string is not interpreted or validated in any way, it
534  * might get truncated in the middle of a sequence for multi-byte encodings.
535  *
536  * @return number of bytes read (is always <= maxlen).
537  * If reading ends on EOF or error, the return value will be one more than
538  * bytes actually read.
539  */
540 int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
541
542 /**
543  * Read a UTF-16 string from pb and convert it to UTF-8.
544  * The reading will terminate when either a null or invalid character was
545  * encountered or maxlen bytes have been read.
546  * @return number of bytes read (is always <= maxlen)
547  */
548 int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
549 int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
550
551 #if FF_API_OLD_AVIO
552 /**
553  * @deprecated use avio_get_str instead
554  */
555 attribute_deprecated char *get_strz(AVIOContext *s, char *buf, int maxlen);
556 #endif
557 unsigned int avio_rb16(AVIOContext *s);
558 unsigned int avio_rb24(AVIOContext *s);
559 unsigned int avio_rb32(AVIOContext *s);
560 uint64_t     avio_rb64(AVIOContext *s);
561
562 uint64_t ff_get_v(AVIOContext *bc);
563
564 static inline int url_is_streamed(AVIOContext *s)
565 {
566     return s->is_streamed;
567 }
568
569 /**
570  * Create and initialize a AVIOContext for accessing the
571  * resource referenced by the URLContext h.
572  * @note When the URLContext h has been opened in read+write mode, the
573  * AVIOContext can be used only for writing.
574  *
575  * @param s Used to return the pointer to the created AVIOContext.
576  * In case of failure the pointed to value is set to NULL.
577  * @return 0 in case of success, a negative value corresponding to an
578  * AVERROR code in case of failure
579  */
580 int url_fdopen(AVIOContext **s, URLContext *h);
581
582 /** @warning must be called before any I/O */
583 int url_setbufsize(AVIOContext *s, int buf_size);
584 #if FF_API_URL_RESETBUF
585 /** Reset the buffer for reading or writing.
586  * @note Will drop any data currently in the buffer without transmitting it.
587  * @param flags URL_RDONLY to set up the buffer for reading, or URL_WRONLY
588  *        to set up the buffer for writing. */
589 int url_resetbuf(AVIOContext *s, int flags);
590 #endif
591
592 /**
593  * Rewind the AVIOContext using the specified buffer containing the first buf_size bytes of the file.
594  * Used after probing to avoid seeking.
595  * Joins buf and s->buffer, taking any overlap into consideration.
596  * @note s->buffer must overlap with buf or they can't be joined and the function fails
597  * @note This function is NOT part of the public API
598  *
599  * @param s The read-only AVIOContext to rewind
600  * @param buf The probe buffer containing the first buf_size bytes of the file
601  * @param buf_size The size of buf
602  * @return 0 in case of success, a negative value corresponding to an
603  * AVERROR code in case of failure
604  */
605 int ff_rewind_with_probe_data(AVIOContext *s, unsigned char *buf, int buf_size);
606
607 /**
608  * Create and initialize a AVIOContext for accessing the
609  * resource indicated by url.
610  * @note When the resource indicated by url has been opened in
611  * read+write mode, the AVIOContext can be used only for writing.
612  *
613  * @param s Used to return the pointer to the created AVIOContext.
614  * In case of failure the pointed to value is set to NULL.
615  * @param flags flags which control how the resource indicated by url
616  * is to be opened
617  * @return 0 in case of success, a negative value corresponding to an
618  * AVERROR code in case of failure
619  */
620 int avio_open(AVIOContext **s, const char *url, int flags);
621
622 int avio_close(AVIOContext *s);
623 URLContext *url_fileno(AVIOContext *s);
624
625 /**
626  * Return the maximum packet size associated to packetized buffered file
627  * handle. If the file is not packetized (stream like http or file on
628  * disk), then 0 is returned.
629  *
630  * @param s buffered file handle
631  * @return maximum packet size in bytes
632  */
633 int url_fget_max_packet_size(AVIOContext *s);
634
635 int url_open_buf(AVIOContext **s, uint8_t *buf, int buf_size, int flags);
636
637 /** return the written or read size */
638 int url_close_buf(AVIOContext *s);
639
640 /**
641  * Open a write only memory stream.
642  *
643  * @param s new IO context
644  * @return zero if no error.
645  */
646 int url_open_dyn_buf(AVIOContext **s);
647
648 /**
649  * Open a write only packetized memory stream with a maximum packet
650  * size of 'max_packet_size'.  The stream is stored in a memory buffer
651  * with a big endian 4 byte header giving the packet size in bytes.
652  *
653  * @param s new IO context
654  * @param max_packet_size maximum packet size (must be > 0)
655  * @return zero if no error.
656  */
657 int url_open_dyn_packet_buf(AVIOContext **s, int max_packet_size);
658
659 /**
660  * Return the written size and a pointer to the buffer. The buffer
661  * must be freed with av_free(). If the buffer is opened with
662  * url_open_dyn_buf, then padding of FF_INPUT_BUFFER_PADDING_SIZE is
663  * added; if opened with url_open_dyn_packet_buf, no padding is added.
664  *
665  * @param s IO context
666  * @param pbuffer pointer to a byte buffer
667  * @return the length of the byte buffer
668  */
669 int url_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
670
671 unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
672                                     unsigned int len);
673 unsigned long get_checksum(AVIOContext *s);
674 void init_checksum(AVIOContext *s,
675                    unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
676                    unsigned long checksum);
677
678 /* udp.c */
679 int udp_set_remote_url(URLContext *h, const char *uri);
680 int udp_get_local_port(URLContext *h);
681 #if FF_API_UDP_GET_FILE
682 int udp_get_file_handle(URLContext *h);
683 #endif
684
685 #endif /* AVFORMAT_AVIO_H */