Go to the documentation of this file.
48 if (!*path)
return AVERROR(EINVAL);
52 path = strchr(path,
'/');
53 if (!path)
return AVERROR(EINVAL);
57 "Gopher protocol type '%c' not supported yet!\n",
81 char proto[10], hostname[1024], auth[1024], path[1024], buf[1024];
83 const char *lower_proto =
"tcp";
89 hostname,
sizeof(hostname), &port, path,
sizeof(path), uri);
94 if (!strcmp(proto,
"gophers"))
101 &
h->interrupt_callback,
NULL,
h->protocol_whitelist,
h->protocol_blacklist,
h);
120 #if CONFIG_GOPHER_PROTOCOL
129 .default_whitelist =
"gopher,tcp"
133 #if CONFIG_GOPHERS_PROTOCOL
142 .default_whitelist =
"gopher,gophers,tcp,tls"
#define AV_LOG_WARNING
Something somehow does not look correct.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
#define URL_PROTOCOL_FLAG_NETWORK
#define AVIO_FLAG_READ_WRITE
read-write pseudo flag
static int gopher_open(URLContext *h, const char *uri, int flags)
static int gopher_close(URLContext *h)
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
static int gopher_write(URLContext *h, const uint8_t *buf, int size)
static int gopher_connect(URLContext *h, const char *path)
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
const URLProtocol ff_gophers_protocol
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
static int gopher_read(URLContext *h, uint8_t *buf, int size)
int ffurl_read(URLContext *h, unsigned char *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf.
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
#define flags(name, subs,...)
const URLProtocol ff_gopher_protocol