rist: Add a plugin implenting RIST TR-06-1 Simple Profile
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Mon, 21 Jan 2019 16:44:10 +0000 (11:44 -0500)
committerNicolas Dufresne <nicolas@ndufresne.ca>
Thu, 2 May 2019 19:28:25 +0000 (19:28 +0000)
commitf0d04b39ddb23e1f27272971a3dc8ad3f89921bc
tree934b0cefc31634e7b4c9c29a231b2461c3808e67
parent8d4ce1e853cfd23356d7759e22a678a41f65bd2e
rist: Add a plugin implenting RIST TR-06-1 Simple Profile

RIST TR-06-1 is a specification for video streaming made by the VSF
group. It is using a subset of RTP specification to which some
modification has been made to improve RTX behaviour and avoid any need
for signaling. The plugin implement ristrtxsend / ristrtxreceive element
which are the RIST specific equivalent of rtprtxsend/rtprtxreceive and
ristsink / ristsrc which implement rist transmitter and receiver. The
RIST protocol is meant to be used in unidirectional way. Typically, MPEG
TS over RTP is used.

Currently we support unicast and multicast streaming according to the
specification. This patch does not include any bonding support yet. The
ristsrc element introduce rist:// URI handling in parallel to it's
property configuration interface.
configure.ac
gst/meson.build
gst/rist/Makefile.am [new file with mode: 0644]
gst/rist/gstrist.h [new file with mode: 0644]
gst/rist/gstristplugin.c [new file with mode: 0644]
gst/rist/gstristrtxreceive.c [new file with mode: 0644]
gst/rist/gstristrtxsend.c [new file with mode: 0644]
gst/rist/gstristsink.c [new file with mode: 0644]
gst/rist/gstristsrc.c [new file with mode: 0644]
gst/rist/meson.build [new file with mode: 0644]
meson_options.txt