summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-05-04 16:13:16 +0200
committerSebastian Dröge <sebastian@centricular.com>2018-05-04 16:13:16 +0200
commite34d4e9bf469b8b01f02383f1875c89941d3e323 (patch)
treeba201a40800e5960a63cb3a31a70582970d43f38 /gst-libs
parente27083211c6899403a8cb513cd28d02609bcf93a (diff)
downloadgstreamer-plugins-bad-e34d4e9bf469b8b01f02383f1875c89941d3e323.tar.gz
videoaggregator: Move GstChildProxy implementations into leaf classes
Not every subclass will want to expose the pads via the interface. https://bugzilla.gnome.org/show_bug.cgi?id=739011
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/video/gstvideoaggregator.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/gst-libs/gst/video/gstvideoaggregator.c b/gst-libs/gst/video/gstvideoaggregator.c
index 93fa0cc1b..f5556fe6a 100644
--- a/gst-libs/gst/video/gstvideoaggregator.c
+++ b/gst-libs/gst/video/gstvideoaggregator.c
@@ -369,51 +369,6 @@ gst_video_aggregator_pad_init (GstVideoAggregatorPad * vaggpad)
vaggpad->priv->convert = NULL;
}
-/*********************************
- * GstChildProxy implementation *
- *********************************/
-static GObject *
-gst_video_aggregator_child_proxy_get_child_by_index (GstChildProxy *
- child_proxy, guint index)
-{
- GObject *obj;
- GstVideoAggregator *vagg = GST_VIDEO_AGGREGATOR (child_proxy);
-
- GST_OBJECT_LOCK (vagg);
- if ((obj = g_list_nth_data (GST_ELEMENT (vagg)->sinkpads, index)))
- g_object_ref (obj);
- GST_OBJECT_UNLOCK (vagg);
-
- return obj;
-}
-
-static guint
-gst_video_aggregator_child_proxy_get_children_count (GstChildProxy *
- child_proxy)
-{
- guint count = 0;
-
- GST_OBJECT_LOCK (child_proxy);
- count = GST_ELEMENT (child_proxy)->numsinkpads;
- GST_OBJECT_UNLOCK (child_proxy);
-
- GST_INFO_OBJECT (child_proxy, "Children Count: %d", count);
-
- return count;
-}
-
-static void
-gst_video_aggregator_child_proxy_init (gpointer g_iface, gpointer iface_data)
-{
- GstChildProxyInterface *iface = g_iface;
-
- GST_INFO ("intializing child proxy interface");
- iface->get_child_by_index =
- gst_video_aggregator_child_proxy_get_child_by_index;
- iface->get_children_count =
- gst_video_aggregator_child_proxy_get_children_count;
-}
-
/**************************************
* GstVideoAggregator implementation *
**************************************/
@@ -479,10 +434,6 @@ gst_video_aggregator_get_type (void)
sizeof (GstVideoAggregator),
(GInstanceInitFunc) gst_video_aggregator_init,
(GTypeFlags) G_TYPE_FLAG_ABSTRACT);
- {
- G_IMPLEMENT_INTERFACE (GST_TYPE_CHILD_PROXY,
- gst_video_aggregator_child_proxy_init);
- }
g_once_init_leave (&g_define_type_id_volatile, g_define_type_id);
}
return g_define_type_id_volatile;
@@ -1902,9 +1853,6 @@ gst_video_aggregator_request_new_pad (GstElement * element,
(GCompareFunc) pad_zorder_compare);
GST_OBJECT_UNLOCK (vagg);
- gst_child_proxy_child_added (GST_CHILD_PROXY (vagg), G_OBJECT (vaggpad),
- GST_OBJECT_NAME (vaggpad));
-
return GST_PAD (vaggpad);
}
@@ -1929,9 +1877,6 @@ gst_video_aggregator_release_pad (GstElement * element, GstPad * pad)
gst_buffer_replace (&vaggpad->buffer, NULL);
- gst_child_proxy_child_removed (GST_CHILD_PROXY (vagg), G_OBJECT (vaggpad),
- GST_OBJECT_NAME (vaggpad));
-
GST_ELEMENT_CLASS (gst_video_aggregator_parent_class)->release_pad
(GST_ELEMENT (vagg), pad);