mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 22:05:58 +00:00
rtpjitterbuffer: Don't forget to unlock the mutex when receiving GAPs in TCP streams
This commit is contained in:
parent
3751c87f00
commit
38bf3d3808
1 changed files with 2 additions and 1 deletions
|
@ -2446,7 +2446,8 @@ gap_but_no_dts:
|
||||||
GST_ELEMENT_ERROR (jitterbuffer, STREAM, DECODE, (NULL),
|
GST_ELEMENT_ERROR (jitterbuffer, STREAM, DECODE, (NULL),
|
||||||
("Received packet without DTS after a gap"));
|
("Received packet without DTS after a gap"));
|
||||||
gst_buffer_unref (buffer);
|
gst_buffer_unref (buffer);
|
||||||
return GST_FLOW_ERROR;
|
ret = GST_FLOW_ERROR;
|
||||||
|
goto finished;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue