FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
avio.h
Go to the documentation of this file.
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 #define AVIO_SEEKABLE_NORMAL 0x0001 /**< Seeking works like for a local file */
39 
40 /**
41  * Callback for checking whether to abort blocking functions.
42  * AVERROR_EXIT is returned in this case by the interrupted
43  * function. During blocking operations, callback is called with
44  * opaque as parameter. If the callback returns 1, the
45  * blocking operation will be aborted.
46  *
47  * No members can be added to this struct without a major bump, if
48  * new elements have been added after this struct in AVFormatContext
49  * or AVIOContext.
50  */
51 typedef struct AVIOInterruptCB {
52  int (*callback)(void*);
53  void *opaque;
55 
56 /**
57  * Bytestream IO Context.
58  * New fields can be added to the end with minor version bumps.
59  * Removal, reordering and changes to existing fields require a major
60  * version bump.
61  * sizeof(AVIOContext) must not be used outside libav*.
62  *
63  * @note None of the function pointers in AVIOContext should be called
64  * directly, they should only be set by the client application
65  * when implementing custom I/O. Normally these are set to the
66  * function pointers specified in avio_alloc_context()
67  */
68 typedef struct AVIOContext {
69  /**
70  * A class for private options.
71  *
72  * If this AVIOContext is created by avio_open2(), av_class is set and
73  * passes the options down to protocols.
74  *
75  * If this AVIOContext is manually allocated, then av_class may be set by
76  * the caller.
77  *
78  * warning -- this field can be NULL, be sure to not pass this AVIOContext
79  * to any av_opt_* functions in that case.
80  */
81  const AVClass *av_class;
82  unsigned char *buffer; /**< Start of the buffer. */
83  int buffer_size; /**< Maximum buffer size */
84  unsigned char *buf_ptr; /**< Current position in the buffer */
85  unsigned char *buf_end; /**< End of the data, may be less than
86  buffer+buffer_size if the read function returned
87  less data than requested, e.g. for streams where
88  no more data has been received yet. */
89  void *opaque; /**< A private pointer, passed to the read/write/seek/...
90  functions. */
91  int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
92  int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
93  int64_t (*seek)(void *opaque, int64_t offset, int whence);
94  int64_t pos; /**< position in the file of the current buffer */
95  int must_flush; /**< true if the next seek should flush */
96  int eof_reached; /**< true if eof reached */
97  int write_flag; /**< true if open for writing */
99  unsigned long checksum;
100  unsigned char *checksum_ptr;
101  unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
102  int error; /**< contains the error code or 0 if no error happened */
103  /**
104  * Pause or resume playback for network streaming protocols - e.g. MMS.
105  */
106  int (*read_pause)(void *opaque, int pause);
107  /**
108  * Seek to a given timestamp in stream with the specified stream_index.
109  * Needed for some network streaming protocols which don't support seeking
110  * to byte position.
111  */
112  int64_t (*read_seek)(void *opaque, int stream_index,
113  int64_t timestamp, int flags);
114  /**
115  * A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
116  */
117  int seekable;
118 
119  /**
120  * max filesize, used to limit allocations
121  * This field is internal to libavformat and access from outside is not allowed.
122  */
123  int64_t maxsize;
124 
125  /**
126  * avio_read and avio_write should if possible be satisfied directly
127  * instead of going through a buffer, and avio_seek will always
128  * call the underlying seek function directly.
129  */
130  int direct;
131 
132  /**
133  * Bytes read statistic
134  * This field is internal to libavformat and access from outside is not allowed.
135  */
136  int64_t bytes_read;
137 
138  /**
139  * seek statistic
140  * This field is internal to libavformat and access from outside is not allowed.
141  */
143 
144  /**
145  * writeout statistic
146  * This field is internal to libavformat and access from outside is not allowed.
147  */
149 } AVIOContext;
150 
151 /* unbuffered I/O */
152 
153 /**
154  * Return the name of the protocol that will handle the passed URL.
155  *
156  * NULL is returned if no protocol could be found for the given URL.
157  *
158  * @return Name of the protocol or NULL.
159  */
160 const char *avio_find_protocol_name(const char *url);
161 
162 /**
163  * Return AVIO_FLAG_* access flags corresponding to the access permissions
164  * of the resource in url, or a negative value corresponding to an
165  * AVERROR code in case of failure. The returned access flags are
166  * masked by the value in flags.
167  *
168  * @note This function is intrinsically unsafe, in the sense that the
169  * checked resource may change its existence or permission status from
170  * one call to another. Thus you should not trust the returned value,
171  * unless you are sure that no other processes are accessing the
172  * checked resource.
173  */
174 int avio_check(const char *url, int flags);
175 
176 /**
177  * Allocate and initialize an AVIOContext for buffered I/O. It must be later
178  * freed with av_free().
179  *
180  * @param buffer Memory block for input/output operations via AVIOContext.
181  * The buffer must be allocated with av_malloc() and friends.
182  * @param buffer_size The buffer size is very important for performance.
183  * For protocols with fixed blocksize it should be set to this blocksize.
184  * For others a typical size is a cache page, e.g. 4kb.
185  * @param write_flag Set to 1 if the buffer should be writable, 0 otherwise.
186  * @param opaque An opaque pointer to user-specific data.
187  * @param read_packet A function for refilling the buffer, may be NULL.
188  * @param write_packet A function for writing the buffer contents, may be NULL.
189  * The function may not change the input buffers content.
190  * @param seek A function for seeking to specified byte position, may be NULL.
191  *
192  * @return Allocated AVIOContext or NULL on failure.
193  */
195  unsigned char *buffer,
196  int buffer_size,
197  int write_flag,
198  void *opaque,
199  int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
200  int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
201  int64_t (*seek)(void *opaque, int64_t offset, int whence));
202 
203 void avio_w8(AVIOContext *s, int b);
204 void avio_write(AVIOContext *s, const unsigned char *buf, int size);
205 void avio_wl64(AVIOContext *s, uint64_t val);
206 void avio_wb64(AVIOContext *s, uint64_t val);
207 void avio_wl32(AVIOContext *s, unsigned int val);
208 void avio_wb32(AVIOContext *s, unsigned int val);
209 void avio_wl24(AVIOContext *s, unsigned int val);
210 void avio_wb24(AVIOContext *s, unsigned int val);
211 void avio_wl16(AVIOContext *s, unsigned int val);
212 void avio_wb16(AVIOContext *s, unsigned int val);
213 
214 /**
215  * Write a NULL-terminated string.
216  * @return number of bytes written.
217  */
218 int avio_put_str(AVIOContext *s, const char *str);
219 
220 /**
221  * Convert an UTF-8 string to UTF-16LE and write it.
222  * @return number of bytes written.
223  */
224 int avio_put_str16le(AVIOContext *s, const char *str);
225 
226 /**
227  * Passing this as the "whence" parameter to a seek function causes it to
228  * return the filesize without seeking anywhere. Supporting this is optional.
229  * If it is not supported then the seek function will return <0.
230  */
231 #define AVSEEK_SIZE 0x10000
232 
233 /**
234  * Oring this flag as into the "whence" parameter to a seek function causes it to
235  * seek by any means (like reopening and linear reading) or other normally unreasonable
236  * means that can be extremely slow.
237  * This may be ignored by the seek code.
238  */
239 #define AVSEEK_FORCE 0x20000
240 
241 /**
242  * fseek() equivalent for AVIOContext.
243  * @return new position or AVERROR.
244  */
245 int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
246 
247 /**
248  * Skip given number of bytes forward
249  * @return new position or AVERROR.
250  */
251 int64_t avio_skip(AVIOContext *s, int64_t offset);
252 
253 /**
254  * ftell() equivalent for AVIOContext.
255  * @return position or AVERROR.
256  */
258 {
259  return avio_seek(s, 0, SEEK_CUR);
260 }
261 
262 /**
263  * Get the filesize.
264  * @return filesize or AVERROR
265  */
266 int64_t avio_size(AVIOContext *s);
267 
268 /**
269  * feof() equivalent for AVIOContext.
270  * @return non zero if and only if end of file
271  */
272 int url_feof(AVIOContext *s);
273 
274 /** @warning currently size is limited */
275 int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
276 
277 /**
278  * Force flushing of buffered data to the output s.
279  *
280  * Force the buffered data to be immediately written to the output,
281  * without to wait to fill the internal buffer.
282  */
283 void avio_flush(AVIOContext *s);
284 
285 /**
286  * Read size bytes from AVIOContext into buf.
287  * @return number of bytes read or AVERROR
288  */
289 int avio_read(AVIOContext *s, unsigned char *buf, int size);
290 
291 /**
292  * @name Functions for reading from AVIOContext
293  * @{
294  *
295  * @note return 0 if EOF, so you cannot use it if EOF handling is
296  * necessary
297  */
298 int avio_r8 (AVIOContext *s);
299 unsigned int avio_rl16(AVIOContext *s);
300 unsigned int avio_rl24(AVIOContext *s);
301 unsigned int avio_rl32(AVIOContext *s);
302 uint64_t avio_rl64(AVIOContext *s);
303 unsigned int avio_rb16(AVIOContext *s);
304 unsigned int avio_rb24(AVIOContext *s);
305 unsigned int avio_rb32(AVIOContext *s);
306 uint64_t avio_rb64(AVIOContext *s);
307 /**
308  * @}
309  */
310 
311 /**
312  * Read a string from pb into buf. The reading will terminate when either
313  * a NULL character was encountered, maxlen bytes have been read, or nothing
314  * more can be read from pb. The result is guaranteed to be NULL-terminated, it
315  * will be truncated if buf is too small.
316  * Note that the string is not interpreted or validated in any way, it
317  * might get truncated in the middle of a sequence for multi-byte encodings.
318  *
319  * @return number of bytes read (is always <= maxlen).
320  * If reading ends on EOF or error, the return value will be one more than
321  * bytes actually read.
322  */
323 int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
324 
325 /**
326  * Read a UTF-16 string from pb and convert it to UTF-8.
327  * The reading will terminate when either a null or invalid character was
328  * encountered or maxlen bytes have been read.
329  * @return number of bytes read (is always <= maxlen)
330  */
331 int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
332 int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
333 
334 
335 /**
336  * @name URL open modes
337  * The flags argument to avio_open must be one of the following
338  * constants, optionally ORed with other flags.
339  * @{
340  */
341 #define AVIO_FLAG_READ 1 /**< read-only */
342 #define AVIO_FLAG_WRITE 2 /**< write-only */
343 #define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE) /**< read-write pseudo flag */
344 /**
345  * @}
346  */
347 
348 /**
349  * Use non-blocking mode.
350  * If this flag is set, operations on the context will return
351  * AVERROR(EAGAIN) if they can not be performed immediately.
352  * If this flag is not set, operations on the context will never return
353  * AVERROR(EAGAIN).
354  * Note that this flag does not affect the opening/connecting of the
355  * context. Connecting a protocol will always block if necessary (e.g. on
356  * network protocols) but never hang (e.g. on busy devices).
357  * Warning: non-blocking protocols is work-in-progress; this flag may be
358  * silently ignored.
359  */
360 #define AVIO_FLAG_NONBLOCK 8
361 
362 /**
363  * Use direct mode.
364  * avio_read and avio_write should if possible be satisfied directly
365  * instead of going through a buffer, and avio_seek will always
366  * call the underlying seek function directly.
367  */
368 #define AVIO_FLAG_DIRECT 0x8000
369 
370 /**
371  * Create and initialize a AVIOContext for accessing the
372  * resource indicated by url.
373  * @note When the resource indicated by url has been opened in
374  * read+write mode, the AVIOContext can be used only for writing.
375  *
376  * @param s Used to return the pointer to the created AVIOContext.
377  * In case of failure the pointed to value is set to NULL.
378  * @param url resource to access
379  * @param flags flags which control how the resource indicated by url
380  * is to be opened
381  * @return >= 0 in case of success, a negative value corresponding to an
382  * AVERROR code in case of failure
383  */
384 int avio_open(AVIOContext **s, const char *url, int flags);
385 
386 /**
387  * Create and initialize a AVIOContext for accessing the
388  * resource indicated by url.
389  * @note When the resource indicated by url has been opened in
390  * read+write mode, the AVIOContext can be used only for writing.
391  *
392  * @param s Used to return the pointer to the created AVIOContext.
393  * In case of failure the pointed to value is set to NULL.
394  * @param url resource to access
395  * @param flags flags which control how the resource indicated by url
396  * is to be opened
397  * @param int_cb an interrupt callback to be used at the protocols level
398  * @param options A dictionary filled with protocol-private options. On return
399  * this parameter will be destroyed and replaced with a dict containing options
400  * that were not found. May be NULL.
401  * @return >= 0 in case of success, a negative value corresponding to an
402  * AVERROR code in case of failure
403  */
404 int avio_open2(AVIOContext **s, const char *url, int flags,
406 
407 /**
408  * Close the resource accessed by the AVIOContext s and free it.
409  * This function can only be used if s was opened by avio_open().
410  *
411  * The internal buffer is automatically flushed before closing the
412  * resource.
413  *
414  * @return 0 on success, an AVERROR < 0 on error.
415  * @see avio_closep
416  */
417 int avio_close(AVIOContext *s);
418 
419 /**
420  * Close the resource accessed by the AVIOContext *s, free it
421  * and set the pointer pointing to it to NULL.
422  * This function can only be used if s was opened by avio_open().
423  *
424  * The internal buffer is automatically flushed before closing the
425  * resource.
426  *
427  * @return 0 on success, an AVERROR < 0 on error.
428  * @see avio_close
429  */
430 int avio_closep(AVIOContext **s);
431 
432 
433 /**
434  * Open a write only memory stream.
435  *
436  * @param s new IO context
437  * @return zero if no error.
438  */
440 
441 /**
442  * Return the written size and a pointer to the buffer. The buffer
443  * must be freed with av_free().
444  * Padding of FF_INPUT_BUFFER_PADDING_SIZE is added to the buffer.
445  *
446  * @param s IO context
447  * @param pbuffer pointer to a byte buffer
448  * @return the length of the byte buffer
449  */
450 int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
451 
452 /**
453  * Iterate through names of available protocols.
454  *
455  * @param opaque A private pointer representing current protocol.
456  * It must be a pointer to NULL on first iteration and will
457  * be updated by successive calls to avio_enum_protocols.
458  * @param output If set to 1, iterate over output protocols,
459  * otherwise over input protocols.
460  *
461  * @return A static string containing the name of current protocol or NULL
462  */
463 const char *avio_enum_protocols(void **opaque, int output);
464 
465 /**
466  * Pause and resume playing - only meaningful if using a network streaming
467  * protocol (e.g. MMS).
468  *
469  * @param h IO context from which to call the read_pause function pointer
470  * @param pause 1 for pause, 0 for resume
471  */
472 int avio_pause(AVIOContext *h, int pause);
473 
474 /**
475  * Seek to a given timestamp relative to some component stream.
476  * Only meaningful if using a network streaming protocol (e.g. MMS.).
477  *
478  * @param h IO context from which to call the seek function pointers
479  * @param stream_index The stream index that the timestamp is relative to.
480  * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
481  * units from the beginning of the presentation.
482  * If a stream_index >= 0 is used and the protocol does not support
483  * seeking based on component streams, the call will fail.
484  * @param timestamp timestamp in AVStream.time_base units
485  * or if there is no stream specified then in AV_TIME_BASE units.
486  * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
487  * and AVSEEK_FLAG_ANY. The protocol may silently ignore
488  * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
489  * fail if used and not supported.
490  * @return >= 0 on success
491  * @see AVInputFormat::read_seek
492  */
493 int64_t avio_seek_time(AVIOContext *h, int stream_index,
494  int64_t timestamp, int flags);
495 
496 #endif /* AVFORMAT_AVIO_H */