/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | rtpbin.c | 47 GstPad *rtp_sink, *rtp_src, *rtcp_src; in GST_START_TEST() local 55 rtp_sink = gst_element_request_pad_simple (rtpbin, "send_rtp_sink_0"); in GST_START_TEST() 56 fail_unless (rtp_sink != NULL); in GST_START_TEST() 57 ASSERT_OBJECT_REFCOUNT (rtp_sink, "rtp_sink", 2); in GST_START_TEST() 74 gst_element_release_request_pad (rtpbin, rtp_sink); in GST_START_TEST() 76 ASSERT_OBJECT_REFCOUNT (rtp_sink, "rtp_sink", 1); in GST_START_TEST() 91 ASSERT_OBJECT_REFCOUNT (rtp_sink, "rtp_sink", 1); in GST_START_TEST() 100 gst_object_unref (rtp_sink); in GST_START_TEST() 257 GstPad *rtp_sink; in GST_START_TEST() local 275 rtp_sink = gst_element_request_pad_simple (rtpbin, "recv_rtp_sink_0"); in GST_START_TEST() [all …]
|
D | rtpssrcdemux.c | 86 GstHarness *rtp_sink; member 98 h = gst_harness_new_with_element (ctx->rtp_sink->element, NULL, in rtpssrcdemux_pad_added() 127 ctx.rtp_sink = h = gst_harness_new_with_padnames ("rtpssrcdemux", "sink", in GST_START_TEST() 183 gst_harness_teardown (ctx.rtp_sink); in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_bad/gst/rtp/ |
D | gstrtpsink.c | 128 g_object_set_property (G_OBJECT (self->rtp_sink), "host", value); in gst_rtp_sink_set_property() 142 g_object_set (self->rtp_sink, "port", port, NULL); in gst_rtp_sink_set_property() 148 g_object_set (self->rtp_sink, "ttl", self->ttl, NULL); in gst_rtp_sink_set_property() 153 g_object_set (self->rtp_sink, "ttl-mc", self->ttl_mc, NULL); in gst_rtp_sink_set_property() 507 g_object_set (self->rtp_sink, "multicast-iface", self->multi_iface, NULL); in gst_rtp_sink_start() 585 self->rtp_sink = NULL; in gst_rtp_sink_init() 634 self->rtp_sink = gst_element_factory_make ("udpsink", "rtp_rtp_udpsink0"); in gst_rtp_sink_init() 635 if (self->rtp_sink == NULL) { in gst_rtp_sink_init() 655 gst_bin_add (GST_BIN (self), self->rtp_sink); in gst_rtp_sink_init() 667 gst_element_link (self->funnel_rtp, self->rtp_sink); in gst_rtp_sink_init()
|
D | gstrtpsink.h | 56 GstElement *rtp_sink; member
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | gstrtpssrcdemux.c | 264 sinkpad = demux->rtp_sink; in forward_initial_events() 491 demux->rtp_sink = in gst_rtp_ssrc_demux_init() 494 gst_pad_set_chain_function (demux->rtp_sink, gst_rtp_ssrc_demux_chain); in gst_rtp_ssrc_demux_init() 495 gst_pad_set_event_function (demux->rtp_sink, gst_rtp_ssrc_demux_sink_event); in gst_rtp_ssrc_demux_init() 496 gst_pad_set_iterate_internal_links_function (demux->rtp_sink, in gst_rtp_ssrc_demux_init() 498 gst_element_add_pad (GST_ELEMENT_CAST (demux), demux->rtp_sink); in gst_rtp_ssrc_demux_init() 881 otherpad = demux->rtp_sink; in gst_rtp_ssrc_demux_iterate_internal_links_src() 930 if (pad == demux->rtp_sink) in gst_rtp_ssrc_demux_iterate_internal_links_sink() 957 if ((res = gst_pad_peer_query (demux->rtp_sink, query))) { in gst_rtp_ssrc_demux_src_query()
|
D | gstrtpssrcdemux.h | 38 GstPad *rtp_sink; member
|
/third_party/gstreamer/gstplugins_bad/gst/rist/ |
D | gstristsink.c | 125 GstElement *rtp_sink; member 207 bond->rtp_sink = gst_element_factory_make ("udpsink", name); in gst_rist_sink_add_bond() 208 if (!bond->rtp_sink) { in gst_rist_sink_add_bond() 221 gst_bin_add_many (GST_BIN (sink), bond->rtp_sink, bond->rtcp_src, in gst_rist_sink_add_bond() 267 gst_element_link_pads (sink->rtpbin, name, bond->rtp_sink, "sink"); in gst_rist_sink_add_bond() 947 g_object_set (G_OBJECT (bond->rtp_sink), "host", address, "port", port, in gst_rist_sink_update_bond_address() 1081 g_object_set (G_OBJECT (bond->rtp_sink), "loop", loop, NULL); in gst_rist_sink_set_multicast_loopback() 1095 g_object_set (G_OBJECT (bond->rtp_sink), "ttl-mc", ttl, NULL); in gst_rist_sink_set_multicast_ttl() 1211 g_object_set_property (G_OBJECT (bond->rtp_sink), "host", value); in gst_rist_sink_set_property() 1227 g_object_set (bond->rtp_sink, "port", port, NULL); in gst_rist_sink_set_property() [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/webrtc/ |
D | gstwebrtcbin.c | 4512 GstPad *rtp_sink, *sinkpad, *srcpad; in _connect_input_stream() local 4554 rtp_sink = in _connect_input_stream() 4557 gst_pad_link (srcpad, rtp_sink); in _connect_input_stream() 4558 gst_object_unref (rtp_sink); in _connect_input_stream() 5224 GstPad *rtp_sink; in _connect_rtpfunnel() local 5246 rtp_sink = gst_element_request_pad_simple (webrtc->rtpbin, pad_name); in _connect_rtpfunnel() 5248 gst_pad_link (queue_srcpad, rtp_sink); in _connect_rtpfunnel() 5250 gst_object_unref (rtp_sink); in _connect_rtpfunnel()
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 128584 on the rtp_sink pad.
|