summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-03-29 10:38:05 +0300
committerSebastian Dröge <sebastian@centricular.com>2016-11-12 10:43:35 +0200
commit45720fc1c2382840de6c18b4d117022e00093deb (patch)
treeeea5269c9efa4a007c60c7f2f08bf39fa6c7811e
parenta24689a3067562d7b8d4c01c90e1edc6106627e6 (diff)
tee: Set GST_PAD_FLAG_PROXY_CAPS before forwarding sticky events
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;