| 112 | } |
| 113 | |
| 114 | const 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 | |
| 124 | const URLProtocol **ffurl_get_protocols(const char *whitelist, |
| 125 | const char *blacklist) |
no outgoing calls
no test coverage detected