mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
gst/gstelement.c (gst_element_get_compatible_pad_template): Fix the debugging on whether the caps are compatible.
Original commit message from CVS: 2005-02-04 Andy Wingo <wingo@pobox.com> * gst/gstelement.c (gst_element_get_compatible_pad_template): Fix the debugging on whether the caps are compatible.
This commit is contained in:
parent
e050b8fd72
commit
b99693171e
2 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-02-04 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* gst/gstelement.c (gst_element_get_compatible_pad_template): Fix
|
||||||
|
the debugging on whether the caps are compatible.
|
||||||
|
|
||||||
2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
2005-02-03 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* docs/manual/basics-elements.xml:
|
* docs/manual/basics-elements.xml:
|
||||||
|
|
|
@ -1657,6 +1657,8 @@ gst_element_get_compatible_pad_template (GstElement * element,
|
||||||
GST_CAT_LOG (GST_CAT_CAPS,
|
GST_CAT_LOG (GST_CAT_CAPS,
|
||||||
"checking pad template %s", padtempl->name_template);
|
"checking pad template %s", padtempl->name_template);
|
||||||
if (padtempl->direction != compattempl->direction) {
|
if (padtempl->direction != compattempl->direction) {
|
||||||
|
gboolean is_empty;
|
||||||
|
|
||||||
GST_CAT_DEBUG (GST_CAT_CAPS,
|
GST_CAT_DEBUG (GST_CAT_CAPS,
|
||||||
"compatible direction: found %s pad template \"%s\"",
|
"compatible direction: found %s pad template \"%s\"",
|
||||||
padtempl->direction == GST_PAD_SRC ? "src" : "sink",
|
padtempl->direction == GST_PAD_SRC ? "src" : "sink",
|
||||||
|
@ -1665,10 +1667,12 @@ gst_element_get_compatible_pad_template (GstElement * element,
|
||||||
intersection = gst_caps_intersect (GST_PAD_TEMPLATE_CAPS (compattempl),
|
intersection = gst_caps_intersect (GST_PAD_TEMPLATE_CAPS (compattempl),
|
||||||
GST_PAD_TEMPLATE_CAPS (padtempl));
|
GST_PAD_TEMPLATE_CAPS (padtempl));
|
||||||
|
|
||||||
GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible",
|
is_empty = gst_caps_is_empty (intersection);
|
||||||
(intersection ? "" : "not "));
|
|
||||||
|
|
||||||
if (!gst_caps_is_empty (intersection))
|
GST_CAT_DEBUG (GST_CAT_CAPS, "caps are %scompatible",
|
||||||
|
is_empty ? "not " : "");
|
||||||
|
|
||||||
|
if (!is_empty)
|
||||||
newtempl = padtempl;
|
newtempl = padtempl;
|
||||||
gst_caps_free (intersection);
|
gst_caps_free (intersection);
|
||||||
if (newtempl)
|
if (newtempl)
|
||||||
|
|
Loading…
Reference in a new issue