mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
gst/rtpmanager/gstrtpjitterbuffer.c: Don't unref the popped buffer when we don't have ownership.
Original commit message from CVS: * gst/rtpmanager/gstrtpjitterbuffer.c: (gst_rtp_jitter_buffer_loop): Don't unref the popped buffer when we don't have ownership. Fixes #507020.
This commit is contained in:
parent
cba910a430
commit
c5e9700eda
1 changed files with 1 additions and 3 deletions
|
@ -971,7 +971,7 @@ static void
|
|||
gst_rtp_jitter_buffer_loop (GstRtpJitterBuffer * jitterbuffer)
|
||||
{
|
||||
GstRtpJitterBufferPrivate *priv;
|
||||
GstBuffer *outbuf = NULL;
|
||||
GstBuffer *outbuf;
|
||||
GstFlowReturn result;
|
||||
guint16 seqnum;
|
||||
GstClockTime timestamp, out_time;
|
||||
|
@ -1152,8 +1152,6 @@ flushing:
|
|||
{
|
||||
GST_DEBUG_OBJECT (jitterbuffer, "we are flushing");
|
||||
gst_pad_pause_task (priv->srcpad);
|
||||
if (outbuf)
|
||||
gst_buffer_unref (outbuf);
|
||||
JBUF_UNLOCK (priv);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue