mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-10 01:54:11 +00:00
rtpjitterbuffer: don't use the timer-object after JBUF_UNLOCK
It could have been freed (rtp_timer_free) in the meantime.
This commit is contained in:
parent
1df706448c
commit
63ae338c24
1 changed files with 1 additions and 1 deletions
|
@ -4102,7 +4102,7 @@ wait_next_timeout (GstRtpJitterBuffer * jitterbuffer)
|
|||
}
|
||||
|
||||
if (ret != GST_CLOCK_UNSCHEDULED) {
|
||||
now = timer->timeout + MAX (clock_jitter, 0);
|
||||
now = priv->timer_timeout + MAX (clock_jitter, 0);
|
||||
GST_DEBUG_OBJECT (jitterbuffer,
|
||||
"sync done, %d, #%d, %" GST_STIME_FORMAT, ret, priv->timer_seqnum,
|
||||
GST_STIME_ARGS (clock_jitter));
|
||||
|
|
Loading…
Reference in a new issue