mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
rtpjitterbuffer: Don't shadow variable
While this didn't cause any problems in this context it is simply confusing. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2973>
This commit is contained in:
parent
0b19c457ca
commit
e66f5e2423
1 changed files with 5 additions and 5 deletions
|
@ -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. */
|
* sequence number, let's allow at least 10k packets in any case. */
|
||||||
while (rtp_jitter_buffer_is_full (priv->jbuf) &&
|
while (rtp_jitter_buffer_is_full (priv->jbuf) &&
|
||||||
priv->srcresult == GST_FLOW_OK) {
|
priv->srcresult == GST_FLOW_OK) {
|
||||||
RtpTimer *timer = rtp_timer_queue_peek_earliest (priv->timers);
|
RtpTimer *earliest_timer = rtp_timer_queue_peek_earliest (priv->timers);
|
||||||
while (timer) {
|
while (earliest_timer) {
|
||||||
timer->timeout = -1;
|
earliest_timer->timeout = -1;
|
||||||
if (timer->type == RTP_TIMER_DEADLINE)
|
if (earliest_timer->type == RTP_TIMER_DEADLINE)
|
||||||
break;
|
break;
|
||||||
timer = rtp_timer_get_next (timer);
|
earliest_timer = rtp_timer_get_next (earliest_timer);
|
||||||
}
|
}
|
||||||
|
|
||||||
update_current_timer (jitterbuffer);
|
update_current_timer (jitterbuffer);
|
||||||
|
|
Loading…
Reference in a new issue