2016-08-12 15:51:45 +00:00
|
|
|
dtls_sources = [
|
|
|
|
'gstdtlsagent.c',
|
|
|
|
'gstdtlscertificate.c',
|
|
|
|
'gstdtlsconnection.c',
|
|
|
|
'gstdtlsdec.c',
|
|
|
|
'gstdtlsenc.c',
|
|
|
|
'gstdtlssrtpbin.c',
|
|
|
|
'gstdtlssrtpdec.c',
|
|
|
|
'gstdtlssrtpdemux.c',
|
|
|
|
'gstdtlssrtpenc.c',
|
|
|
|
'plugin.c',
|
2021-02-17 11:22:07 +00:00
|
|
|
'gstdtlselement.c',
|
2016-08-12 15:51:45 +00:00
|
|
|
]
|
|
|
|
|
2023-10-18 08:49:44 +00:00
|
|
|
dtls_option = get_option('dtls').enable_if(get_option('webrtc').enabled(), error_message: 'webrtc option is enabled')
|
|
|
|
openssl_dep = dependency('openssl', version: '>= 1.0.1', required: dtls_option)
|
|
|
|
libcrypto_dep = dependency('libcrypto', required: dtls_option)
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if openssl_dep.found() and libcrypto_dep.found()
|
|
|
|
gstdtls = library('gstdtls',
|
|
|
|
dtls_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
2018-11-06 17:47:43 +00:00
|
|
|
dependencies : [gst_dep, libcrypto_dep, openssl_dep] + winsock2,
|
2016-08-12 15:51:45 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstdtls]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|