rtpjitterbuffer: Change resyncing GST_WARNING to GST_INFO
authorSebastian Dröge <sebastian@centricular.com>
Mon, 13 Apr 2015 18:25:00 +0000 (20:25 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 13 Apr 2015 18:25:48 +0000 (20:25 +0200)
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

index 1292d7d..f41b799 100644 (file)
@@ -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;