mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 08:09:56 +00:00
vtenc: Unlock the stream lock while waiting for pending frames to be completed in finish()
We might otherwise deadlock because gst_vtenc_enqueue_buffer() can be called again and will take the stream lock again from another thread. https://bugzilla.gnome.org/show_bug.cgi?id=742174
This commit is contained in:
parent
dd7cb8f632
commit
7d318a572c
1 changed files with 6 additions and 0 deletions
|
@ -734,9 +734,15 @@ gst_vtenc_finish (GstVideoEncoder * enc)
|
|||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
OSStatus vt_status;
|
||||
|
||||
/* We need to unlock the stream lock here because
|
||||
* it can wait for gst_vtenc_enqueue_buffer() to
|
||||
* handle a buffer... which will take the stream
|
||||
* lock from another thread and then deadlock */
|
||||
GST_VIDEO_ENCODER_STREAM_UNLOCK (self);
|
||||
vt_status =
|
||||
VTCompressionSessionCompleteFrames (self->session,
|
||||
kCMTimePositiveInfinity);
|
||||
GST_VIDEO_ENCODER_STREAM_LOCK (self);
|
||||
if (vt_status != noErr) {
|
||||
GST_WARNING_OBJECT (self, "VTCompressionSessionCompleteFrames returned %d",
|
||||
(int) vt_status);
|
||||
|
|
Loading…
Reference in a new issue