Home
last modified time | relevance | path

Searched defs:AVIOContext (Results 1 – 1 of 1) sorted by relevance

/third_party/ffmpeg/libavformat/
Davio.h161 typedef struct AVIOContext { struct
179 * (since AVIOContext is used for both): argument
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
233 void *opaque; /**< A private pointer, passed to the read/write/seek/...
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);
[all …]