aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/network.c
diff options
context:
space:
mode:
authorMarvin Scholz <epirat07@gmail.com>2025-06-25 21:07:12 +0200
committerMarvin Scholz <epirat07@gmail.com>2025-07-07 01:52:46 +0200
commitf0913b3f16c31f96f626fd43b85ac8762376b06f (patch)
tree6920a6301b58190602b3b0523d3c8c8338818518 /libavformat/network.c
parentf256487cd8f29f24036efa5d91a84a26b048861a (diff)
downloadffmpeg-f0913b3f16c31f96f626fd43b85ac8762376b06f.tar.gz
avformat: tls: drop support for OpenSSL < 1.1.0
Diffstat (limited to 'libavformat/network.c')
-rw-r--r--libavformat/network.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/network.c b/libavformat/network.c
index 2eabd0c167..a7026ac09b 100644
--- a/libavformat/network.c
+++ b/libavformat/network.c
@@ -36,11 +36,6 @@
int ff_tls_init(void)
{
#if CONFIG_TLS_PROTOCOL
-#if CONFIG_OPENSSL && OPENSSL_VERSION_NUMBER < 0x10100000L
- int ret;
- if ((ret = ff_openssl_init()) < 0)
- return ret;
-#endif
#if CONFIG_GNUTLS
ff_gnutls_init();
#endif
@@ -51,9 +46,6 @@ int ff_tls_init(void)
void ff_tls_deinit(void)
{
#if CONFIG_TLS_PROTOCOL
-#if CONFIG_OPENSSL && OPENSSL_VERSION_NUMBER < 0x10100000L
- ff_openssl_deinit();
-#endif
#if CONFIG_GNUTLS
ff_gnutls_deinit();
#endif