|
const AVClass * | av_class |
| A class for private options. More...
|
|
unsigned char * | buffer |
| Start of the buffer. More...
|
|
int | buffer_size |
| Maximum buffer size. More...
|
|
unsigned char * | buf_ptr |
| Current position in the buffer. More...
|
|
unsigned char * | buf_end |
| End of the data, may be less than buffer+buffer_size if the read function returned less data than requested, e.g. More...
|
|
void * | opaque |
| A private pointer, passed to the read/write/seek/... functions. More...
|
|
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) |
|
int64_t | pos |
| position in the file of the current buffer More...
|
|
int | eof_reached |
| true if was unable to read due to error or eof More...
|
|
int | error |
| contains the error code or 0 if no error happened More...
|
|
int | write_flag |
| true if open for writing More...
|
|
int | max_packet_size |
|
int | min_packet_size |
| Try to buffer at least this amount of data before flushing it. More...
|
|
unsigned long | checksum |
|
unsigned char * | checksum_ptr |
|
unsigned long(* | update_checksum )(unsigned long checksum, const uint8_t *buf, unsigned int size) |
|
int(* | read_pause )(void *opaque, int pause) |
| Pause or resume playback for network streaming protocols - e.g. More...
|
|
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. More...
|
|
int | seekable |
| A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable. More...
|
|
int | direct |
| avio_read and avio_write should if possible be satisfied directly instead of going through a buffer, and avio_seek will always call the underlying seek function directly. More...
|
|
const char * | protocol_whitelist |
| ',' separated list of allowed protocols. More...
|
|
const char * | protocol_blacklist |
| ',' separated list of disallowed protocols. More...
|
|
int(* | write_data_type )(void *opaque, uint8_t *buf, int buf_size, enum AVIODataMarkerType type, int64_t time) |
| A callback that is used instead of write_packet. More...
|
|
int | ignore_boundary_point |
| If set, don't call write_data_type separately for AVIO_DATA_MARKER_BOUNDARY_POINT, but ignore them and treat them as AVIO_DATA_MARKER_UNKNOWN (to avoid needlessly small chunks of data returned from the callback). More...
|
|
unsigned char * | buf_ptr_max |
| Maximum reached position before a backward seek in the write buffer, used keeping track of already written data for a later flush. More...
|
|
int64_t | bytes_read |
| Read-only statistic of bytes read for this AVIOContext. More...
|
|
int64_t | bytes_written |
| Read-only statistic of bytes written for this AVIOContext. More...
|
|