Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
Davio.h162 typedef struct AVIOContext { struct
180 * (since AVIOContext is used for both): argument
227 unsigned char *buffer; /**< Start of the buffer. */
228 int buffer_size; /**< Maximum buffer size */
229 unsigned char *buf_ptr; /**< Current position in the buffer */
230 unsigned char *buf_end; /**< End of the data, may be less than
234 void *opaque; /**< A private pointer, passed to the read/write/seek/...
236 int (*read_packet)(void *opaque, uint8_t *buf, int buf_size);
237 int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
238 int64_t (*seek)(void *opaque, int64_t offset, int whence);
[all …]