summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-02-17 11:16:53 +0100
committerThibault Saunier <tsaunier@gnome.org>2016-02-17 11:17:24 +0100
commitd3fc5b51755bb9afe748ba848356db07c26b994f (patch)
treed13ad90cbbf78ae29f4c659080e55fc9bf2a5dbb /ext
parent9900b08512492355eec6c5530889d74828635da3 (diff)
downloadgstreamer-plugins-bad-d3fc5b51755bb9afe748ba848356db07c26b994f.tar.gz
ladspa: Fix some debugs
Diffstat (limited to 'ext')
-rw-r--r--ext/ladspa/gstladspafilter.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/ladspa/gstladspafilter.c b/ext/ladspa/gstladspafilter.c
index 69d0e635e..2d1ea4581 100644
--- a/ext/ladspa/gstladspafilter.c
+++ b/ext/ladspa/gstladspafilter.c
@@ -105,20 +105,19 @@ gst_ladspa_filter_type_transform_caps (GstBaseTransform * base,
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) {
GstCaps *intersection;
- GST_DEBUG_OBJECT (ladspa_debug, "Using filter caps %" GST_PTR_FORMAT,
- filter);
+ GST_DEBUG_OBJECT (base, "Using filter caps %" GST_PTR_FORMAT, filter);
intersection =
gst_caps_intersect_full (filter, ret, GST_CAPS_INTERSECT_FIRST);
gst_caps_unref (ret);
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);