mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
webrtcbin: expose the transceiver as a pad property
This commit is contained in:
parent
c3c4b07ad3
commit
033e55695f
1 changed files with 17 additions and 0 deletions
|
@ -96,6 +96,11 @@ static void _update_need_negotiation (GstWebRTCBin * webrtc);
|
||||||
#define GST_CAT_DEFAULT gst_webrtc_bin_debug
|
#define GST_CAT_DEFAULT gst_webrtc_bin_debug
|
||||||
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
||||||
|
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
PROP_PAD_TRANSCEIVER = 1,
|
||||||
|
};
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
_have_nice_elements (GstWebRTCBin * webrtc)
|
_have_nice_elements (GstWebRTCBin * webrtc)
|
||||||
{
|
{
|
||||||
|
@ -191,7 +196,12 @@ static void
|
||||||
gst_webrtc_bin_pad_get_property (GObject * object, guint prop_id,
|
gst_webrtc_bin_pad_get_property (GObject * object, guint prop_id,
|
||||||
GValue * value, GParamSpec * pspec)
|
GValue * value, GParamSpec * pspec)
|
||||||
{
|
{
|
||||||
|
GstWebRTCBinPad *pad = GST_WEBRTC_BIN_PAD (object);
|
||||||
|
|
||||||
switch (prop_id) {
|
switch (prop_id) {
|
||||||
|
case PROP_PAD_TRANSCEIVER:
|
||||||
|
g_value_set_object (value, pad->trans);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
break;
|
break;
|
||||||
|
@ -222,6 +232,13 @@ gst_webrtc_bin_pad_class_init (GstWebRTCBinPadClass * klass)
|
||||||
gobject_class->get_property = gst_webrtc_bin_pad_get_property;
|
gobject_class->get_property = gst_webrtc_bin_pad_get_property;
|
||||||
gobject_class->set_property = gst_webrtc_bin_pad_set_property;
|
gobject_class->set_property = gst_webrtc_bin_pad_set_property;
|
||||||
gobject_class->finalize = gst_webrtc_bin_pad_finalize;
|
gobject_class->finalize = gst_webrtc_bin_pad_finalize;
|
||||||
|
|
||||||
|
g_object_class_install_property (gobject_class,
|
||||||
|
PROP_PAD_TRANSCEIVER,
|
||||||
|
g_param_spec_object ("transceiver", "Transceiver",
|
||||||
|
"Transceiver associated with this pad",
|
||||||
|
GST_TYPE_WEBRTC_RTP_TRANSCEIVER,
|
||||||
|
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
|
Loading…
Reference in a new issue