summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-03-29 10:38:05 +0300
committerTim-Philipp Müller <tim@centricular.com>2016-11-19 22:04:03 +0000
commitae57cac0901b4f0111c2ac17f7ad70c4eb80589f (patch)
treec44ab6cf7e36a16ec9afbd0629e49159dfdc3ea4
parent8fb4c38ec9520dc9f9d02a0e5e5361fb70726281 (diff)
downloadgstreamer-1.8.tar.gz
tee: Set GST_PAD_FLAG_PROXY_CAPS before forwarding sticky events1.8
https://bugzilla.gnome.org/show_bug.cgi?id=752213
-rw-r--r--plugins/elements/gsttee.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/elements/gsttee.c b/plugins/elements/gsttee.c
index 361a15cf5f..906775d2ae 100644
--- a/plugins/elements/gsttee.c
+++ b/plugins/elements/gsttee.c
@@ -410,9 +410,9 @@ gst_tee_request_new_pad (GstElement * element, GstPadTemplate * templ,
gst_pad_set_query_function (srcpad, GST_DEBUG_FUNCPTR (gst_tee_src_query));
gst_pad_set_getrange_function (srcpad,
GST_DEBUG_FUNCPTR (gst_tee_src_get_range));
+ GST_OBJECT_FLAG_SET (srcpad, GST_PAD_FLAG_PROXY_CAPS);
/* Forward sticky events to the new srcpad */
gst_pad_sticky_events_foreach (tee->sinkpad, forward_sticky_events, srcpad);
- GST_OBJECT_FLAG_SET (srcpad, GST_PAD_FLAG_PROXY_CAPS);
gst_element_add_pad (GST_ELEMENT_CAST (tee), srcpad);
return srcpad;