jitterbuffer: change severity of clock-rate change debug

Make log GST_DEBUG under normal circumstances, GST_WARNING otherwise.

Fixes #594253
This commit is contained in:
Havard Graff 2009-08-31 18:46:25 +02:00 committed by Wim Taymans
parent 40549278c3
commit a52309eff7

View file

@ -213,8 +213,14 @@ calculate_skew (RTPJitterBuffer * jbuf, guint32 rtptime, GstClockTime time,
jbuf->last_rtptime = ext_rtptime;
if (jbuf->clock_rate != clock_rate) {
GST_WARNING ("Clock rate changed from %" G_GUINT32_FORMAT " to %"
if (jbuf->clock_rate == -1) {
GST_DEBUG ("Clock rate changed from %" G_GUINT32_FORMAT " to %"
G_GUINT32_FORMAT, jbuf->clock_rate, clock_rate);
}
else {
GST_WARNING ("Clock rate changed from %" G_GUINT32_FORMAT " to %"
G_GUINT32_FORMAT, jbuf->clock_rate, clock_rate);
}
jbuf->base_time = -1;
jbuf->base_rtptime = -1;
jbuf->clock_rate = clock_rate;