mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 17:04:32 +04:00
This adds the Secure Reliable Transport (SRT) package. SRT is used as a popular transfer protocol for video & audio and can be used within gstreamer as both a sink or source. It also supports stream encryptino by simply setting a password on both ends of the link. More details can be found here: https://www.haivision.com/products/srt-secure-reliable-transport/ It is being actively developed on github: https://github.com/Haivision/srt Signed-off-by: Koen Vandeputte <koen.vandeputte@citymesh.com>
34 lines
429 B
Plaintext
34 lines
429 B
Plaintext
if PACKAGE_srt
|
|
|
|
comment "Encryption support"
|
|
|
|
choice
|
|
prompt "Selected Encryption library"
|
|
default SRT_OPENSSL
|
|
|
|
config SRT_OPENSSL
|
|
bool "OpenSSL"
|
|
|
|
config SRT_MBEDTLS
|
|
bool "mbed TLS"
|
|
|
|
config SRT_GNUTLS
|
|
bool "GNUTLS"
|
|
|
|
config SRT_NOENCRYPTION
|
|
bool "No encryption support"
|
|
|
|
endchoice
|
|
|
|
comment "Options"
|
|
|
|
config SRT_MONOTONIC_CLOCK
|
|
bool "Monotonic clock"
|
|
default y
|
|
|
|
config SRT_BONDING
|
|
bool "Bonding"
|
|
default n
|
|
|
|
endif
|