summaryrefslogtreecommitdiff
path: root/gst/autoconvert
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2014-05-09 18:49:14 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2014-05-09 23:03:36 -0400
commitf3f6cdd45199ff89c5dcc5b76221c94020e7bd17 (patch)
tree1d04587e12a3bdf269c1e5398542a18c50c31a54 /gst/autoconvert
parent907ffc7352998c3de2010278e1c5e0c6da8573a5 (diff)
autoconvert: Remove broken usage of the iterator
We're a subclass, so we can just take the object lock and iterate the list directly.
Diffstat (limited to 'gst/autoconvert')
-rw-r--r--gst/autoconvert/gstautoconvert.c46
1 files changed, 11 insertions, 35 deletions
diff --git a/gst/autoconvert/gstautoconvert.c b/gst/autoconvert/gstautoconvert.c
index bed2476c1..aa48305ec 100644
--- a/gst/autoconvert/gstautoconvert.c
+++ b/gst/autoconvert/gstautoconvert.c
@@ -269,48 +269,24 @@ gst_auto_convert_get_property (GObject * object,
static GstElement *
gst_auto_convert_get_element_by_type (GstAutoConvert * autoconvert, GType type)
{
- GstIterator *iter = NULL;
- gboolean done;
- GValue item = { 0, };
+ GList *item;
+ GstBin *bin = GST_BIN (autoconvert);
+ GstElement *element = NULL;
g_return_val_if_fail (type != 0, NULL);
- iter = gst_bin_iterate_elements (GST_BIN (autoconvert));
-
- if (!iter)
- return NULL;
+ GST_OBJECT_LOCK (autoconvert);
- done = FALSE;
- while (!done) {
- switch (gst_iterator_next (iter, &item)) {
- case GST_ITERATOR_OK:
- if (G_TYPE_CHECK_VALUE_TYPE (&item, type))
- done = TRUE;
- else
- g_value_unset (&item);
- break;
- case GST_ITERATOR_RESYNC:
- gst_iterator_resync (iter);
- g_value_unset (&item);
- break;
- case GST_ITERATOR_ERROR:
- GST_ERROR ("Error iterating elements in bin");
- g_value_unset (&item);
- done = TRUE;
- break;
- case GST_ITERATOR_DONE:
- g_value_unset (&item);
- done = TRUE;
- break;
+ for (item = bin->children; item; item = item->next) {
+ if (G_TYPE_CHECK_INSTANCE_TYPE (item->data, type)) {
+ element = gst_object_ref (item->data);
+ break;
}
}
- gst_iterator_free (iter);
- /* Don't need to dup, the value on the stack has a ref, we steal it */
- if (G_VALUE_HOLDS_OBJECT (&item))
- return g_value_get_object (&item);
- else
- return NULL;
+ GST_OBJECT_UNLOCK (autoconvert);
+
+ return element;
}
/**