From 780bf26e43c26714a2364312c97d6eab7e4557a8 Mon Sep 17 00:00:00 2001 From: Julian Bouzas Date: Fri, 12 Apr 2019 08:34:49 -0400 Subject: [PATCH] tracer: latency: Make GST_DEBUG logs consistent --- plugins/tracers/gstlatency.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/plugins/tracers/gstlatency.c b/plugins/tracers/gstlatency.c index cf636ca..486f2c3 100644 --- a/plugins/tracers/gstlatency.c +++ b/plugins/tracers/gstlatency.c @@ -243,7 +243,7 @@ send_latency_probe (GstLatencyTracer * self, GstElement * parent, GstPad * pad, element_name = gst_element_get_name (parent); pad_name = gst_pad_get_name (pad); - GST_DEBUG ("%s: Sending latency event", pad_name); + GST_DEBUG ("%s_%s: Sending latency event", GST_DEBUG_PAD_NAME (pad)); latency_probe = gst_event_new_custom (GST_EVENT_CUSTOM_DOWNSTREAM, gst_structure_new_id (latency_probe_id, @@ -409,13 +409,13 @@ do_push_event_pre (GstTracer * self, guint64 ts, GstPad * pad, GstEvent * ev) /* FIXME unsafe peer access */ if (GST_OBJECT_FLAG_IS_SET (peer_parent, GST_ELEMENT_FLAG_SINK)) { - GST_DEBUG ("%s_%s: Storing latency event", GST_DEBUG_PAD_NAME (pad)); - /* store event so that we can calculate latency when the buffer that * follows has been processed */ - if (!g_object_get_qdata ((GObject *) pad, latency_probe_id)) + if (!g_object_get_qdata ((GObject *) pad, latency_probe_id)) { + GST_DEBUG ("%s_%s: Storing latency event", GST_DEBUG_PAD_NAME (pad)); g_object_set_qdata ((GObject *) pad, latency_probe_id, gst_event_ref (ev)); + } } } @@ -437,11 +437,12 @@ do_push_event_pre (GstTracer * self, guint64 ts, GstPad * pad, GstEvent * ev) if (!g_str_equal (value_element_id, element_id) || !g_str_equal (value_element_name, element_name) || !g_str_equal (value_pad_name, pad_name)) { - GST_DEBUG ("%s_%s: Storing latency event", GST_DEBUG_PAD_NAME (pad)); - - if (!g_object_get_qdata ((GObject *) pad, sub_latency_probe_id)) + if (!g_object_get_qdata ((GObject *) pad, sub_latency_probe_id)) { + GST_DEBUG ("%s_%s: Storing sub-latency event", + GST_DEBUG_PAD_NAME (pad)); g_object_set_qdata ((GObject *) pad, sub_latency_probe_id, gst_event_ref (ev)); + } } g_free (pad_name); -- 2.7.4