#include <avio.h>
Data Fields | |
const char * | name |
int(* | url_open )(URLContext *h, const char *url, int flags) |
int(* | url_read )(URLContext *h, unsigned char *buf, int size) |
int(* | url_write )(URLContext *h, const unsigned char *buf, int size) |
int64_t(* | url_seek )(URLContext *h, int64_t pos, int whence) |
int(* | url_close )(URLContext *h) |
struct URLProtocol * | next |
int(* | url_read_pause )(URLContext *h, int pause) |
int64_t(* | url_read_seek )(URLContext *h, int stream_index, int64_t timestamp, int flags) |
int(* | url_get_file_handle )(URLContext *h) |
int | priv_data_size |
const AVClass * | priv_data_class |
int | flags |
int(* | url_check )(URLContext *h, int mask) |
Definition at line 160 of file avio.h.
const char* URLProtocol::name |
Definition at line 161 of file avio.h.
Referenced by ffurl_alloc(), ffurl_connect(), opt_protocols(), url_alloc_for_protocol(), and urlcontext_to_name().
struct URLProtocol* URLProtocol::next [read] |
Definition at line 167 of file avio.h.
Referenced by ffurl_protocol_next(), and ffurl_register_protocol().
Definition at line 173 of file avio.h.
Referenced by ffurl_close(), url_alloc_for_protocol(), urlcontext_child_class_next(), and urlcontext_child_next().
int(* URLProtocol::url_check)(URLContext *h, int mask) |
Referenced by avio_check().
int(* URLProtocol::url_close)(URLContext *h) |
Referenced by ffurl_close().
int(* URLProtocol::url_get_file_handle)(URLContext *h) |
Referenced by ffurl_get_file_handle().
int(* URLProtocol::url_open)(URLContext *h, const char *url, int flags) |
Referenced by ffurl_connect().
int(* URLProtocol::url_read)(URLContext *h, unsigned char *buf, int size) |
Referenced by ffurl_read(), ffurl_read_complete(), and opt_protocols().
int(* URLProtocol::url_read_pause)(URLContext *h, int pause) |
Referenced by av_url_read_pause(), and ffio_fdopen().
int64_t(* URLProtocol::url_read_seek)(URLContext *h, int stream_index, int64_t timestamp, int flags) |
Referenced by av_url_read_seek(), and ffio_fdopen().
int64_t(* URLProtocol::url_seek)(URLContext *h, int64_t pos, int whence) |
Referenced by ffurl_seek(), and opt_protocols().
int(* URLProtocol::url_write)(URLContext *h, const unsigned char *buf, int size) |
Referenced by ffurl_write(), and opt_protocols().