templatematch: mark pads as proxy caps

Allows negotiation to happen properly
This commit is contained in:
Thiago Santos 2014-07-28 13:10:35 -03:00
parent 1b5483eef9
commit aa5e25820b

View file

@ -171,8 +171,10 @@ gst_template_match_init (GstTemplateMatch * filter)
GST_DEBUG_FUNCPTR (gst_template_match_handle_sink_event));
gst_pad_set_chain_function (filter->sinkpad,
GST_DEBUG_FUNCPTR (gst_template_match_chain));
GST_PAD_SET_PROXY_CAPS (filter->sinkpad);
filter->srcpad = gst_pad_new_from_static_template (&src_factory, "src");
GST_PAD_SET_PROXY_CAPS (filter->srcpad);
gst_element_add_pad (GST_ELEMENT (filter), filter->sinkpad);
gst_element_add_pad (GST_ELEMENT (filter), filter->srcpad);