From: Sebastian Dröge Date: Fri, 2 Sep 2022 09:20:30 +0000 (+0300) Subject: rtpjitterbuffer: Don't shadow variable X-Git-Tag: 1.22.0~1002 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e66f5e2423fef09bfe03dc8f757287a83cb3371b;p=platform%2Fupstream%2Fgstreamer.git rtpjitterbuffer: Don't shadow variable While this didn't cause any problems in this context it is simply confusing. Part-of: --- diff --git a/subprojects/gst-plugins-good/gst/rtpmanager/gstrtpjitterbuffer.c b/subprojects/gst-plugins-good/gst/rtpmanager/gstrtpjitterbuffer.c index d82b32f..1770781 100644 --- a/subprojects/gst-plugins-good/gst/rtpmanager/gstrtpjitterbuffer.c +++ b/subprojects/gst-plugins-good/gst/rtpmanager/gstrtpjitterbuffer.c @@ -3408,12 +3408,12 @@ gst_rtp_jitter_buffer_chain (GstPad * pad, GstObject * parent, * sequence number, let's allow at least 10k packets in any case. */ while (rtp_jitter_buffer_is_full (priv->jbuf) && priv->srcresult == GST_FLOW_OK) { - RtpTimer *timer = rtp_timer_queue_peek_earliest (priv->timers); - while (timer) { - timer->timeout = -1; - if (timer->type == RTP_TIMER_DEADLINE) + RtpTimer *earliest_timer = rtp_timer_queue_peek_earliest (priv->timers); + while (earliest_timer) { + earliest_timer->timeout = -1; + if (earliest_timer->type == RTP_TIMER_DEADLINE) break; - timer = rtp_timer_get_next (timer); + earliest_timer = rtp_timer_get_next (earliest_timer); } update_current_timer (jitterbuffer);