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 #define AVIO_SEEKABLE_NORMAL 0x0001 /**< Seeking works like for a local file */
38 
39 /**
40  * Callback for checking whether to abort blocking functions.
41  * AVERROR_EXIT is returned in this case by the interrupted
42  * function. During blocking operations, callback is called with
43  * opaque as parameter. If the callback returns 1, the
44  * blocking operation will be aborted.
45  *
46  * No members can be added to this struct without a major bump, if
47  * new elements have been added after this struct in AVFormatContext
48  * or AVIOContext.
49  */
50 typedef struct AVIOInterruptCB {
51  int (*callback)(void*);
52  void *opaque;
54 
55 /**
56  * Directory entry types.
57  */
70 };
71 
72 /**
73  * Describes single entry of the directory.
74  *
75  * Only name and type fields are guaranteed be set.
76  * Rest of fields are protocol or/and platform dependent and might be unknown.
77  */
78 typedef struct AVIODirEntry {
79  char *name; /**< Filename */
80  int type; /**< Type of the entry */
81  int utf8; /**< Set to 1 when name is encoded with UTF-8, 0 otherwise.
82  Name can be encoded with UTF-8 even though 0 is set. */
83  int64_t size; /**< File size in bytes, -1 if unknown. */
84  int64_t modification_timestamp; /**< Time of last modification in microseconds since unix
85  epoch, -1 if unknown. */
86  int64_t access_timestamp; /**< Time of last access in microseconds since unix epoch,
87  -1 if unknown. */
88  int64_t status_change_timestamp; /**< Time of last status change in microseconds since unix
89  epoch, -1 if unknown. */
90  int64_t user_id; /**< User ID of owner, -1 if unknown. */
91  int64_t group_id; /**< Group ID of owner, -1 if unknown. */
92  int64_t filemode; /**< Unix file mode, -1 if unknown. */
93 } AVIODirEntry;
94 
95 typedef struct AVIODirContext {
98 
99 /**
100  * Bytestream IO Context.
101  * New fields can be added to the end with minor version bumps.
102  * Removal, reordering and changes to existing fields require a major
103  * version bump.
104  * sizeof(AVIOContext) must not be used outside libav*.
105  *
106  * @note None of the function pointers in AVIOContext should be called
107  * directly, they should only be set by the client application
108  * when implementing custom I/O. Normally these are set to the
109  * function pointers specified in avio_alloc_context()
110  */
111 typedef struct AVIOContext {
112  /**
113  * A class for private options.
114  *
115  * If this AVIOContext is created by avio_open2(), av_class is set and
116  * passes the options down to protocols.
117  *
118  * If this AVIOContext is manually allocated, then av_class may be set by
119  * the caller.
120  *
121  * warning -- this field can be NULL, be sure to not pass this AVIOContext
122  * to any av_opt_* functions in that case.
123  */
125  unsigned char *buffer; /**< Start of the buffer. */
126  int buffer_size; /**< Maximum buffer size */
127  unsigned char *buf_ptr; /**< Current position in the buffer */
128  unsigned char *buf_end; /**< End of the data, may be less than
129  buffer+buffer_size if the read function returned
130  less data than requested, e.g. for streams where
131  no more data has been received yet. */
132  void *opaque; /**< A private pointer, passed to the read/write/seek/...
133  functions. */
134  int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
135  int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
136  int64_t (*seek)(void *opaque, int64_t offset, int whence);
137  int64_t pos; /**< position in the file of the current buffer */
138  int must_flush; /**< true if the next seek should flush */
139  int eof_reached; /**< true if eof reached */
140  int write_flag; /**< true if open for writing */
142  unsigned long checksum;
143  unsigned char *checksum_ptr;
144  unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size);
145  int error; /**< contains the error code or 0 if no error happened */
146  /**
147  * Pause or resume playback for network streaming protocols - e.g. MMS.
148  */
149  int (*read_pause)(void *opaque, int pause);
150  /**
151  * Seek to a given timestamp in stream with the specified stream_index.
152  * Needed for some network streaming protocols which don't support seeking
153  * to byte position.
154  */
155  int64_t (*read_seek)(void *opaque, int stream_index,
156  int64_t timestamp, int flags);
157  /**
158  * A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
159  */
160  int seekable;
161 
162  /**
163  * max filesize, used to limit allocations
164  * This field is internal to libavformat and access from outside is not allowed.
165  */
166  int64_t maxsize;
167 
168  /**
169  * avio_read and avio_write should if possible be satisfied directly
170  * instead of going through a buffer, and avio_seek will always
171  * call the underlying seek function directly.
172  */
173  int direct;
174 
175  /**
176  * Bytes read statistic
177  * This field is internal to libavformat and access from outside is not allowed.
178  */
179  int64_t bytes_read;
180 
181  /**
182  * seek statistic
183  * This field is internal to libavformat and access from outside is not allowed.
184  */
186 
187  /**
188  * writeout statistic
189  * This field is internal to libavformat and access from outside is not allowed.
190  */
192 
193  /**
194  * Original buffer size
195  * used internally after probing and ensure seekback to reset the buffer size
196  * This field is internal to libavformat and access from outside is not allowed.
197  */
199 
200  /**
201  * Threshold to favor readahead over seek.
202  * This is current internal only, do not use from outside.
203  */
205 } AVIOContext;
206 
207 /* unbuffered I/O */
208 
209 /**
210  * Return the name of the protocol that will handle the passed URL.
211  *
212  * NULL is returned if no protocol could be found for the given URL.
213  *
214  * @return Name of the protocol or NULL.
215  */
216 const char *avio_find_protocol_name(const char *url);
217 
218 /**
219  * Return AVIO_FLAG_* access flags corresponding to the access permissions
220  * of the resource in url, or a negative value corresponding to an
221  * AVERROR code in case of failure. The returned access flags are
222  * masked by the value in flags.
223  *
224  * @note This function is intrinsically unsafe, in the sense that the
225  * checked resource may change its existence or permission status from
226  * one call to another. Thus you should not trust the returned value,
227  * unless you are sure that no other processes are accessing the
228  * checked resource.
229  */
230 int avio_check(const char *url, int flags);
231 
232 /**
233  * Move or rename a resource.
234  *
235  * @note url_src and url_dst should share the same protocol and authority.
236  *
237  * @param url_src url to resource to be moved
238  * @param url_dst new url to resource if the operation succeeded
239  * @return >=0 on success or negative on error.
240  */
241 int avpriv_io_move(const char *url_src, const char *url_dst);
242 
243 /**
244  * Delete a resource.
245  *
246  * @param url resource to be deleted.
247  * @return >=0 on success or negative on error.
248  */
249 int avpriv_io_delete(const char *url);
250 
251 /**
252  * Open directory for reading.
253  *
254  * @param s directory read context. Pointer to a NULL pointer must be passed.
255  * @param url directory to be listed.
256  * @param options A dictionary filled with protocol-private options. On return
257  * this parameter will be destroyed and replaced with a dictionary
258  * containing options that were not found. May be NULL.
259  * @return >=0 on success or negative on error.
260  */
261 int avio_open_dir(AVIODirContext **s, const char *url, AVDictionary **options);
262 
263 /**
264  * Get next directory entry.
265  *
266  * Returned entry must be freed with avio_free_directory_entry(). In particular
267  * it may outlive AVIODirContext.
268  *
269  * @param s directory read context.
270  * @param[out] next next entry or NULL when no more entries.
271  * @return >=0 on success or negative on error. End of list is not considered an
272  * error.
273  */
275 
276 /**
277  * Close directory.
278  *
279  * @note Entries created using avio_read_dir() are not deleted and must be
280  * freeded with avio_free_directory_entry().
281  *
282  * @param s directory read context.
283  * @return >=0 on success or negative on error.
284  */
286 
287 /**
288  * Free entry allocated by avio_read_dir().
289  *
290  * @param entry entry to be freed.
291  */
293 
294 /**
295  * Allocate and initialize an AVIOContext for buffered I/O. It must be later
296  * freed with av_free().
297  *
298  * @param buffer Memory block for input/output operations via AVIOContext.
299  * The buffer must be allocated with av_malloc() and friends.
300  * It may be freed and replaced with a new buffer by libavformat.
301  * AVIOContext.buffer holds the buffer currently in use,
302  * which must be later freed with av_free().
303  * @param buffer_size The buffer size is very important for performance.
304  * For protocols with fixed blocksize it should be set to this blocksize.
305  * For others a typical size is a cache page, e.g. 4kb.
306  * @param write_flag Set to 1 if the buffer should be writable, 0 otherwise.
307  * @param opaque An opaque pointer to user-specific data.
308  * @param read_packet A function for refilling the buffer, may be NULL.
309  * @param write_packet A function for writing the buffer contents, may be NULL.
310  * The function may not change the input buffers content.
311  * @param seek A function for seeking to specified byte position, may be NULL.
312  *
313  * @return Allocated AVIOContext or NULL on failure.
314  */
316  unsigned char *buffer,
317  int buffer_size,
318  int write_flag,
319  void *opaque,
320  int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
321  int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
322  int64_t (*seek)(void *opaque, int64_t offset, int whence));
323 
324 void avio_w8(AVIOContext *s, int b);
325 void avio_write(AVIOContext *s, const unsigned char *buf, int size);
326 void avio_wl64(AVIOContext *s, uint64_t val);
327 void avio_wb64(AVIOContext *s, uint64_t val);
328 void avio_wl32(AVIOContext *s, unsigned int val);
329 void avio_wb32(AVIOContext *s, unsigned int val);
330 void avio_wl24(AVIOContext *s, unsigned int val);
331 void avio_wb24(AVIOContext *s, unsigned int val);
332 void avio_wl16(AVIOContext *s, unsigned int val);
333 void avio_wb16(AVIOContext *s, unsigned int val);
334 
335 /**
336  * Write a NULL-terminated string.
337  * @return number of bytes written.
338  */
339 int avio_put_str(AVIOContext *s, const char *str);
340 
341 /**
342  * Convert an UTF-8 string to UTF-16LE and write it.
343  * @param s the AVIOContext
344  * @param str NULL-terminated UTF-8 string
345  *
346  * @return number of bytes written.
347  */
348 int avio_put_str16le(AVIOContext *s, const char *str);
349 
350 /**
351  * Convert an UTF-8 string to UTF-16BE and write it.
352  * @param s the AVIOContext
353  * @param str NULL-terminated UTF-8 string
354  *
355  * @return number of bytes written.
356  */
357 int avio_put_str16be(AVIOContext *s, const char *str);
358 
359 /**
360  * Passing this as the "whence" parameter to a seek function causes it to
361  * return the filesize without seeking anywhere. Supporting this is optional.
362  * If it is not supported then the seek function will return <0.
363  */
364 #define AVSEEK_SIZE 0x10000
365 
366 /**
367  * Oring this flag as into the "whence" parameter to a seek function causes it to
368  * seek by any means (like reopening and linear reading) or other normally unreasonable
369  * means that can be extremely slow.
370  * This may be ignored by the seek code.
371  */
372 #define AVSEEK_FORCE 0x20000
373 
374 /**
375  * fseek() equivalent for AVIOContext.
376  * @return new position or AVERROR.
377  */
378 int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
379 
380 /**
381  * Skip given number of bytes forward
382  * @return new position or AVERROR.
383  */
384 int64_t avio_skip(AVIOContext *s, int64_t offset);
385 
386 /**
387  * ftell() equivalent for AVIOContext.
388  * @return position or AVERROR.
389  */
391 {
392  return avio_seek(s, 0, SEEK_CUR);
393 }
394 
395 /**
396  * Get the filesize.
397  * @return filesize or AVERROR
398  */
399 int64_t avio_size(AVIOContext *s);
400 
401 /**
402  * feof() equivalent for AVIOContext.
403  * @return non zero if and only if end of file
404  */
405 int avio_feof(AVIOContext *s);
406 #if FF_API_URL_FEOF
407 /**
408  * @deprecated use avio_feof()
409  */
411 int url_feof(AVIOContext *s);
412 #endif
413 
414 /** @warning currently size is limited */
415 int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
416 
417 /**
418  * Force flushing of buffered data.
419  *
420  * For write streams, force the buffered data to be immediately written to the output,
421  * without to wait to fill the internal buffer.
422  *
423  * For read streams, discard all currently buffered data, and advance the
424  * reported file position to that of the underlying stream. This does not
425  * read new data, and does not perform any seeks.
426  */
427 void avio_flush(AVIOContext *s);
428 
429 /**
430  * Read size bytes from AVIOContext into buf.
431  * @return number of bytes read or AVERROR
432  */
433 int avio_read(AVIOContext *s, unsigned char *buf, int size);
434 
435 /**
436  * @name Functions for reading from AVIOContext
437  * @{
438  *
439  * @note return 0 if EOF, so you cannot use it if EOF handling is
440  * necessary
441  */
442 int avio_r8 (AVIOContext *s);
443 unsigned int avio_rl16(AVIOContext *s);
444 unsigned int avio_rl24(AVIOContext *s);
445 unsigned int avio_rl32(AVIOContext *s);
446 uint64_t avio_rl64(AVIOContext *s);
447 unsigned int avio_rb16(AVIOContext *s);
448 unsigned int avio_rb24(AVIOContext *s);
449 unsigned int avio_rb32(AVIOContext *s);
450 uint64_t avio_rb64(AVIOContext *s);
451 /**
452  * @}
453  */
454 
455 /**
456  * Read a string from pb into buf. The reading will terminate when either
457  * a NULL character was encountered, maxlen bytes have been read, or nothing
458  * more can be read from pb. The result is guaranteed to be NULL-terminated, it
459  * will be truncated if buf is too small.
460  * Note that the string is not interpreted or validated in any way, it
461  * might get truncated in the middle of a sequence for multi-byte encodings.
462  *
463  * @return number of bytes read (is always <= maxlen).
464  * If reading ends on EOF or error, the return value will be one more than
465  * bytes actually read.
466  */
467 int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen);
468 
469 /**
470  * Read a UTF-16 string from pb and convert it to UTF-8.
471  * The reading will terminate when either a null or invalid character was
472  * encountered or maxlen bytes have been read.
473  * @return number of bytes read (is always <= maxlen)
474  */
475 int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen);
476 int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen);
477 
478 
479 /**
480  * @name URL open modes
481  * The flags argument to avio_open must be one of the following
482  * constants, optionally ORed with other flags.
483  * @{
484  */
485 #define AVIO_FLAG_READ 1 /**< read-only */
486 #define AVIO_FLAG_WRITE 2 /**< write-only */
487 #define AVIO_FLAG_READ_WRITE (AVIO_FLAG_READ|AVIO_FLAG_WRITE) /**< read-write pseudo flag */
488 /**
489  * @}
490  */
491 
492 /**
493  * Use non-blocking mode.
494  * If this flag is set, operations on the context will return
495  * AVERROR(EAGAIN) if they can not be performed immediately.
496  * If this flag is not set, operations on the context will never return
497  * AVERROR(EAGAIN).
498  * Note that this flag does not affect the opening/connecting of the
499  * context. Connecting a protocol will always block if necessary (e.g. on
500  * network protocols) but never hang (e.g. on busy devices).
501  * Warning: non-blocking protocols is work-in-progress; this flag may be
502  * silently ignored.
503  */
504 #define AVIO_FLAG_NONBLOCK 8
505 
506 /**
507  * Use direct mode.
508  * avio_read and avio_write should if possible be satisfied directly
509  * instead of going through a buffer, and avio_seek will always
510  * call the underlying seek function directly.
511  */
512 #define AVIO_FLAG_DIRECT 0x8000
513 
514 /**
515  * Create and initialize a AVIOContext for accessing the
516  * resource indicated by url.
517  * @note When the resource indicated by url has been opened in
518  * read+write mode, the AVIOContext can be used only for writing.
519  *
520  * @param s Used to return the pointer to the created AVIOContext.
521  * In case of failure the pointed to value is set to NULL.
522  * @param url resource to access
523  * @param flags flags which control how the resource indicated by url
524  * is to be opened
525  * @return >= 0 in case of success, a negative value corresponding to an
526  * AVERROR code in case of failure
527  */
528 int avio_open(AVIOContext **s, const char *url, int flags);
529 
530 /**
531  * Create and initialize a AVIOContext for accessing the
532  * resource indicated by url.
533  * @note When the resource indicated by url has been opened in
534  * read+write mode, the AVIOContext can be used only for writing.
535  *
536  * @param s Used to return the pointer to the created AVIOContext.
537  * In case of failure the pointed to value is set to NULL.
538  * @param url resource to access
539  * @param flags flags which control how the resource indicated by url
540  * is to be opened
541  * @param int_cb an interrupt callback to be used at the protocols level
542  * @param options A dictionary filled with protocol-private options. On return
543  * this parameter will be destroyed and replaced with a dict containing options
544  * that were not found. May be NULL.
545  * @return >= 0 in case of success, a negative value corresponding to an
546  * AVERROR code in case of failure
547  */
548 int avio_open2(AVIOContext **s, const char *url, int flags,
550 
551 /**
552  * Close the resource accessed by the AVIOContext s and free it.
553  * This function can only be used if s was opened by avio_open().
554  *
555  * The internal buffer is automatically flushed before closing the
556  * resource.
557  *
558  * @return 0 on success, an AVERROR < 0 on error.
559  * @see avio_closep
560  */
561 int avio_close(AVIOContext *s);
562 
563 /**
564  * Close the resource accessed by the AVIOContext *s, free it
565  * and set the pointer pointing to it to NULL.
566  * This function can only be used if s was opened by avio_open().
567  *
568  * The internal buffer is automatically flushed before closing the
569  * resource.
570  *
571  * @return 0 on success, an AVERROR < 0 on error.
572  * @see avio_close
573  */
574 int avio_closep(AVIOContext **s);
575 
576 
577 /**
578  * Open a write only memory stream.
579  *
580  * @param s new IO context
581  * @return zero if no error.
582  */
584 
585 /**
586  * Return the written size and a pointer to the buffer. The buffer
587  * must be freed with av_free().
588  * Padding of AV_INPUT_BUFFER_PADDING_SIZE is added to the buffer.
589  *
590  * @param s IO context
591  * @param pbuffer pointer to a byte buffer
592  * @return the length of the byte buffer
593  */
594 int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
595 
596 /**
597  * Iterate through names of available protocols.
598  *
599  * @param opaque A private pointer representing current protocol.
600  * It must be a pointer to NULL on first iteration and will
601  * be updated by successive calls to avio_enum_protocols.
602  * @param output If set to 1, iterate over output protocols,
603  * otherwise over input protocols.
604  *
605  * @return A static string containing the name of current protocol or NULL
606  */
607 const char *avio_enum_protocols(void **opaque, int output);
608 
609 /**
610  * Pause and resume playing - only meaningful if using a network streaming
611  * protocol (e.g. MMS).
612  *
613  * @param h IO context from which to call the read_pause function pointer
614  * @param pause 1 for pause, 0 for resume
615  */
616 int avio_pause(AVIOContext *h, int pause);
617 
618 /**
619  * Seek to a given timestamp relative to some component stream.
620  * Only meaningful if using a network streaming protocol (e.g. MMS.).
621  *
622  * @param h IO context from which to call the seek function pointers
623  * @param stream_index The stream index that the timestamp is relative to.
624  * If stream_index is (-1) the timestamp should be in AV_TIME_BASE
625  * units from the beginning of the presentation.
626  * If a stream_index >= 0 is used and the protocol does not support
627  * seeking based on component streams, the call will fail.
628  * @param timestamp timestamp in AVStream.time_base units
629  * or if there is no stream specified then in AV_TIME_BASE units.
630  * @param flags Optional combination of AVSEEK_FLAG_BACKWARD, AVSEEK_FLAG_BYTE
631  * and AVSEEK_FLAG_ANY. The protocol may silently ignore
632  * AVSEEK_FLAG_BACKWARD and AVSEEK_FLAG_ANY, but AVSEEK_FLAG_BYTE will
633  * fail if used and not supported.
634  * @return >= 0 on success
635  * @see AVInputFormat::read_seek
636  */
637 int64_t avio_seek_time(AVIOContext *h, int stream_index,
638  int64_t timestamp, int flags);
639 
640 /* Avoid a warning. The header can not be included because it breaks c++. */
641 struct AVBPrint;
642 
643 /**
644  * Read contents of h into print buffer, up to max_size bytes, or up to EOF.
645  *
646  * @return 0 for success (max_size bytes read or EOF reached), negative error
647  * code otherwise
648  */
649 int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size);
650 
651 /**
652  * Accept and allocate a client context on a server context.
653  * @param s the server context
654  * @param c the client context, must be unallocated
655  * @return >= 0 on success or a negative value corresponding
656  * to an AVERROR on failure
657  */
659 
660 /**
661  * Perform one step of the protocol handshake to accept a new client.
662  * This function must be called on a client returned by avio_accept() before
663  * using it as a read/write context.
664  * It is separate from avio_accept() because it may block.
665  * A step of the handshake is defined by places where the application may
666  * decide to change the proceedings.
667  * For example, on a protocol with a request header and a reply header, each
668  * one can constitute a step because the application may use the parameters
669  * from the request to change parameters in the reply; or each individual
670  * chunk of the request can constitute a step.
671  * If the handshake is already finished, avio_handshake() does nothing and
672  * returns 0 immediately.
673  *
674  * @param c the client context to perform the handshake on
675  * @return 0 on a complete and successful handshake
676  * > 0 if the handshake progressed, but is not complete
677  * < 0 for an AVERROR code
678  */
680 #endif /* AVFORMAT_AVIO_H */
int avio_open(AVIOContext **s, const char *url, int flags)
Create and initialize a AVIOContext for accessing the resource indicated by url.
Definition: aviobuf.c:913
void avio_wb64(AVIOContext *s, uint64_t val)
Definition: aviobuf.c:411
const char const char void * val
Definition: avisynth_c.h:634
void avio_wl16(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:417
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:282
int64_t(* read_seek)(void *opaque, int stream_index, int64_t timestamp, int flags)
Seek to a given timestamp in stream with the specified stream_index.
Definition: avio.h:155
int avpriv_io_delete(const char *url)
Delete a resource.
Definition: avio.c:466
int avio_put_str16be(AVIOContext *s, const char *str)
Convert an UTF-8 string to UTF-16BE and write it.
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
Definition: aviobuf.c:1146
int64_t filemode
Unix file mode, -1 if unknown.
Definition: avio.h:92
const char * fmt
Definition: avisynth_c.h:632
unsigned char * buf_ptr
Current position in the buffer.
Definition: avio.h:127
int writeout_count
writeout statistic This field is internal to libavformat and access from outside is not allowed...
Definition: avio.h:191
unsigned char * buf_end
End of the data, may be less than buffer+buffer_size if the read function returned less data than req...
Definition: avio.h:128
int write_flag
true if open for writing
Definition: avio.h:140
int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size)
Read contents of h into print buffer, up to max_size bytes, or up to EOF.
Definition: aviobuf.c:1006
Describes single entry of the directory.
Definition: avio.h:78
const char * b
Definition: vf_curves.c:109
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:204
unsigned char * buffer
Start of the buffer.
Definition: avio.h:125
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:277
int64_t(* seek)(void *opaque, int64_t offset, int whence)
Definition: avio.h:136
void * opaque
A private pointer, passed to the read/write/seek/...
Definition: avio.h:132
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:675
int64_t maxsize
max filesize, used to limit allocations This field is internal to libavformat and access from outside...
Definition: avio.h:166
int avio_get_str16le(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a UTF-16 string from pb and convert it to UTF-8.
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition: aviobuf.c:1134
void * opaque
Definition: avio.h:52
int64_t modification_timestamp
Time of last modification in microseconds since unix epoch, -1 if unknown.
Definition: avio.h:84
Public dictionary API.
int avio_accept(AVIOContext *s, AVIOContext **c)
Accept and allocate a client context on a server context.
Definition: aviobuf.c:1024
void avio_wl32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:319
uint8_t
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:690
const AVClass * av_class
A class for private options.
Definition: avio.h:124
int64_t bytes_read
Bytes read statistic This field is internal to libavformat and access from outside is not allowed...
Definition: avio.h:179
ptrdiff_t size
Definition: opengl_enc.c:101
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:757
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:390
void avio_write(AVIOContext *s, const unsigned char *buf, int size)
Definition: aviobuf.c:178
const OptionDef options[]
Definition: ffserver.c:3807
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:538
int avio_check(const char *url, int flags)
Return AVIO_FLAG_* access flags corresponding to the access permissions of the resource in url...
Definition: avio.c:425
void avio_wl64(AVIOContext *s, uint64_t val)
Definition: aviobuf.c:405
int max_packet_size
Definition: avio.h:141
Callback for checking whether to abort blocking functions.
Definition: avio.h:50
AVIOContext * avio_alloc_context(unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Allocate and initialize an AVIOContext for buffered I/O.
Definition: aviobuf.c:112
char * name
Filename.
Definition: avio.h:79
int(* write_packet)(void *opaque, uint8_t *buf, int buf_size)
Definition: avio.h:135
int(* callback)(void *)
Definition: avio.h:51
const AVIOInterruptCB int_cb
Definition: ffmpeg.c:464
int(* read_packet)(void *opaque, uint8_t *buf, int buf_size)
Definition: avio.h:134
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:659
const char * avio_enum_protocols(void **opaque, int output)
Iterate through names of available protocols.
Definition: avio.c:87
int avio_close(AVIOContext *s)
Close the resource accessed by the AVIOContext s and free it.
Definition: aviobuf.c:941
int utf8
Set to 1 when name is encoded with UTF-8, 0 otherwise.
Definition: avio.h:81
unsigned long checksum
Definition: avio.h:142
static const uint8_t offset[127][2]
Definition: vf_spp.c:92
int direct
avio_read and avio_write should if possible be satisfied directly instead of going through a buffer...
Definition: avio.h:173
#define av_printf_format(fmtpos, attrpos)
Definition: attributes.h:148
int seek_count
seek statistic This field is internal to libavformat and access from outside is not allowed...
Definition: avio.h:185
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:529
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:160
int void avio_flush(AVIOContext *s)
Force flushing of buffered data.
Definition: aviobuf.c:198
unsigned int avio_rb24(AVIOContext *s)
Definition: aviobuf.c:683
void avio_free_directory_entry(AVIODirEntry **entry)
Free entry allocated by avio_read_dir().
Definition: avio.c:548
int64_t access_timestamp
Time of last access in microseconds since unix epoch, -1 if unknown.
Definition: avio.h:86
unsigned char * checksum_ptr
Definition: avio.h:143
void avio_wb24(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:435
int must_flush
true if the next seek should flush
Definition: avio.h:138
Libavformat version macros.
unsigned long(* update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size)
Definition: avio.h:144
int64_t size
File size in bytes, -1 if unknown.
Definition: avio.h:83
int buffer_size
Maximum buffer size.
Definition: avio.h:126
int avpriv_io_move(const char *url_src, const char *url_dst)
Move or rename a resource.
Definition: avio.c:444
int avio_put_str(AVIOContext *s, const char *str)
Write a NULL-terminated string.
Definition: aviobuf.c:335
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
int type
Type of the entry.
Definition: avio.h:80
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:156
void * buf
Definition: avisynth_c.h:553
Definition: url.h:39
Describe the class of an AVClass context structure.
Definition: log.h:67
int64_t group_id
Group ID of owner, -1 if unknown.
Definition: avio.h:91
const char * avio_find_protocol_name(const char *url)
Return the name of the protocol that will handle the passed URL.
Definition: avio.c:418
int avio_put_str16le(AVIOContext *s, const char *str)
Convert an UTF-8 string to UTF-16LE and write it.
int avio_open2(AVIOContext **s, const char *url, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options)
Create and initialize a AVIOContext for accessing the resource indicated by url.
Definition: aviobuf.c:918
int short_seek_threshold
Threshold to favor readahead over seek.
Definition: avio.h:204
int avio_handshake(AVIOContext *c)
Perform one step of the protocol handshake to accept a new client.
Definition: aviobuf.c:1035
int avio_close_dir(AVIODirContext **s)
Close directory.
Definition: avio.c:533
int error
contains the error code or 0 if no error happened
Definition: avio.h:145
void avio_wl24(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:429
int avio_pause(AVIOContext *h, int pause)
Pause and resume playing - only meaningful if using a network streaming protocol (e.g.
Definition: aviobuf.c:979
int(* read_pause)(void *opaque, int pause)
Pause or resume playback for network streaming protocols - e.g.
Definition: avio.h:149
void avio_wb16(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:423
static int flags
Definition: cpu.c:47
#define attribute_deprecated
Definition: attributes.h:86
int orig_buffer_size
Original buffer size used internally after probing and ensure seekback to reset the buffer size This ...
Definition: avio.h:198
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:643
common internal and external API header
int avio_get_str16be(AVIOContext *pb, int maxlen, char *buf, int buflen)
int64_t status_change_timestamp
Time of last status change in microseconds since unix epoch, -1 if unknown.
Definition: avio.h:88
AVIODirEntryType
Directory entry types.
Definition: avio.h:58
static double c[64]
int64_t pos
position in the file of the current buffer
Definition: avio.h:137
int64_t avio_seek_time(AVIOContext *h, int stream_index, int64_t timestamp, int flags)
Seek to a given timestamp relative to some component stream.
Definition: aviobuf.c:986
int avio_read_dir(AVIODirContext *s, AVIODirEntry **next)
Get next directory entry.
Definition: avio.c:520
int eof_reached
true if eof reached
Definition: avio.h:139
int64_t user_id
User ID of owner, -1 if unknown.
Definition: avio.h:90
int avio_open_dir(AVIODirContext **s, const char *url, AVDictionary **options)
Open directory for reading.
Definition: avio.c:482
void avio_wb32(AVIOContext *s, unsigned int val)
Definition: aviobuf.c:327
#define av_always_inline
Definition: attributes.h:37
int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a string from pb into buf.
Definition: aviobuf.c:715
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
Definition: aviobuf.c:301
unsigned int avio_rl24(AVIOContext *s)
Definition: aviobuf.c:651
struct URLContext * url_context
Definition: avio.h:96
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
Definition: aviobuf.c:959
uint64_t avio_rl64(AVIOContext *s)
Definition: aviobuf.c:667
static int write_packet(AVFormatContext *s1, AVPacket *pkt)
Definition: v4l2enc.c:86
GLuint buffer
Definition: opengl_enc.c:102
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2