mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
omx: log the number of pending buffers when port is EOS
This commit is contained in:
parent
a7ef71dc80
commit
76267ec55d
1 changed files with 2 additions and 1 deletions
|
@ -2177,7 +2177,8 @@ retry:
|
|||
if (port->port_def.eDir == OMX_DirOutput && port->eos) {
|
||||
if (!g_queue_is_empty (&port->pending_buffers)) {
|
||||
GST_DEBUG_OBJECT (comp->parent, "%s output port %u is EOS but has "
|
||||
"buffers pending", comp->name, port->index);
|
||||
"%d buffers pending", comp->name, port->index,
|
||||
g_queue_get_length (&port->pending_buffers));
|
||||
_buf = g_queue_pop_head (&port->pending_buffers);
|
||||
|
||||
ret = GST_OMX_ACQUIRE_BUFFER_OK;
|
||||
|
|
Loading…
Reference in a new issue