Files
packages/libs/srt/Config.in
Koen Vandeputte 963c528214 libs/srt: add new package v1.5.3
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>
2024-10-16 10:47:26 -07:00

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