omx: Fix trivial debug print bug

This commit is contained in:
Arun Raghavan 2012-04-25 19:03:48 +05:30
parent 9e4cddee7e
commit 34a83c184e

View file

@ -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;