mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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.
This commit is contained in:
parent
b745cb8a47
commit
6c27293ffe
1 changed files with 1 additions and 1 deletions
|
@ -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
|
/* need resync, lock on to time and gstrtptime if we can, otherwise we
|
||||||
* do with the previous values */
|
* do with the previous values */
|
||||||
if (G_UNLIKELY (jbuf->need_resync && time != -1)) {
|
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));
|
GST_TIME_FORMAT, GST_TIME_ARGS (time), GST_TIME_ARGS (gstrtptime));
|
||||||
rtp_jitter_buffer_resync (jbuf, time, gstrtptime, ext_rtptime, FALSE);
|
rtp_jitter_buffer_resync (jbuf, time, gstrtptime, ext_rtptime, FALSE);
|
||||||
send_diff = 0;
|
send_diff = 0;
|
||||||
|
|
Loading…
Reference in a new issue