diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-06-18 20:36:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-19 18:40:49 +0200 |
commit | 93d076b4fde12f11c67dcea86a27cc9770450fd4 (patch) | |
tree | ef95f50aed63a1999144a3c05341a8b61aba4cd7 | |
parent | 8749b83e0be1b290ae2605f11684d096cc85098f (diff) | |
download | ffmpeg-93d076b4fde12f11c67dcea86a27cc9770450fd4.tar.gz |
avformat: clarify what package needs to be compiled with SSL support
Try to reduce user confusion.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit f6c3f1ed6048ebc55f652ed59f7af9acebbf57e5)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/avio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.c b/libavformat/avio.c index deeb87f9ec..261ff2af98 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -263,7 +263,7 @@ int ffurl_alloc(URLContext **puc, const char *filename, int flags, *puc = NULL; if (av_strstart(filename, "https:", NULL)) - av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile with " + av_log(NULL, AV_LOG_WARNING, "https protocol not found, recompile FFmpeg with " "openssl, gnutls,\n" "or securetransport enabled.\n"); return AVERROR_PROTOCOL_NOT_FOUND; |