]> git.sesse.net Git - ffmpeg/blob - libavformat/avio.h
lavf/avio: temporarily accept 0 as EOF.
[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  * @ingroup lavf_io
26  * Buffered I/O operations
27  */
28
29 #include <stdint.h>
30
31 #include "libavutil/common.h"
32 #include "libavutil/dict.h"
33 #include "libavutil/log.h"
34
35 #include "libavformat/version.h"
36
37 /**
38  * Seeking works like for a local file.
39  */
40 #define AVIO_SEEKABLE_NORMAL (1 << 0)
41
42 /**
43  * Seeking by timestamp with avio_seek_time() is possible.
44  */
45 #define AVIO_SEEKABLE_TIME   (1 << 1)
46
47 /**
48  * Callback for checking whether to abort blocking functions.
49  * AVERROR_EXIT is returned in this case by the interrupted
50  * function. During blocking operations, callback is called with
51  * opaque as parameter. If the callback returns 1, the
52  * blocking operation will be aborted.
53  *
54  * No members can be added to this struct without a major bump, if
55  * new elements have been added after this struct in AVFormatContext
56  * or AVIOContext.
57  */
58 typedef struct AVIOInterruptCB {
59     int (*callback)(void*);
60     void *opaque;
61 } AVIOInterruptCB;
62
63 /**
64  * Directory entry types.
65  */
66 enum AVIODirEntryType {
67     AVIO_ENTRY_UNKNOWN,
68     AVIO_ENTRY_BLOCK_DEVICE,
69     AVIO_ENTRY_CHARACTER_DEVICE,
70     AVIO_ENTRY_DIRECTORY,
71     AVIO_ENTRY_NAMED_PIPE,
72     AVIO_ENTRY_SYMBOLIC_LINK,
73     AVIO_ENTRY_SOCKET,
74     AVIO_ENTRY_FILE,
75     AVIO_ENTRY_SERVER,
76     AVIO_ENTRY_SHARE,
77     AVIO_ENTRY_WORKGROUP,
78 };
79
80 /**
81  * Describes single entry of the directory.
82  *
83  * Only name and type fields are guaranteed be set.
84  * Rest of fields are protocol or/and platform dependent and might be unknown.
85  */
86 typedef struct AVIODirEntry {
87     char *name;                           /**< Filename */
88     int type;                             /**< Type of the entry */
89     int utf8;                             /**< Set to 1 when name is encoded with UTF-8, 0 otherwise.
90                                                Name can be encoded with UTF-8 even though 0 is set. */
91     int64_t size;                         /**< File size in bytes, -1 if unknown. */
92     int64_t modification_timestamp;       /**< Time of last modification in microseconds since unix
93                                                epoch, -1 if unknown. */
94     int64_t access_timestamp;             /**< Time of last access in microseconds since unix epoch,
95                                                -1 if unknown. */
96     int64_t status_change_timestamp;      /**< Time of last status change in microseconds since unix
97                                                epoch, -1 if unknown. */
98     int64_t user_id;                      /**< User ID of owner, -1 if unknown. */
99     int64_t group_id;                     /**< Group ID of owner, -1 if unknown. */
100     int64_t filemode;                     /**< Unix file mode, -1 if unknown. */
101 } AVIODirEntry;
102
103 typedef struct AVIODirContext {
104     struct URLContext *url_context;
105 } AVIODirContext;
106
107 /**
108  * Different data types that can be returned via the AVIO
109  * write_data_type callback.
110  */
111 enum AVIODataMarkerType {
112     /**
113      * Header data; this needs to be present for the stream to be decodeable.
114      */
115     AVIO_DATA_MARKER_HEADER,
116     /**
117      * A point in the output bytestream where a decoder can start decoding
118      * (i.e. a keyframe). A demuxer/decoder given the data flagged with
119      * AVIO_DATA_MARKER_HEADER, followed by any AVIO_DATA_MARKER_SYNC_POINT,
120      * should give decodeable results.
121      */
122     AVIO_DATA_MARKER_SYNC_POINT,
123     /**
124      * A point in the output bytestream where a demuxer can start parsing
125      * (for non self synchronizing bytestream formats). That is, any
126      * non-keyframe packet start point.
127      */
128     AVIO_DATA_MARKER_BOUNDARY_POINT,
129     /**
130      * This is any, unlabelled data. It can either be a muxer not marking
131      * any positions at all, it can be an actual boundary/sync point
132      * that the muxer chooses not to mark, or a later part of a packet/fragment
133      * that is cut into multiple write callbacks due to limited IO buffer size.
134      */
135     AVIO_DATA_MARKER_UNKNOWN,
136     /**
137      * Trailer data, which doesn't contain actual content, but only for
138      * finalizing the output file.
139      */
140     AVIO_DATA_MARKER_TRAILER,
141     /**
142      * A point in the output bytestream where the underlying AVIOContext might
143      * flush the buffer depending on latency or buffering requirements. Typically
144      * means the end of a packet.
145      */
146     AVIO_DATA_MARKER_FLUSH_POINT,
147 };
148
149 /**
150  * Bytestream IO Context.
151  * New fields can be added to the end with minor version bumps.
152  * Removal, reordering and changes to existing fields require a major
153  * version bump.
154  * sizeof(AVIOContext) must not be used outside libav*.
155  *
156  * @note None of the function pointers in AVIOContext should be called
157  *       directly, they should only be set by the client application
158  *       when implementing custom I/O. Normally these are set to the
159  *       function pointers specified in avio_alloc_context()
160  */
161 typedef struct AVIOContext {
162     /**
163      * A class for private options.
164      *
165      * If this AVIOContext is created by avio_open2(), av_class is set and
166      * passes the options down to protocols.
167      *
168      * If this AVIOContext is manually allocated, then av_class may be set by
169      * the caller.
170      *
171      * warning -- this field can be NULL, be sure to not pass this AVIOContext
172      * to any av_opt_* functions in that case.
173      */
174     const AVClass *av_class;
175
176     /*
177      * The following shows the relationship between buffer, buf_ptr,
178      * buf_ptr_max, buf_end, buf_size, and pos, when reading and when writing
179      * (since AVIOContext is used for both):
180      *
181      **********************************************************************************
182      *                                   READING
183      **********************************************************************************
184      *
185      *                            |              buffer_size              |
186      *                            |---------------------------------------|
187      *                            |                                       |
188      *
189      *                         buffer          buf_ptr       buf_end
190      *                            +---------------+-----------------------+
191      *                            |/ / / / / / / /|/ / / / / / /|         |
192      *  read buffer:              |/ / consumed / | to be read /|         |
193      *                            |/ / / / / / / /|/ / / / / / /|         |
194      *                            +---------------+-----------------------+
195      *
196      *                                                         pos
197      *              +-------------------------------------------+-----------------+
198      *  input file: |                                           |                 |
199      *              +-------------------------------------------+-----------------+
200      *
201      *
202      **********************************************************************************
203      *                                   WRITING
204      **********************************************************************************
205      *
206      *                             |          buffer_size                 |
207      *                             |--------------------------------------|
208      *                             |                                      |
209      *
210      *                                                buf_ptr_max
211      *                          buffer                 (buf_ptr)       buf_end
212      *                             +-----------------------+--------------+
213      *                             |/ / / / / / / / / / / /|              |
214      *  write buffer:              | / / to be flushed / / |              |
215      *                             |/ / / / / / / / / / / /|              |
216      *                             +-----------------------+--------------+
217      *                               buf_ptr can be in this
218      *                               due to a backward seek
219      *
220      *                            pos
221      *               +-------------+----------------------------------------------+
222      *  output file: |             |                                              |
223      *               +-------------+----------------------------------------------+
224      *
225      */
226     unsigned char *buffer;  /**< Start of the buffer. */
227     int buffer_size;        /**< Maximum buffer size */
228     unsigned char *buf_ptr; /**< Current position in the buffer */
229     unsigned char *buf_end; /**< End of the data, may be less than
230                                  buffer+buffer_size if the read function returned
231                                  less data than requested, e.g. for streams where
232                                  no more data has been received yet. */
233     void *opaque;           /**< A private pointer, passed to the read/write/seek/...
234                                  functions. */
235     int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
236     int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
237     int64_t (*seek)(void *opaque, int64_t offset, int whence);
238     int64_t pos;            /**< position in the file of the current buffer */
239     int must_flush;         /**< unused */
240     int eof_reached;        /**< true if eof reached */
241     int write_flag;         /**< true if open for writing */
242     int max_packet_size;
243     unsigned long checksum;
244     unsigned char *checksum_ptr;
245     unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
246     int error;              /**< contains the error code or 0 if no error happened */
247     /**
248      * Pause or resume playback for network streaming protocols - e.g. MMS.
249      */
250     int (*read_pause)(void *opaque, int pause);
251     /**
252      * Seek to a given timestamp in stream with the specified stream_index.
253      * Needed for some network streaming protocols which don't support seeking
254      * to byte position.
255      */
256     int64_t (*read_seek)(void *opaque, int stream_index,
257                          int64_t timestamp, int flags);
258     /**
259      * A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
260      */
261     int seekable;
262
263     /**
264      * max filesize, used to limit allocations
265      * This field is internal to libavformat and access from outside is not allowed.
266      */
267     int64_t maxsize;
268
269     /**
270      * avio_read and avio_write should if possible be satisfied directly
271      * instead of going through a buffer, and avio_seek will always
272      * call the underlying seek function directly.
273      */
274     int direct;
275
276     /**
277      * Bytes read statistic
278      * This field is internal to libavformat and access from outside is not allowed.
279      */
280     int64_t bytes_read;
281
282     /**
283      * seek statistic
284      * This field is internal to libavformat and access from outside is not allowed.
285      */
286     int seek_count;
287
288     /**
289      * writeout statistic
290      * This field is internal to libavformat and access from outside is not allowed.
291      */
292     int writeout_count;
293
294     /**
295      * Original buffer size
296      * used internally after probing and ensure seekback to reset the buffer size
297      * This field is internal to libavformat and access from outside is not allowed.
298      */
299     int orig_buffer_size;
300
301     /**
302      * Threshold to favor readahead over seek.
303      * This is current internal only, do not use from outside.
304      */
305     int short_seek_threshold;
306
307     /**
308      * ',' separated list of allowed protocols.
309      */
310     const char *protocol_whitelist;
311
312     /**
313      * ',' separated list of disallowed protocols.
314      */
315     const char *protocol_blacklist;
316
317     /**
318      * A callback that is used instead of write_packet.
319      */
320     int (*write_data_type)(void *opaque, uint8_t *buf, int buf_size,
321                            enum AVIODataMarkerType type, int64_t time);
322     /**
323      * If set, don't call write_data_type separately for AVIO_DATA_MARKER_BOUNDARY_POINT,
324      * but ignore them and treat them as AVIO_DATA_MARKER_UNKNOWN (to avoid needlessly
325      * small chunks of data returned from the callback).
326      */
327     int ignore_boundary_point;
328
329     /**
330      * Internal, not meant to be used from outside of AVIOContext.
331      */
332     enum AVIODataMarkerType current_type;
333     int64_t last_time;
334
335     /**
336      * A callback that is used instead of short_seek_threshold.
337      * This is current internal only, do not use from outside.
338      */
339     int (*short_seek_get)(void *opaque);
340
341     int64_t written;
342
343     /**
344      * Maximum reached position before a backward seek in the write buffer,
345      * used keeping track of already written data for a later flush.
346      */
347     unsigned char *buf_ptr_max;
348
349     /**
350      * Try to buffer at least this amount of data before flushing it
351      */
352     int min_packet_size;
353 } AVIOContext;
354
355 /**
356  * Return the name of the protocol that will handle the passed URL.
357  *
358  * NULL is returned if no protocol could be found for the given URL.
359  *
360  * @return Name of the protocol or NULL.
361  */
362 const char *avio_find_protocol_name(const char *url);
363
364 /**
365  * Return AVIO_FLAG_* access flags corresponding to the access permissions
366  * of the resource in url, or a negative value corresponding to an
367  * AVERROR code in case of failure. The returned access flags are
368  * masked by the value in flags.
369  *
370  * @note This function is intrinsically unsafe, in the sense that the
371  * checked resource may change its existence or permission status from
372  * one call to another. Thus you should not trust the returned value,
373  * unless you are sure that no other processes are accessing the
374  * checked resource.
375  */
376 int avio_check(const char *url, int flags);
377
378 /**
379  * Move or rename a resource.
380  *
381  * @note url_src and url_dst should share the same protocol and authority.
382  *
383  * @param url_src url to resource to be moved
384  * @param url_dst new url to resource if the operation succeeded
385  * @return >=0 on success or negative on error.
386  */
387 int avpriv_io_move(const char *url_src, const char *url_dst);
388
389 /**
390  * Delete a resource.
391  *
392  * @param url resource to be deleted.
393  * @return >=0 on success or negative on error.
394  */
395 int avpriv_io_delete(const char *url);
396
397 /**
398  * Open directory for reading.
399  *
400  * @param s       directory read context. Pointer to a NULL pointer must be passed.
401  * @param url     directory to be listed.
402  * @param options A dictionary filled with protocol-private options. On return
403  *                this parameter will be destroyed and replaced with a dictionary
404  *                containing options that were not found. May be NULL.
405  * @return >=0 on success or negative on error.
406  */
407 int avio_open_dir(AVIODirContext **s, const char *url, AVDictionary **options);
408
409 /**
410  * Get next directory entry.
411  *
412  * Returned entry must be freed with avio_free_directory_entry(). In particular
413  * it may outlive AVIODirContext.
414  *
415  * @param s         directory read context.
416  * @param[out] next next entry or NULL when no more entries.
417  * @return >=0 on success or negative on error. End of list is not considered an
418  *             error.
419  */
420 int avio_read_dir(AVIODirContext *s, AVIODirEntry **next);
421
422 /**
423  * Close directory.
424  *
425  * @note Entries created using avio_read_dir() are not deleted and must be
426  * freeded with avio_free_directory_entry().
427  *
428  * @param s         directory read context.
429  * @return >=0 on success or negative on error.
430  */
431 int avio_close_dir(AVIODirContext **s);
432
433 /**
434  * Free entry allocated by avio_read_dir().
435  *
436  * @param entry entry to be freed.
437  */
438 void avio_free_directory_entry(AVIODirEntry **entry);
439
440 /**
441  * Allocate and initialize an AVIOContext for buffered I/O. It must be later
442  * freed with avio_context_free().
443  *
444  * @param buffer Memory block for input/output operations via AVIOContext.
445  *        The buffer must be allocated with av_malloc() and friends.
446  *        It may be freed and replaced with a new buffer by libavformat.
447  *        AVIOContext.buffer holds the buffer currently in use,
448  *        which must be later freed with av_free().
449  * @param buffer_size The buffer size is very important for performance.
450  *        For protocols with fixed blocksize it should be set to this blocksize.
451  *        For others a typical size is a cache page, e.g. 4kb.
452  * @param write_flag Set to 1 if the buffer should be writable, 0 otherwise.
453  * @param opaque An opaque pointer to user-specific data.
454  * @param read_packet  A function for refilling the buffer, may be NULL.
455  *                     For stream protocols, must never return 0 but rather
456  *                     a proper AVERROR code.
457  * @param write_packet A function for writing the buffer contents, may be NULL.
458  *        The function may not change the input buffers content.
459  * @param seek A function for seeking to specified byte position, may be NULL.
460  *
461  * @return Allocated AVIOContext or NULL on failure.
462  */
463 AVIOContext *avio_alloc_context(
464                   unsigned char *buffer,
465                   int buffer_size,
466                   int write_flag,
467                   void *opaque,
468                   int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
469                   int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
470                   int64_t (*seek)(void *opaque, int64_t offset, int whence));
471
472 /**
473  * Free the supplied IO context and everything associated with it.
474  *
475  * @param s Double pointer to the IO context. This function will write NULL
476  * into s.
477  */
478 void avio_context_free(AVIOContext **s);
479
480 void avio_w8(AVIOContext *s, int b);
481 void avio_write(AVIOContext *s, const unsigned char *buf, int size);
482 void avio_wl64(AVIOContext *s, uint64_t val);
483 void avio_wb64(AVIOContext *s, uint64_t val);
484 void avio_wl32(AVIOContext *s, unsigned int val);
485 void avio_wb32(AVIOContext *s, unsigned int val);
486 void avio_wl24(AVIOContext *s, unsigned int val);
487 void avio_wb24(AVIOContext *s, unsigned int val);
488 void avio_wl16(AVIOContext *s, unsigned int val);
489 void avio_wb16(AVIOContext *s, unsigned int val);
490
491 /**
492  * Write a NULL-terminated string.
493  * @return number of bytes written.
494  */
495 int avio_put_str(AVIOContext *s, const char *str);
496
497 /**
498  * Convert an UTF-8 string to UTF-16LE and write it.
499  * @param s the AVIOContext
500  * @param str NULL-terminated UTF-8 string
501  *
502  * @return number of bytes written.
503  */
504 int avio_put_str16le(AVIOContext *s, const char *str);
505
506 /**
507  * Convert an UTF-8 string to UTF-16BE and write it.
508  * @param s the AVIOContext
509  * @param str NULL-terminated UTF-8 string
510  *
511  * @return number of bytes written.
512  */
513 int avio_put_str16be(AVIOContext *s, const char *str);
514
515 /**
516  * Mark the written bytestream as a specific type.
517  *
518  * Zero-length ranges are omitted from the output.
519  *
520  * @param time the stream time the current bytestream pos corresponds to
521  *             (in AV_TIME_BASE units), or AV_NOPTS_VALUE if unknown or not
522  *             applicable
523  * @param type the kind of data written starting at the current pos
524  */
525 void avio_write_marker(AVIOContext *s, int64_t time, enum AVIODataMarkerType type);
526
527 /**
528  * ORing this as the "whence" parameter to a seek function causes it to
529  * return the filesize without seeking anywhere. Supporting this is optional.
530  * If it is not supported then the seek function will return <0.
531  */
532 #define AVSEEK_SIZE 0x10000
533
534 /**
535  * Passing this flag as the "whence" parameter to a seek function causes it to
536  * seek by any means (like reopening and linear reading) or other normally unreasonable
537  * means that can be extremely slow.
538  * This may be ignored by the seek code.
539  */
540 #define AVSEEK_FORCE 0x20000
541
542 /**
543  * fseek() equivalent for AVIOContext.
544  * @return new position or AVERROR.
545  */
546 int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
547
548 /**
549  * Skip given number of bytes forward
550  * @return new position or AVERROR.
551  */
552 int64_t avio_skip(AVIOContext *s, int64_t offset);
553
554 /**
555  * ftell() equivalent for AVIOContext.
556  * @return position or AVERROR.
557  */
558 static av_always_inline int64_t avio_tell(AVIOContext *s)
559 {
560     return avio_seek(s, 0, SEEK_CUR);
561 }
562
563 /**
564  * Get the filesize.
565  * @return filesize or AVERROR
566  */
567 int64_t avio_size(AVIOContext *s);
568
569 /**
570  * feof() equivalent for AVIOContext.
571  * @return non zero if and only if end of file
572  */
573 int avio_feof(AVIOContext *s);
574
575 /** @warning Writes up to 4 KiB per call */
576 int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
577
578 /**
579  * Force flushing of buffered data.
580  *
581  * For write streams, force the buffered data to be immediately written to the output,
582  * without to wait to fill the internal buffer.
583  *
584  * For read streams, discard all currently buffered data, and advance the
585  * reported file position to that of the underlying stream. This does not
586  * read new data, and does not perform any seeks.
587  */
588 void avio_flush(AVIOContext *s);
589
590 /**
591  * Read size bytes from AVIOContext into buf.
592  * @return number of bytes read or AVERROR
593  */
594 int avio_read(AVIOContext *s, unsigned char *buf, int size);
595
596 /**
597  * Read size bytes from AVIOContext into buf. Unlike avio_read(), this is allowed
598  * to read fewer bytes than requested. The missing bytes can be read in the next
599  * call. This always tries to read at least 1 byte.
600  * Useful to reduce latency in certain cases.
601  * @return number of bytes read or AVERROR
602  */
603 int avio_read_partial(AVIOContext *s, unsigned char *buf, int size);
604
605 /**
606  * @name Functions for reading from AVIOContext
607  * @{
608  *
609  * @note return 0 if EOF, so you cannot use it if EOF handling is
610  *       necessary
611  */
612 int          avio_r8  (AVIOContext *s);
613 unsigned int avio_rl16(AVIOContext *s);
614 unsigned int avio_rl24(AVIOContext *s);
615 unsigned int avio_rl32(AVIOContext *s);
616 uint64_t     avio_rl64(AVIOContext *s);
617 unsigned int avio_rb16(AVIOContext *s);
618 unsigned int avio_rb24(AVIOContext *s);
619 unsigned int avio_rb32(AVIOContext *s);
620 uint64_t     avio_rb64(AVIOContext *s);
621 /**
622  * @}
623  */
624
625 /**
626  * Read a string from pb into buf. The reading will terminate when either
627  * a NULL character was encountered, maxlen bytes have been read, or nothing
628  * more can be read from pb. The result is guaranteed to be NULL-terminated, it
629  * will be truncated if buf is too small.
630  * Note that the string is not interpreted or validated in any way, it
631  * might get truncated in the middle of a sequence for multi-byte encodings.
632  *
633  * @return number of bytes read (is always <= maxlen).
634  * If reading ends on EOF or error, the return value will be one more than
635  * bytes actually read.
636  */
637 int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
638
639 /**
640  * Read a UTF-16 string from pb and convert it to UTF-8.
641  * The reading will terminate when either a null or invalid character was
642  * encountered or maxlen bytes have been read.
643  * @return number of bytes read (is always <= maxlen)
644  */
645 int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
646 int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
647
648
649 /**
650  * @name URL open modes
651  * The flags argument to avio_open must be one of the following
652  * constants, optionally ORed with other flags.
653  * @{
654  */
655 #define AVIO_FLAG_READ  1                                      /**< read-only */
656 #define AVIO_FLAG_WRITE 2                                      /**< write-only */
657 #define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE)  /**< read-write pseudo flag */
658 /**
659  * @}
660  */
661
662 /**
663  * Use non-blocking mode.
664  * If this flag is set, operations on the context will return
665  * AVERROR(EAGAIN) if they can not be performed immediately.
666  * If this flag is not set, operations on the context will never return
667  * AVERROR(EAGAIN).
668  * Note that this flag does not affect the opening/connecting of the
669  * context. Connecting a protocol will always block if necessary (e.g. on
670  * network protocols) but never hang (e.g. on busy devices).
671  * Warning: non-blocking protocols is work-in-progress; this flag may be
672  * silently ignored.
673  */
674 #define AVIO_FLAG_NONBLOCK 8
675
676 /**
677  * Use direct mode.
678  * avio_read and avio_write should if possible be satisfied directly
679  * instead of going through a buffer, and avio_seek will always
680  * call the underlying seek function directly.
681  */
682 #define AVIO_FLAG_DIRECT 0x8000
683
684 /**
685  * Create and initialize a AVIOContext for accessing the
686  * resource indicated by url.
687  * @note When the resource indicated by url has been opened in
688  * read+write mode, the AVIOContext can be used only for writing.
689  *
690  * @param s Used to return the pointer to the created AVIOContext.
691  * In case of failure the pointed to value is set to NULL.
692  * @param url resource to access
693  * @param flags flags which control how the resource indicated by url
694  * is to be opened
695  * @return >= 0 in case of success, a negative value corresponding to an
696  * AVERROR code in case of failure
697  */
698 int avio_open(AVIOContext **s, const char *url, int flags);
699
700 /**
701  * Create and initialize a AVIOContext for accessing the
702  * resource indicated by url.
703  * @note When the resource indicated by url has been opened in
704  * read+write mode, the AVIOContext can be used only for writing.
705  *
706  * @param s Used to return the pointer to the created AVIOContext.
707  * In case of failure the pointed to value is set to NULL.
708  * @param url resource to access
709  * @param flags flags which control how the resource indicated by url
710  * is to be opened
711  * @param int_cb an interrupt callback to be used at the protocols level
712  * @param options  A dictionary filled with protocol-private options. On return
713  * this parameter will be destroyed and replaced with a dict containing options
714  * that were not found. May be NULL.
715  * @return >= 0 in case of success, a negative value corresponding to an
716  * AVERROR code in case of failure
717  */
718 int avio_open2(AVIOContext **s, const char *url, int flags,
719                const AVIOInterruptCB *int_cb, AVDictionary **options);
720
721 /**
722  * Close the resource accessed by the AVIOContext s and free it.
723  * This function can only be used if s was opened by avio_open().
724  *
725  * The internal buffer is automatically flushed before closing the
726  * resource.
727  *
728  * @return 0 on success, an AVERROR < 0 on error.
729  * @see avio_closep
730  */
731 int avio_close(AVIOContext *s);
732
733 /**
734  * Close the resource accessed by the AVIOContext *s, free it
735  * and set the pointer pointing to it to NULL.
736  * This function can only be used if s was opened by avio_open().
737  *
738  * The internal buffer is automatically flushed before closing the
739  * resource.
740  *
741  * @return 0 on success, an AVERROR < 0 on error.
742  * @see avio_close
743  */
744 int avio_closep(AVIOContext **s);
745
746
747 /**
748  * Open a write only memory stream.
749  *
750  * @param s new IO context
751  * @return zero if no error.
752  */
753 int avio_open_dyn_buf(AVIOContext **s);
754
755 /**
756  * Return the written size and a pointer to the buffer.
757  * The AVIOContext stream is left intact.
758  * The buffer must NOT be freed.
759  * No padding is added to the buffer.
760  *
761  * @param s IO context
762  * @param pbuffer pointer to a byte buffer
763  * @return the length of the byte buffer
764  */
765 int avio_get_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
766
767 /**
768  * Return the written size and a pointer to the buffer. The buffer
769  * must be freed with av_free().
770  * Padding of AV_INPUT_BUFFER_PADDING_SIZE is added to the buffer.
771  *
772  * @param s IO context
773  * @param pbuffer pointer to a byte buffer
774  * @return the length of the byte buffer
775  */
776 int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
777
778 /**
779  * Iterate through names of available protocols.
780  *
781  * @param opaque A private pointer representing current protocol.
782  *        It must be a pointer to NULL on first iteration and will
783  *        be updated by successive calls to avio_enum_protocols.
784  * @param output If set to 1, iterate over output protocols,
785  *               otherwise over input protocols.
786  *
787  * @return A static string containing the name of current protocol or NULL
788  */
789 const char *avio_enum_protocols(void **opaque, int output);
790
791 /**
792  * Pause and resume playing - only meaningful if using a network streaming
793  * protocol (e.g. MMS).
794  *
795  * @param h     IO context from which to call the read_pause function pointer
796  * @param pause 1 for pause, 0 for resume
797  */
798 int     avio_pause(AVIOContext *h, int pause);
799
800 /**
801  * Seek to a given timestamp relative to some component stream.
802  * Only meaningful if using a network streaming protocol (e.g. MMS.).
803  *
804  * @param h IO context from which to call the seek function pointers
805  * @param stream_index The stream index that the timestamp is relative to.
806  *        If stream_index is (-1) the timestamp should be in AV_TIME_BASE
807  *        units from the beginning of the presentation.
808  *        If a stream_index >= 0 is used and the protocol does not support
809  *        seeking based on component streams, the call will fail.
810  * @param timestamp timestamp in AVStream.time_base units
811  *        or if there is no stream specified then in AV_TIME_BASE units.
812  * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
813  *        and AVSEEK_FLAG_ANY. The protocol may silently ignore
814  *        AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
815  *        fail if used and not supported.
816  * @return >= 0 on success
817  * @see AVInputFormat::read_seek
818  */
819 int64_t avio_seek_time(AVIOContext *h, int stream_index,
820                        int64_t timestamp, int flags);
821
822 /* Avoid a warning. The header can not be included because it breaks c++. */
823 struct AVBPrint;
824
825 /**
826  * Read contents of h into print buffer, up to max_size bytes, or up to EOF.
827  *
828  * @return 0 for success (max_size bytes read or EOF reached), negative error
829  * code otherwise
830  */
831 int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size);
832
833 /**
834  * Accept and allocate a client context on a server context.
835  * @param  s the server context
836  * @param  c the client context, must be unallocated
837  * @return   >= 0 on success or a negative value corresponding
838  *           to an AVERROR on failure
839  */
840 int avio_accept(AVIOContext *s, AVIOContext **c);
841
842 /**
843  * Perform one step of the protocol handshake to accept a new client.
844  * This function must be called on a client returned by avio_accept() before
845  * using it as a read/write context.
846  * It is separate from avio_accept() because it may block.
847  * A step of the handshake is defined by places where the application may
848  * decide to change the proceedings.
849  * For example, on a protocol with a request header and a reply header, each
850  * one can constitute a step because the application may use the parameters
851  * from the request to change parameters in the reply; or each individual
852  * chunk of the request can constitute a step.
853  * If the handshake is already finished, avio_handshake() does nothing and
854  * returns 0 immediately.
855  *
856  * @param  c the client context to perform the handshake on
857  * @return   0   on a complete and successful handshake
858  *           > 0 if the handshake progressed, but is not complete
859  *           < 0 for an AVERROR code
860  */
861 int avio_handshake(AVIOContext *c);
862 #endif /* AVFORMAT_AVIO_H */