mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
f0d04b39dd
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.
59 lines
2.2 KiB
C
59 lines
2.2 KiB
C
/* GStreamer RIST plugin
|
|
* Copyright (C) 2019 Net Insight AB
|
|
* Author: Nicolas Dufresne <nicolas.dufresne@collabora.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#ifndef __GST_RIST_H__
|
|
#define __GST_RIST_H__
|
|
|
|
#define GST_TYPE_RIST_RTX_RECEIVE (gst_rist_rtx_receive_get_type())
|
|
#define GST_RIST_RTX_RECEIVE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RIST_RTX_RECEIVE, GstRistRtxReceive))
|
|
typedef struct _GstRistRtxReceive GstRistRtxReceive;
|
|
typedef struct {
|
|
GstElementClass parent_class;
|
|
} GstRistRtxReceiveClass;
|
|
GType gst_rist_rtx_receive_get_type (void);
|
|
|
|
#define GST_TYPE_RIST_RTX_SEND (gst_rist_rtx_send_get_type())
|
|
#define GST_RIST_RTX_SEND(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RIST_RTX_SEND, GstRistRtxSend))
|
|
typedef struct _GstRistRtxSend GstRistRtxSend;
|
|
typedef struct {
|
|
GstElementClass parent_class;
|
|
} GstRistRtxSendClass;
|
|
GType gst_rist_rtx_send_get_type (void);
|
|
|
|
#define GST_TYPE_RIST_SRC (gst_rist_src_get_type())
|
|
#define GST_RIST_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RIST_SRC,GstRistSrc))
|
|
typedef struct _GstRistSrc GstRistSrc;
|
|
typedef struct {
|
|
GstBinClass parent;
|
|
} GstRistSrcClass;
|
|
GType gst_rist_src_get_type (void);
|
|
|
|
|
|
#define GST_TYPE_RIST_SINK (gst_rist_sink_get_type())
|
|
#define GST_RIST_SINK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RIST_SINK,GstRistSink))
|
|
typedef struct _GstRistSink GstRistSink;
|
|
typedef struct {
|
|
GstBinClass parent;
|
|
} GstRistSinkClass;
|
|
GType gst_rist_sink_get_type (void);
|
|
|
|
#endif
|