Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dan Ulery
gstreamer
Commits
ae57cac0
Commit
ae57cac0
authored
Mar 29, 2016
by
Sebastian Dröge
🍵
Committed by
Tim-Philipp Müller
Nov 19, 2016
Browse files
tee: Set GST_PAD_FLAG_PROXY_CAPS before forwarding sticky events
https://bugzilla.gnome.org/show_bug.cgi?id=752213
parent
8fb4c38e
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/elements/gsttee.c
View file @
ae57cac0
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment