diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-05-27 12:57:51 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-27 22:24:00 +0200 |
commit | a9f1d584e53fb39d983201585cb136986a85cac8 (patch) | |
tree | 894d369cab04efe2e40db0fc67f98d08699aaf93 /libavformat/tls.h | |
parent | fbf9583f9f88b24e0cb7c35b253193ae8f35e93d (diff) | |
download | ffmpeg-a9f1d584e53fb39d983201585cb136986a85cac8.tar.gz |
lavf: move TLS-related ifdeffery to library specific files
There is no need to have this mess in network.c.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/tls.h')
-rw-r--r-- | libavformat/tls.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/tls.h b/libavformat/tls.h index 445b1b5cef..558676fc8c 100644 --- a/libavformat/tls.h +++ b/libavformat/tls.h @@ -52,4 +52,10 @@ typedef struct TLSShared { int ff_tls_open_underlying(TLSShared *c, URLContext *parent, const char *uri, AVDictionary **options); +void ff_gnutls_init(void); +void ff_gnutls_deinit(void); + +int ff_openssl_init(void); +void ff_openssl_deinit(void); + #endif /* AVFORMAT_TLS_H */ |