mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
ladspa: Fix some debugs
This commit is contained in:
parent
9900b08512
commit
d3fc5b5175
1 changed files with 3 additions and 4 deletions
|
@ -105,20 +105,19 @@ gst_ladspa_filter_type_transform_caps (GstBaseTransform * base,
|
||||||
g_assert_not_reached ();
|
g_assert_not_reached ();
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (ladspa_debug, "transformed %" GST_PTR_FORMAT, ret);
|
GST_DEBUG_OBJECT (base, "transformed %" GST_PTR_FORMAT, ret);
|
||||||
|
|
||||||
if (filter) {
|
if (filter) {
|
||||||
GstCaps *intersection;
|
GstCaps *intersection;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (ladspa_debug, "Using filter caps %" GST_PTR_FORMAT,
|
GST_DEBUG_OBJECT (base, "Using filter caps %" GST_PTR_FORMAT, filter);
|
||||||
filter);
|
|
||||||
|
|
||||||
intersection =
|
intersection =
|
||||||
gst_caps_intersect_full (filter, ret, GST_CAPS_INTERSECT_FIRST);
|
gst_caps_intersect_full (filter, ret, GST_CAPS_INTERSECT_FIRST);
|
||||||
gst_caps_unref (ret);
|
gst_caps_unref (ret);
|
||||||
ret = intersection;
|
ret = intersection;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (ladspa_debug, "Intersection %" GST_PTR_FORMAT, ret);
|
GST_DEBUG_OBJECT (base, "Intersection %" GST_PTR_FORMAT, ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_caps_unref (srccaps);
|
gst_caps_unref (srccaps);
|
||||||
|
|
Loading…
Reference in a new issue