You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavf/avio: Print the https warning also for missing tls protocol.
This commit is contained in:
@@ -297,7 +297,7 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags,
|
||||
return url_alloc_for_protocol(puc, p, filename, flags, int_cb);
|
||||
|
||||
*puc = NULL;
|
||||
if (av_strstart(filename, "https:", NULL))
|
||||
if (av_strstart(filename, "https:", NULL) || av_strstart(filename, "tls:", NULL))
|
||||
av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with "
|
||||
"openssl, gnutls "
|
||||
"or securetransport enabled.\n");
|
||||
|
Reference in New Issue
Block a user