mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
Also set the pad filter when proxy negotiating
Original commit message from CVS: Also set the pad filter when proxy negotiating
This commit is contained in:
parent
5bda977d93
commit
efaef0379d
1 changed files with 14 additions and 1 deletions
15
gst/gstpad.c
15
gst/gstpad.c
|
@ -1767,6 +1767,16 @@ gst_pad_proxy_link (GstPad *pad, GstCaps *caps)
|
|||
if (gst_pad_try_set_caps_func (realpad, caps, FALSE) < 0)
|
||||
return GST_PAD_LINK_REFUSED;
|
||||
|
||||
if (peer) {
|
||||
gst_caps_debug (caps, "proxy link filter");
|
||||
|
||||
GST_INFO (GST_CAT_CAPS, "setting filter on %s:%s and %s:%s",
|
||||
GST_DEBUG_PAD_NAME (peer), GST_DEBUG_PAD_NAME (realpad));
|
||||
|
||||
gst_caps_replace_sink (&GST_RPAD_FILTER (peer), caps);
|
||||
gst_caps_replace_sink (&GST_RPAD_FILTER (realpad), caps);
|
||||
}
|
||||
|
||||
return GST_PAD_LINK_OK;
|
||||
}
|
||||
|
||||
|
@ -1926,14 +1936,17 @@ GstCaps*
|
|||
gst_pad_get_allowed_caps (GstPad *pad)
|
||||
{
|
||||
GstCaps *caps;
|
||||
GstRealPad *realpad;
|
||||
|
||||
g_return_val_if_fail (pad != NULL, NULL);
|
||||
g_return_val_if_fail (GST_IS_PAD (pad), NULL);
|
||||
|
||||
realpad = GST_PAD_REALIZE (pad);
|
||||
|
||||
GST_DEBUG (GST_CAT_PROPERTIES, "get allowed caps of %s:%s",
|
||||
GST_DEBUG_PAD_NAME (pad));
|
||||
|
||||
caps = gst_caps_ref (GST_RPAD_FILTER (pad));
|
||||
caps = gst_caps_ref (GST_RPAD_FILTER (realpad));
|
||||
|
||||
return caps;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue