You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avformat/tls_schannel: add DTLS support
This commit is contained in:
6
configure
vendored
6
configure
vendored
@ -3856,7 +3856,7 @@ tcp_protocol_select="network"
|
|||||||
tls_protocol_deps_any="gnutls openssl schannel securetransport libtls mbedtls"
|
tls_protocol_deps_any="gnutls openssl schannel securetransport libtls mbedtls"
|
||||||
tls_protocol_select="tcp_protocol"
|
tls_protocol_select="tcp_protocol"
|
||||||
# TODO: Support libtls, mbedtls, and gnutls.
|
# TODO: Support libtls, mbedtls, and gnutls.
|
||||||
dtls_protocol_deps_any="openssl"
|
dtls_protocol_deps_any="openssl schannel"
|
||||||
dtls_protocol_select="udp_protocol"
|
dtls_protocol_select="udp_protocol"
|
||||||
udp_protocol_select="network"
|
udp_protocol_select="network"
|
||||||
udplite_protocol_select="network"
|
udplite_protocol_select="network"
|
||||||
@ -7265,8 +7265,10 @@ enabled securetransport &&
|
|||||||
|
|
||||||
enabled schannel &&
|
enabled schannel &&
|
||||||
check_func_headers "windows.h security.h" InitializeSecurityContext -DSECURITY_WIN32 -lsecur32 &&
|
check_func_headers "windows.h security.h" InitializeSecurityContext -DSECURITY_WIN32 -lsecur32 &&
|
||||||
|
check_func_headers "windows.h ncrypt.h" NCryptOpenStorageProvider -DSECURITY_WIN32 -lncrypt &&
|
||||||
|
check_func_headers "windows.h wincrypt.h" CertCreateSelfSignCertificate -DSECURITY_WIN32 -lcrypt32 &&
|
||||||
test_cpp_condition winerror.h "defined(SEC_I_CONTEXT_EXPIRED)" &&
|
test_cpp_condition winerror.h "defined(SEC_I_CONTEXT_EXPIRED)" &&
|
||||||
schannel_extralibs="-lsecur32" ||
|
schannel_extralibs="-lsecur32 -lncrypt -lcrypt32" ||
|
||||||
disable schannel
|
disable schannel
|
||||||
|
|
||||||
makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
|
makeinfo --version > /dev/null 2>&1 && enable makeinfo || disable makeinfo
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -32,7 +32,7 @@
|
|||||||
#include "version_major.h"
|
#include "version_major.h"
|
||||||
|
|
||||||
#define LIBAVFORMAT_VERSION_MINOR 1
|
#define LIBAVFORMAT_VERSION_MINOR 1
|
||||||
#define LIBAVFORMAT_VERSION_MICRO 102
|
#define LIBAVFORMAT_VERSION_MICRO 103
|
||||||
|
|
||||||
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
|
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
|
||||||
LIBAVFORMAT_VERSION_MINOR, \
|
LIBAVFORMAT_VERSION_MINOR, \
|
||||||
|
Reference in New Issue
Block a user