From 34a83c184e8917b0ab5ab9dfe0758d6d35d6822a Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Wed, 25 Apr 2012 19:03:48 +0530 Subject: [PATCH] omx: Fix trivial debug print bug --- omx/gstomx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/omx/gstomx.c b/omx/gstomx.c index d514220..53d300f 100644 --- a/omx/gstomx.c +++ b/omx/gstomx.c @@ -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; -- 2.7.4