mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
utils: use reffed _get_caps() version
We don't need to have a writable copy so we can use the _reffed version instead.
This commit is contained in:
parent
d020295ae0
commit
72c512a87d
1 changed files with 3 additions and 3 deletions
|
@ -1136,7 +1136,7 @@ gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
|
|||
gboolean compatible;
|
||||
|
||||
/* Now check if the two pads' caps are compatible */
|
||||
temp = gst_pad_get_caps (pad);
|
||||
temp = gst_pad_get_caps_reffed (pad);
|
||||
if (caps) {
|
||||
intersection = gst_caps_intersect (temp, caps);
|
||||
gst_caps_unref (temp);
|
||||
|
@ -1144,7 +1144,7 @@ gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
|
|||
intersection = temp;
|
||||
}
|
||||
|
||||
temp = gst_pad_get_caps (current);
|
||||
temp = gst_pad_get_caps_reffed (current);
|
||||
compatible = gst_caps_can_intersect (temp, intersection);
|
||||
gst_caps_unref (temp);
|
||||
gst_caps_unref (intersection);
|
||||
|
@ -1190,7 +1190,7 @@ gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
|
|||
/* try to create a new one */
|
||||
/* requesting is a little crazy, we need a template. Let's create one */
|
||||
/* FIXME: why not gst_pad_get_pad_template (pad); */
|
||||
templcaps = gst_pad_get_caps (pad);
|
||||
templcaps = gst_pad_get_caps_reffed (pad);
|
||||
|
||||
templ = gst_pad_template_new ((gchar *) GST_PAD_NAME (pad),
|
||||
GST_PAD_DIRECTION (pad), GST_PAD_ALWAYS, templcaps);
|
||||
|
|
Loading…
Reference in a new issue