From 6c27293ffed92c8f81c1cc2f337d7f00302a3caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 13 Apr 2015 20:25:00 +0200 Subject: [PATCH] rtpjitterbuffer: Change resyncing GST_WARNING to GST_INFO This also happens in the very beginning when we receive the first packet, a warning would be very confusing here. In all places where we should warn about this, we would've printed a warning already before. --- gst/rtpmanager/rtpjitterbuffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/rtpmanager/rtpjitterbuffer.c b/gst/rtpmanager/rtpjitterbuffer.c index 1292d7dfcf..f41b799c90 100644 --- a/gst/rtpmanager/rtpjitterbuffer.c +++ b/gst/rtpmanager/rtpjitterbuffer.c @@ -445,7 +445,7 @@ calculate_skew (RTPJitterBuffer * jbuf, guint32 rtptime, GstClockTime time) /* need resync, lock on to time and gstrtptime if we can, otherwise we * do with the previous values */ if (G_UNLIKELY (jbuf->need_resync && time != -1)) { - GST_WARNING ("resync to time %" GST_TIME_FORMAT ", rtptime %" + GST_INFO ("resync to time %" GST_TIME_FORMAT ", rtptime %" GST_TIME_FORMAT, GST_TIME_ARGS (time), GST_TIME_ARGS (gstrtptime)); rtp_jitter_buffer_resync (jbuf, time, gstrtptime, ext_rtptime, FALSE); send_diff = 0;