diff --git a/libavformat/http.c b/libavformat/http.c index a06e36671e..d1b91e23d6 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -1522,7 +1522,7 @@ URLProtocol ff_http_protocol = { .priv_data_size = sizeof(HTTPContext), .priv_data_class = &http_context_class, .flags = URL_PROTOCOL_FLAG_NETWORK, - .default_whitelist = "http,https,tls,rtp,tcp,udp" + .default_whitelist = "http,https,tls,rtp,tcp,udp,crypto" }; #endif /* CONFIG_HTTP_PROTOCOL */ @@ -1541,7 +1541,7 @@ URLProtocol ff_https_protocol = { .priv_data_size = sizeof(HTTPContext), .priv_data_class = &https_context_class, .flags = URL_PROTOCOL_FLAG_NETWORK, - .default_whitelist = "http,https,tls,rtp,tcp,udp" + .default_whitelist = "http,https,tls,rtp,tcp,udp,crypto" }; #endif /* CONFIG_HTTPS_PROTOCOL */