summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2018-08-22 15:56:18 +0200
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2018-08-29 12:18:39 -0400
commit40ae47df5e6668231ce6d48c8ba83c2eb1790521 (patch)
tree82a1222514b319a3f9db55a2a1c872ca45c1c955
parent3d55051da3deacc382dd889c2304835e1d51be6c (diff)
downloadgst-omx-40ae47df5e6668231ce6d48c8ba83c2eb1790521.tar.gz
omx: wait for flush complete and buffers being released when flushing
When flusing we should wait for OMX to send the flush command complete event AND all ports being released. We were stopping as soon as one of those condition was met. Fix a race between FillThisBufferDone/EmptyBufferDone and the flush EventCmdComplete messages. The OMX implementation is supposed to release its buffers before posting the EventCmdComplete event but the ordering isn't guaranteed as the FillThisBufferDone/EmptyBufferDone and EventHandler callbacks can be called from different threads (cf 2.7 'Thread Safety' in the spec). Only wait for buffers currently used by OMX as some buffers may not be in the pending queue because they are held downstream. https://bugzilla.gnome.org/show_bug.cgi?id=789475
-rw-r--r--omx/gstomx.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/omx/gstomx.c b/omx/gstomx.c
index 9b07678..8ed336b 100644
--- a/omx/gstomx.c
+++ b/omx/gstomx.c
@@ -1569,17 +1569,27 @@ done:
return err;
}
+/* NOTE: Must be called while holding comp->lock */
static gboolean
should_wait_until_flushed (GstOMXPort * port)
{
- if (port->flushed)
- return FALSE;
+ if (!port->flushed)
+ /* Flush command hasn't been completed yet by OMX */
+ return TRUE;
- if (port->buffers
- && port->buffers->len == g_queue_get_length (&port->pending_buffers))
- return FALSE;
+ if (port->buffers) {
+ guint i;
- return TRUE;
+ /* Wait for all the buffers used by OMX to be released */
+ for (i = 0; i < port->buffers->len; i++) {
+ GstOMXBuffer *buf = g_ptr_array_index (port->buffers, i);
+
+ if (buf->used)
+ return TRUE;
+ }
+ }
+
+ return FALSE;
}
/* NOTE: Uses comp->lock and comp->messages_lock */