From c0d68d03a690d2760c03615f70c241ac1436188b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 23 Apr 2021 08:28:06 +0300 Subject: matroskamux: Don't pass a non-GObject pointer to GST_DEBUG_OBJECT and similar Part-of: --- gst/matroska/matroska-mux.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index c18bd9af5..09edfa6da 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -3637,11 +3637,12 @@ gst_matroska_mux_finish (GstMatroskaMux * mux) GST_CLOCK_TIME_IS_VALID (collect_pad->end_ts)) { collected_duration = GST_CLOCK_DIFF (collect_pad->start_ts, collect_pad->end_ts); - GST_DEBUG_OBJECT (collect_pad, + GST_DEBUG_OBJECT (collect_pad->collect.pad, "final track duration: %" GST_TIME_FORMAT, GST_TIME_ARGS (collected_duration)); } else { - GST_WARNING_OBJECT (collect_pad, "unable to get final track duration"); + GST_WARNING_OBJECT (collect_pad->collect.pad, + "unable to get final track duration"); } if (GST_CLOCK_TIME_IS_VALID (collected_duration) && duration < collected_duration) -- cgit v1.2.1