This will use the default priority for gnutls. When supported, the priority will be set to @SYSTEM which allows to adapt the ciphers list at runtime according to the policy set.
See also: https://fedoraproject.org/wiki/Packaging:CryptoPolicies https://wiki.debian.org/CryptoPolicy Signed-off-by: Nicolas Chauvet <kwiz...@gmail.com> --- libavformat/tls_gnutls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/tls_gnutls.c b/libavformat/tls_gnutls.c index f32bc2821b..b30e8ea007 100644 --- a/libavformat/tls_gnutls.c +++ b/libavformat/tls_gnutls.c @@ -181,7 +181,7 @@ static int tls_open(URLContext *h, const char *uri, int flags, AVDictionary **op gnutls_transport_set_pull_function(p->session, gnutls_url_pull); gnutls_transport_set_push_function(p->session, gnutls_url_push); gnutls_transport_set_ptr(p->session, c->tcp); - gnutls_priority_set_direct(p->session, "NORMAL", NULL); + gnutls_set_default_priority (p->session); do { ret = gnutls_handshake(p->session); if (gnutls_error_is_fatal(ret)) { -- 2.17.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".