From: Nirbheek Chauhan Date: Fri, 26 Dec 2014 22:51:26 +0000 (+0530) Subject: aggregator: Print the sinkpad name while logging latency queries X-Git-Tag: 1.16.2~574^2~172 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b49805a840df1f513a247289b1ff184623005ad7;p=platform%2Fupstream%2Fgstreamer.git aggregator: Print the sinkpad name while logging latency queries Very useful while debugging. --- diff --git a/libs/gst/base/gstaggregator.c b/libs/gst/base/gstaggregator.c index 6a3796f..8a27eef 100644 --- a/libs/gst/base/gstaggregator.c +++ b/libs/gst/base/gstaggregator.c @@ -1011,8 +1011,9 @@ _latency_query (GstAggregator * self, GstPad * pad, gpointer user_data) if (res) { gst_query_parse_latency (query, &live, &min, &max); - GST_LOG_OBJECT (self, "got latency live:%s min:%" G_GINT64_FORMAT - " max:%" G_GINT64_FORMAT, live ? "true" : "false", 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); if (min > data->min) data->min = min;