mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 04:22:27 +00:00
queue2: Clean up after the streaming thread has stopped
https://bugzilla.gnome.org/show_bug.cgi?id=705835
This commit is contained in:
parent
ec1dd125c7
commit
d7c3be226c
1 changed files with 6 additions and 0 deletions
|
@ -3078,8 +3078,14 @@ gst_queue2_sink_activate_mode (GstPad * pad, GstObject * parent,
|
|||
GST_DEBUG_OBJECT (queue, "deactivating push mode");
|
||||
queue->srcresult = GST_FLOW_FLUSHING;
|
||||
queue->sinkresult = GST_FLOW_FLUSHING;
|
||||
GST_QUEUE2_MUTEX_UNLOCK (queue);
|
||||
|
||||
/* wait until it is unblocked and clean up */
|
||||
GST_PAD_STREAM_LOCK (pad);
|
||||
GST_QUEUE2_MUTEX_LOCK (queue);
|
||||
gst_queue2_locked_flush (queue, TRUE);
|
||||
GST_QUEUE2_MUTEX_UNLOCK (queue);
|
||||
GST_PAD_STREAM_UNLOCK (pad);
|
||||
}
|
||||
result = TRUE;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue