]> git.sesse.net Git - ffmpeg/commitdiff
lavf/avio: Print https warning also for avio_find_protocol_name().
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>
Wed, 25 Sep 2019 09:32:57 +0000 (11:32 +0200)
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>
Tue, 1 Oct 2019 17:52:47 +0000 (19:52 +0200)
Helps to fix ticket #8197.

libavformat/avio.c

index 663789ec024264f877d6a695f17549c722731905..c1bad312cde5211c343259d4f8df6fa642f364f0 100644 (file)
@@ -283,6 +283,9 @@ static const struct URLProtocol *url_find_protocol(const char *filename)
         }
     }
     av_freep(&protocols);
+    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");
 
     return NULL;
 }
@@ -297,10 +300,6 @@ 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) || av_strstart(filename, "tls:", NULL))
-        av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with "
-                                     "openssl, gnutls "
-                                     "or securetransport enabled.\n");
     return AVERROR_PROTOCOL_NOT_FOUND;
 }