From 6b7d05ac57a016b9d57858fb6bb67a8e6f1c087e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 7 Jan 2013 14:22:48 +0100 Subject: [PATCH] rtpsession: improve debug --- gst/rtpmanager/rtpsession.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gst/rtpmanager/rtpsession.c b/gst/rtpmanager/rtpsession.c index fdd0c881c8..8f9cc9637e 100644 --- a/gst/rtpmanager/rtpsession.c +++ b/gst/rtpmanager/rtpsession.c @@ -2673,7 +2673,8 @@ rtp_session_next_timeout (RTPSession * sess, GstClockTime current_time) result = sess->next_rtcp_check_time; - GST_DEBUG ("current time: %" GST_TIME_FORMAT ", next :%" GST_TIME_FORMAT, + GST_DEBUG ("current time: %" GST_TIME_FORMAT + ", next time: %" GST_TIME_FORMAT, GST_TIME_ARGS (current_time), GST_TIME_ARGS (result)); if (result < current_time) { @@ -3114,8 +3115,9 @@ rtp_session_on_timeout (RTPSession * sess, GstClockTime current_time, g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR); - GST_DEBUG ("reporting at %" GST_TIME_FORMAT ", NTP time %" GST_TIME_FORMAT, - GST_TIME_ARGS (current_time), GST_TIME_ARGS (ntpnstime)); + GST_DEBUG ("reporting at %" GST_TIME_FORMAT ", NTP time %" GST_TIME_FORMAT + ", running-time %" GST_TIME_FORMAT, GST_TIME_ARGS (current_time), + GST_TIME_ARGS (ntpnstime), GST_TIME_ARGS (running_time)); data.sess = sess; data.rtcp = NULL; -- 2.34.1