diff options
author | Mathieu Duponchelle <mathieu@centricular.com> | 2021-08-12 23:37:59 +0200 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2021-08-20 00:11:45 +0200 |
commit | 0ec4893c8e06e80a5cc3b8f71e781de71e527163 (patch) | |
tree | 66f5b02d556b83bb4236eddc3dd6d6ac7cbf9d7e /ges | |
parent | 5ca6576f5b4778c477d900cf2c1b99d763ea922b (diff) |
ges-uri-source: fix object debug
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/265>
Diffstat (limited to 'ges')
-rw-r--r-- | ges/ges-uri-source.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ges/ges-uri-source.c b/ges/ges-uri-source.c index 1775db4c..e98ce10f 100644 --- a/ges/ges-uri-source.c +++ b/ges/ges-uri-source.c @@ -107,8 +107,8 @@ autoplug_select_cb (GstElement * bin, GstPad * pad, GstCaps * caps, if (downstream_caps && gst_caps_can_intersect (downstream_caps, caps)) { if (wanted) { res = GST_AUTOPLUG_SELECT_EXPOSE; - GST_INFO_OBJECT (self, "Exposing %" GST_PTR_FORMAT " with stream id: %s", - caps, stream_id); + GST_INFO_OBJECT (self->element, + "Exposing %" GST_PTR_FORMAT " with stream id: %s", caps, stream_id); } else { res = GST_AUTOPLUG_SELECT_SKIP; GST_DEBUG_OBJECT (self->element, "Totally skipping %s", stream_id); |