mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-11 19:06:33 +00:00
omx: Fix trivial debug print bug
This commit is contained in:
parent
9e4cddee7e
commit
34a83c184e
1 changed files with 2 additions and 1 deletions
|
@ -1006,7 +1006,8 @@ retry:
|
|||
GST_DEBUG_OBJECT (comp->parent, "Queue of port %u is empty", port->index);
|
||||
g_cond_wait (port->port_cond, port->port_lock);
|
||||
} else {
|
||||
GST_DEBUG_OBJECT (comp->parent, "Port %u has pending buffers");
|
||||
GST_DEBUG_OBJECT (comp->parent, "Port %u has pending buffers",
|
||||
port->pending_buffers);
|
||||
_buf = g_queue_pop_head (port->pending_buffers);
|
||||
ret = GST_OMX_ACQUIRE_BUFFER_OK;
|
||||
goto done;
|
||||
|
|
Loading…
Reference in a new issue