mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
07e9374eff
Mostly follows the W3C specification https://www.w3.org/TR/webrtc/#peer-to-peer-data-api With contributions from: Mathieu Duponchelle <mathieu@centricular.com> https://bugzilla.gnome.org/show_bug.cgi?id=794351
561 lines
18 KiB
C
561 lines
18 KiB
C
/* GStreamer
|
|
* Copyright (C) 2017 Matthew Waters <matthew@centricular.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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "transportsendbin.h"
|
|
#include "utils.h"
|
|
|
|
/*
|
|
* ,------------------------transport_send_%u-------------------------,
|
|
* ; ,-----dtlssrtpenc---, ;
|
|
* data_sink o--------------------------o data_sink ; ;
|
|
* ; ; ; ,---nicesink---, ;
|
|
* rtp_sink o--------------------------o rtp_sink_0 src o--o sink ; ;
|
|
* ; ; ; '--------------' ;
|
|
* ; ,--outputselector--, ,-o rtcp_sink_0 ; ;
|
|
* ; ; src_0 o-' '-------------------' ;
|
|
* rtcp_sink ;---o sink ; ,----dtlssrtpenc----, ,---nicesink---, ;
|
|
* ; ; src_1 o---o rtcp_sink_0 src o--o sink ; ;
|
|
* ; '------------------' '-------------------' '--------------' ;
|
|
* '------------------------------------------------------------------'
|
|
*
|
|
* outputselecter is used to switch between rtcp-mux and no rtcp-mux
|
|
*
|
|
* FIXME: Do we need a valve drop=TRUE for the no RTCP case?
|
|
*/
|
|
|
|
#define GST_CAT_DEFAULT gst_webrtc_transport_send_bin_debug
|
|
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
|
|
|
#define transport_send_bin_parent_class parent_class
|
|
G_DEFINE_TYPE_WITH_CODE (TransportSendBin, transport_send_bin, GST_TYPE_BIN,
|
|
GST_DEBUG_CATEGORY_INIT (gst_webrtc_transport_send_bin_debug,
|
|
"webrtctransportsendbin", 0, "webrtctransportsendbin"););
|
|
|
|
static GstStaticPadTemplate rtp_sink_template =
|
|
GST_STATIC_PAD_TEMPLATE ("rtp_sink",
|
|
GST_PAD_SINK,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS ("application/x-rtp"));
|
|
|
|
static GstStaticPadTemplate rtcp_sink_template =
|
|
GST_STATIC_PAD_TEMPLATE ("rtcp_sink",
|
|
GST_PAD_SINK,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS ("application/x-rtp"));
|
|
|
|
static GstStaticPadTemplate data_sink_template =
|
|
GST_STATIC_PAD_TEMPLATE ("data_sink",
|
|
GST_PAD_SINK,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS_ANY);
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_STREAM,
|
|
PROP_RTCP_MUX,
|
|
};
|
|
|
|
#define TSB_GET_LOCK(tsb) (&tsb->lock)
|
|
#define TSB_LOCK(tsb) (g_mutex_lock (TSB_GET_LOCK(tsb)))
|
|
#define TSB_UNLOCK(tsb) (g_mutex_unlock (TSB_GET_LOCK(tsb)))
|
|
|
|
static void cleanup_blocks (TransportSendBin * send);
|
|
static void tsb_remove_probe (struct pad_block *block);
|
|
|
|
static void
|
|
_set_rtcp_mux (TransportSendBin * send, gboolean rtcp_mux)
|
|
{
|
|
GstPad *active_pad;
|
|
|
|
if (rtcp_mux)
|
|
active_pad = gst_element_get_static_pad (send->outputselector, "src_0");
|
|
else
|
|
active_pad = gst_element_get_static_pad (send->outputselector, "src_1");
|
|
send->rtcp_mux = rtcp_mux;
|
|
GST_OBJECT_UNLOCK (send);
|
|
|
|
g_object_set (send->outputselector, "active-pad", active_pad, NULL);
|
|
|
|
gst_object_unref (active_pad);
|
|
GST_OBJECT_LOCK (send);
|
|
}
|
|
|
|
static void
|
|
transport_send_bin_set_property (GObject * object, guint prop_id,
|
|
const GValue * value, GParamSpec * pspec)
|
|
{
|
|
TransportSendBin *send = TRANSPORT_SEND_BIN (object);
|
|
|
|
GST_OBJECT_LOCK (send);
|
|
switch (prop_id) {
|
|
case PROP_STREAM:
|
|
/* XXX: weak-ref this? Note, it's construct-only so can't be changed later */
|
|
send->stream = TRANSPORT_STREAM (g_value_get_object (value));
|
|
break;
|
|
case PROP_RTCP_MUX:
|
|
_set_rtcp_mux (send, g_value_get_boolean (value));
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
GST_OBJECT_UNLOCK (send);
|
|
}
|
|
|
|
static void
|
|
transport_send_bin_get_property (GObject * object, guint prop_id,
|
|
GValue * value, GParamSpec * pspec)
|
|
{
|
|
TransportSendBin *send = TRANSPORT_SEND_BIN (object);
|
|
|
|
GST_OBJECT_LOCK (send);
|
|
switch (prop_id) {
|
|
case PROP_STREAM:
|
|
g_value_set_object (value, send->stream);
|
|
break;
|
|
case PROP_RTCP_MUX:
|
|
g_value_set_boolean (value, send->rtcp_mux);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
break;
|
|
}
|
|
GST_OBJECT_UNLOCK (send);
|
|
}
|
|
|
|
static GstPadProbeReturn
|
|
pad_block (GstPad * pad, GstPadProbeInfo * info, gpointer unused)
|
|
{
|
|
GST_LOG_OBJECT (pad, "blocking pad with data %" GST_PTR_FORMAT, info->data);
|
|
|
|
return GST_PAD_PROBE_OK;
|
|
}
|
|
|
|
/* We block RTP/RTCP dataflow until the relevant DTLS key
|
|
* nego is done, but we need to block the *peer* src pad
|
|
* because the dtlssrtpenc state changes are done manually,
|
|
* and otherwise we can get state change problems trying to shut down */
|
|
static struct pad_block *
|
|
block_peer_pad (GstElement * elem, const gchar * pad_name)
|
|
{
|
|
GstPad *pad, *peer;
|
|
struct pad_block *block;
|
|
|
|
pad = gst_element_get_static_pad (elem, pad_name);
|
|
peer = gst_pad_get_peer (pad);
|
|
block = _create_pad_block (elem, peer, 0, NULL, NULL);
|
|
block->block_id = gst_pad_add_probe (peer,
|
|
GST_PAD_PROBE_TYPE_BLOCK | GST_PAD_PROBE_TYPE_BUFFER |
|
|
GST_PAD_PROBE_TYPE_BUFFER_LIST, (GstPadProbeCallback) pad_block, NULL,
|
|
NULL);
|
|
gst_object_unref (pad);
|
|
gst_object_unref (peer);
|
|
return block;
|
|
}
|
|
|
|
static void
|
|
tsb_remove_probe (struct pad_block *block)
|
|
{
|
|
if (block && block->block_id) {
|
|
gst_pad_remove_probe (block->pad, block->block_id);
|
|
block->block_id = 0;
|
|
}
|
|
}
|
|
|
|
static GstStateChangeReturn
|
|
transport_send_bin_change_state (GstElement * element,
|
|
GstStateChange transition)
|
|
{
|
|
TransportSendBin *send = TRANSPORT_SEND_BIN (element);
|
|
GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
|
|
|
|
GST_DEBUG_OBJECT (element, "changing state: %s => %s",
|
|
gst_element_state_get_name (GST_STATE_TRANSITION_CURRENT (transition)),
|
|
gst_element_state_get_name (GST_STATE_TRANSITION_NEXT (transition)));
|
|
|
|
switch (transition) {
|
|
case GST_STATE_CHANGE_NULL_TO_READY:{
|
|
/* XXX: don't change state until the client-ness has been chosen
|
|
* arguably the element should be able to deal with this itself or
|
|
* we should only add it once/if we get the encoding keys */
|
|
TSB_LOCK (send);
|
|
gst_element_set_locked_state (send->rtp_ctx.dtlssrtpenc, TRUE);
|
|
gst_element_set_locked_state (send->rtcp_ctx.dtlssrtpenc, TRUE);
|
|
send->active = TRUE;
|
|
TSB_UNLOCK (send);
|
|
break;
|
|
}
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:{
|
|
GstElement *elem;
|
|
|
|
TSB_LOCK (send);
|
|
/* RTP */
|
|
/* unblock the encoder once the key is set, this should also be automatic */
|
|
elem = send->stream->transport->dtlssrtpenc;
|
|
send->rtp_ctx.rtp_block = block_peer_pad (elem, "rtp_sink_0");
|
|
/* Also block the RTCP pad on the RTP encoder, in case we mux RTCP */
|
|
send->rtp_ctx.rtcp_block = block_peer_pad (elem, "rtcp_sink_0");
|
|
/* unblock ice sink once a connection is made, this should also be automatic */
|
|
elem = send->stream->transport->transport->sink;
|
|
send->rtp_ctx.nice_block = block_peer_pad (elem, "sink");
|
|
|
|
/* RTCP */
|
|
elem = send->stream->rtcp_transport->dtlssrtpenc;
|
|
/* Block the RTCP DTLS encoder */
|
|
send->rtcp_ctx.rtcp_block = block_peer_pad (elem, "rtcp_sink_0");
|
|
/* unblock ice sink once a connection is made, this should also be automatic */
|
|
elem = send->stream->rtcp_transport->transport->sink;
|
|
send->rtcp_ctx.nice_block = block_peer_pad (elem, "sink");
|
|
TSB_UNLOCK (send);
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
if (ret == GST_STATE_CHANGE_FAILURE) {
|
|
GST_WARNING_OBJECT (element, "Parent state change handler failed");
|
|
return ret;
|
|
}
|
|
|
|
switch (transition) {
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
|
{
|
|
/* Now that everything is stopped, we can remove the pad blocks
|
|
* if they still exist, without accidentally feeding data to the
|
|
* dtlssrtpenc elements */
|
|
TSB_LOCK (send);
|
|
tsb_remove_probe (send->rtp_ctx.rtp_block);
|
|
tsb_remove_probe (send->rtp_ctx.rtcp_block);
|
|
tsb_remove_probe (send->rtp_ctx.nice_block);
|
|
|
|
tsb_remove_probe (send->rtcp_ctx.rtcp_block);
|
|
tsb_remove_probe (send->rtcp_ctx.nice_block);
|
|
TSB_UNLOCK (send);
|
|
break;
|
|
}
|
|
case GST_STATE_CHANGE_READY_TO_NULL:{
|
|
TSB_LOCK (send);
|
|
send->active = FALSE;
|
|
cleanup_blocks (send);
|
|
|
|
gst_element_set_locked_state (send->rtp_ctx.dtlssrtpenc, FALSE);
|
|
gst_element_set_locked_state (send->rtcp_ctx.dtlssrtpenc, FALSE);
|
|
TSB_UNLOCK (send);
|
|
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void
|
|
_on_dtls_enc_key_set (GstElement * dtlssrtpenc, TransportSendBin * send)
|
|
{
|
|
TransportSendBinDTLSContext *ctx;
|
|
|
|
if (dtlssrtpenc == send->rtp_ctx.dtlssrtpenc)
|
|
ctx = &send->rtp_ctx;
|
|
else if (dtlssrtpenc == send->rtcp_ctx.dtlssrtpenc)
|
|
ctx = &send->rtcp_ctx;
|
|
else {
|
|
GST_WARNING_OBJECT (send,
|
|
"Received dtls-enc key info for unknown element %" GST_PTR_FORMAT,
|
|
dtlssrtpenc);
|
|
return;
|
|
}
|
|
|
|
TSB_LOCK (send);
|
|
if (!send->active) {
|
|
GST_INFO_OBJECT (send, "Received dtls-enc key info from %" GST_PTR_FORMAT
|
|
"when not active", dtlssrtpenc);
|
|
goto done;
|
|
}
|
|
|
|
GST_LOG_OBJECT (send, "Unblocking %" GST_PTR_FORMAT " pads", dtlssrtpenc);
|
|
_free_pad_block (ctx->rtp_block);
|
|
_free_pad_block (ctx->rtcp_block);
|
|
ctx->rtp_block = ctx->rtcp_block = NULL;
|
|
|
|
done:
|
|
TSB_UNLOCK (send);
|
|
}
|
|
|
|
static void
|
|
_on_notify_dtls_client_status (GstElement * dtlssrtpenc,
|
|
GParamSpec * pspec, TransportSendBin * send)
|
|
{
|
|
TransportSendBinDTLSContext *ctx;
|
|
if (dtlssrtpenc == send->rtp_ctx.dtlssrtpenc)
|
|
ctx = &send->rtp_ctx;
|
|
else if (dtlssrtpenc == send->rtcp_ctx.dtlssrtpenc)
|
|
ctx = &send->rtcp_ctx;
|
|
else {
|
|
GST_WARNING_OBJECT (send,
|
|
"Received dtls-enc client mode for unknown element %" GST_PTR_FORMAT,
|
|
dtlssrtpenc);
|
|
return;
|
|
}
|
|
|
|
TSB_LOCK (send);
|
|
if (!send->active) {
|
|
GST_DEBUG_OBJECT (send,
|
|
"DTLS-SRTP encoder ready after we're already stopping");
|
|
goto done;
|
|
}
|
|
|
|
GST_DEBUG_OBJECT (send,
|
|
"DTLS-SRTP encoder configured. Unlocking it and changing state %"
|
|
GST_PTR_FORMAT, ctx->dtlssrtpenc);
|
|
gst_element_set_locked_state (ctx->dtlssrtpenc, FALSE);
|
|
gst_element_sync_state_with_parent (ctx->dtlssrtpenc);
|
|
done:
|
|
TSB_UNLOCK (send);
|
|
}
|
|
|
|
static void
|
|
_on_notify_ice_connection_state (GstWebRTCICETransport * transport,
|
|
GParamSpec * pspec, TransportSendBin * send)
|
|
{
|
|
GstWebRTCICEConnectionState state;
|
|
|
|
g_object_get (transport, "state", &state, NULL);
|
|
|
|
if (state == GST_WEBRTC_ICE_CONNECTION_STATE_CONNECTED ||
|
|
state == GST_WEBRTC_ICE_CONNECTION_STATE_COMPLETED) {
|
|
TSB_LOCK (send);
|
|
if (transport == send->stream->transport->transport) {
|
|
if (send->rtp_ctx.nice_block) {
|
|
GST_LOG_OBJECT (send, "Unblocking pad %" GST_PTR_FORMAT,
|
|
send->rtp_ctx.nice_block->pad);
|
|
_free_pad_block (send->rtp_ctx.nice_block);
|
|
send->rtp_ctx.nice_block = NULL;
|
|
}
|
|
} else if (transport == send->stream->rtcp_transport->transport) {
|
|
if (send->rtcp_ctx.nice_block) {
|
|
GST_LOG_OBJECT (send, "Unblocking pad %" GST_PTR_FORMAT,
|
|
send->rtcp_ctx.nice_block->pad);
|
|
_free_pad_block (send->rtcp_ctx.nice_block);
|
|
send->rtcp_ctx.nice_block = NULL;
|
|
}
|
|
}
|
|
TSB_UNLOCK (send);
|
|
}
|
|
}
|
|
|
|
static void
|
|
tsb_setup_ctx (TransportSendBin * send, TransportSendBinDTLSContext * ctx,
|
|
GstWebRTCDTLSTransport * transport)
|
|
{
|
|
GstElement *dtlssrtpenc, *nicesink;
|
|
|
|
dtlssrtpenc = ctx->dtlssrtpenc = transport->dtlssrtpenc;
|
|
nicesink = ctx->nicesink = transport->transport->sink;
|
|
|
|
/* unblock the encoder once the key is set */
|
|
g_signal_connect (dtlssrtpenc, "on-key-set",
|
|
G_CALLBACK (_on_dtls_enc_key_set), send);
|
|
/* Bring the encoder up to current state only once the is-client prop is set */
|
|
g_signal_connect (dtlssrtpenc, "notify::is-client",
|
|
G_CALLBACK (_on_notify_dtls_client_status), send);
|
|
gst_bin_add (GST_BIN (send), GST_ELEMENT (dtlssrtpenc));
|
|
|
|
/* unblock ice sink once it signals a connection */
|
|
g_signal_connect (transport->transport, "notify::state",
|
|
G_CALLBACK (_on_notify_ice_connection_state), send);
|
|
gst_bin_add (GST_BIN (send), GST_ELEMENT (nicesink));
|
|
|
|
if (!gst_element_link_pads (GST_ELEMENT (dtlssrtpenc), "src", nicesink,
|
|
"sink"))
|
|
g_warn_if_reached ();
|
|
}
|
|
|
|
static void
|
|
transport_send_bin_constructed (GObject * object)
|
|
{
|
|
TransportSendBin *send = TRANSPORT_SEND_BIN (object);
|
|
GstWebRTCDTLSTransport *transport;
|
|
GstPadTemplate *templ;
|
|
GstPad *ghost, *pad;
|
|
|
|
g_return_if_fail (send->stream);
|
|
|
|
g_object_bind_property (send, "rtcp-mux", send->stream, "rtcp-mux",
|
|
G_BINDING_BIDIRECTIONAL);
|
|
|
|
/* Output selector to direct the RTCP for muxed-mode */
|
|
send->outputselector = gst_element_factory_make ("output-selector", NULL);
|
|
gst_bin_add (GST_BIN (send), send->outputselector);
|
|
|
|
/* RTP */
|
|
transport = send->stream->transport;
|
|
/* Do the common init for the context struct */
|
|
tsb_setup_ctx (send, &send->rtp_ctx, transport);
|
|
|
|
templ = _find_pad_template (transport->dtlssrtpenc,
|
|
GST_PAD_SINK, GST_PAD_REQUEST, "rtp_sink_%d");
|
|
pad = gst_element_request_pad (transport->dtlssrtpenc, templ, "rtp_sink_0",
|
|
NULL);
|
|
|
|
if (!gst_element_link_pads (GST_ELEMENT (send->outputselector), "src_0",
|
|
GST_ELEMENT (transport->dtlssrtpenc), "rtcp_sink_0"))
|
|
g_warn_if_reached ();
|
|
|
|
ghost = gst_ghost_pad_new ("rtp_sink", pad);
|
|
gst_element_add_pad (GST_ELEMENT (send), ghost);
|
|
gst_object_unref (pad);
|
|
|
|
/* push the data stream onto the RTP dtls element */
|
|
templ = _find_pad_template (transport->dtlssrtpenc,
|
|
GST_PAD_SINK, GST_PAD_REQUEST, "data_sink");
|
|
pad = gst_element_request_pad (transport->dtlssrtpenc, templ, "data_sink",
|
|
NULL);
|
|
|
|
ghost = gst_ghost_pad_new ("data_sink", pad);
|
|
gst_element_add_pad (GST_ELEMENT (send), ghost);
|
|
gst_object_unref (pad);
|
|
|
|
/* RTCP */
|
|
transport = send->stream->rtcp_transport;
|
|
/* Do the common init for the context struct */
|
|
tsb_setup_ctx (send, &send->rtcp_ctx, transport);
|
|
templ = _find_pad_template (transport->dtlssrtpenc,
|
|
GST_PAD_SINK, GST_PAD_REQUEST, "rtcp_sink_%d");
|
|
|
|
if (!gst_element_link_pads (GST_ELEMENT (send->outputselector), "src_1",
|
|
GST_ELEMENT (transport->dtlssrtpenc), "rtcp_sink_0"))
|
|
g_warn_if_reached ();
|
|
|
|
pad = gst_element_get_static_pad (send->outputselector, "sink");
|
|
|
|
ghost = gst_ghost_pad_new ("rtcp_sink", pad);
|
|
gst_element_add_pad (GST_ELEMENT (send), ghost);
|
|
gst_object_unref (pad);
|
|
|
|
G_OBJECT_CLASS (parent_class)->constructed (object);
|
|
}
|
|
|
|
static void
|
|
cleanup_ctx_blocks (TransportSendBinDTLSContext * ctx)
|
|
{
|
|
if (ctx->rtp_block) {
|
|
_free_pad_block (ctx->rtp_block);
|
|
ctx->rtp_block = NULL;
|
|
}
|
|
|
|
if (ctx->rtcp_block) {
|
|
_free_pad_block (ctx->rtcp_block);
|
|
ctx->rtcp_block = NULL;
|
|
}
|
|
|
|
if (ctx->nice_block) {
|
|
_free_pad_block (ctx->nice_block);
|
|
ctx->nice_block = NULL;
|
|
}
|
|
}
|
|
|
|
static void
|
|
cleanup_blocks (TransportSendBin * send)
|
|
{
|
|
cleanup_ctx_blocks (&send->rtp_ctx);
|
|
cleanup_ctx_blocks (&send->rtcp_ctx);
|
|
}
|
|
|
|
static void
|
|
transport_send_bin_dispose (GObject * object)
|
|
{
|
|
TransportSendBin *send = TRANSPORT_SEND_BIN (object);
|
|
|
|
TSB_LOCK (send);
|
|
if (send->rtp_ctx.nicesink) {
|
|
g_signal_handlers_disconnect_by_data (send->rtp_ctx.nicesink, send);
|
|
send->rtp_ctx.nicesink = NULL;
|
|
}
|
|
if (send->rtcp_ctx.nicesink) {
|
|
g_signal_handlers_disconnect_by_data (send->rtcp_ctx.nicesink, send);
|
|
send->rtcp_ctx.nicesink = NULL;
|
|
}
|
|
cleanup_blocks (send);
|
|
|
|
TSB_UNLOCK (send);
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
transport_send_bin_finalize (GObject * object)
|
|
{
|
|
TransportSendBin *send = TRANSPORT_SEND_BIN (object);
|
|
|
|
g_mutex_clear (TSB_GET_LOCK (send));
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
}
|
|
|
|
static void
|
|
transport_send_bin_class_init (TransportSendBinClass * klass)
|
|
{
|
|
GObjectClass *gobject_class = (GObjectClass *) klass;
|
|
GstElementClass *element_class = (GstElementClass *) klass;
|
|
|
|
element_class->change_state = transport_send_bin_change_state;
|
|
|
|
gst_element_class_add_static_pad_template (element_class, &rtp_sink_template);
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
&rtcp_sink_template);
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
&data_sink_template);
|
|
|
|
gst_element_class_set_metadata (element_class, "WebRTC Transport Send Bin",
|
|
"Filter/Network/WebRTC", "A bin for webrtc connections",
|
|
"Matthew Waters <matthew@centricular.com>");
|
|
|
|
gobject_class->constructed = transport_send_bin_constructed;
|
|
gobject_class->dispose = transport_send_bin_dispose;
|
|
gobject_class->get_property = transport_send_bin_get_property;
|
|
gobject_class->set_property = transport_send_bin_set_property;
|
|
gobject_class->finalize = transport_send_bin_finalize;
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
PROP_STREAM,
|
|
g_param_spec_object ("stream", "Stream",
|
|
"The TransportStream for this sending bin",
|
|
transport_stream_get_type (),
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
PROP_RTCP_MUX,
|
|
g_param_spec_boolean ("rtcp-mux", "RTCP Mux",
|
|
"Whether RTCP packets are muxed with RTP packets",
|
|
FALSE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
|
}
|
|
|
|
static void
|
|
transport_send_bin_init (TransportSendBin * send)
|
|
{
|
|
g_mutex_init (TSB_GET_LOCK (send));
|
|
}
|