From f78be9d6988b1c3d1482a981c94a545e79645e43 Mon Sep 17 00:00:00 2001 From: Justin Kim Date: Mon, 31 Jul 2017 14:38:34 +0900 Subject: srt: Introduce SRT source and sink SRT[0] is an open source transport technology[1] that optimizes streaming performance across unpredictable networks. Although SRT is based on UDP, it works like connection-oriented protocol. However, it doesn't mean that the SRT server or client is necessarily to link to a receiver or a sender so, here, the pairs of source and sink elements are introduced. - srtserversink: SRT server to feed SRT stream - srtclientsrc: SRT client to get SRT stream from srtserversink - srtclientsink: SRT client to send SRT stream - srtserversrc: SRT server to listen from srtclientsink [0] https://github.com/Haivision/srt [1] http://www.srtalliance.org/ https://bugzilla.gnome.org/show_bug.cgi?id=785730 --- ext/meson.build | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/meson.build') diff --git a/ext/meson.build b/ext/meson.build index 2f3eeb6f0..fbe3513d2 100644 --- a/ext/meson.build +++ b/ext/meson.build @@ -54,6 +54,7 @@ if cc.get_id() != 'msvc' subdir('spandsp') endif #subdir('spc') +subdir('srt') subdir('srtp') #subdir('teletextdec') #subdir('wildmidi') -- cgit v1.2.1