MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / avio_protocol_get_class

Function avio_protocol_get_class

libavformat/protocols.c:114–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112}
113
114const AVClass *avio_protocol_get_class(const char *name)
115{
116 int i = 0;
117 for (i = 0; url_protocols[i]; i++) {
118 if (!strcmp(url_protocols[i]->name, name))
119 return url_protocols[i]->priv_data_class;
120 }
121 return NULL;
122}
123
124const URLProtocol **ffurl_get_protocols(const char *whitelist,
125 const char *blacklist)

Callers 1

show_help_protocolFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected