aggregator: Log to the pad instead of the element
authorNirbheek Chauhan <nirbheek@centricular.com>
Sat, 27 Dec 2014 10:45:41 +0000 (16:15 +0530)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 2 Dec 2017 15:10:26 +0000 (15:10 +0000)
More correct way of doing the same thing as before

libs/gst/base/gstaggregator.c

index 9ab31c1..1859ef4 100644 (file)
@@ -1009,9 +1009,8 @@ _latency_query (GstAggregator * self, GstPad * pad, gpointer user_data)
   if (res) {
     gst_query_parse_latency (query, &live, &min, &max);
 
-    GST_LOG_OBJECT (self, "%s: got latency live:%s min:%" G_GINT64_FORMAT
-        " max:%" G_GINT64_FORMAT, GST_PAD_NAME (pad),
-        live ? "true" : "false", min, max);
+    GST_LOG_OBJECT (pad, "got latency live:%s min:%" G_GINT64_FORMAT
+        " max:%" G_GINT64_FORMAT, live ? "true" : "false", min, max);
 
     if (min != GST_CLOCK_TIME_NONE && min > data->min)
       data->min = min;