mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
rtpjitterbuffer: fix wake-up when new buffers come in after running empty
Spotted by 'gratias' on IRC. Probably introduced in recent refactoring. https://bugzilla.gnome.org/show_bug.cgi?id=715039
This commit is contained in:
parent
643e6fdc36
commit
901ec63462
1 changed files with 1 additions and 1 deletions
|
@ -2123,7 +2123,7 @@ gst_rtp_jitter_buffer_chain (GstPad * pad, GstObject * parent,
|
|||
do_handle_sync (jitterbuffer);
|
||||
|
||||
/* signal addition of new buffer when the _loop is waiting. */
|
||||
if (priv->active && priv->waiting_timer)
|
||||
if (priv->active)
|
||||
JBUF_SIGNAL_EVENT (priv);
|
||||
|
||||
/* let's unschedule and unblock any waiting buffers. We only want to do this
|
||||
|
|
Loading…
Reference in a new issue