From: Guillaume Desmottes Date: Wed, 28 Aug 2019 10:19:00 +0000 (+0530) Subject: omx: log when an output port is eos X-Git-Tag: 1.19.3~501^2~62 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7ef71dc809cd02d9ec0898f54b7aafb09c8149a;p=platform%2Fupstream%2Fgstreamer.git omx: log when an output port is eos --- diff --git a/omx/gstomx.c b/omx/gstomx.c index c5814ad..0b4d6b8 100644 --- a/omx/gstomx.c +++ b/omx/gstomx.c @@ -377,8 +377,11 @@ gst_omx_component_handle_messages (GstOMXComponent * comp) "%s port %u got buffer flags 0x%08x (%s)", comp->name, port->index, (guint) flags, gst_omx_buffer_flags_to_string (flags)); if ((flags & OMX_BUFFERFLAG_EOS) - && port->port_def.eDir == OMX_DirOutput) + && port->port_def.eDir == OMX_DirOutput && !port->eos) { + GST_DEBUG_OBJECT (comp->parent, "%s port %u is EOS", comp->name, + port->index); port->eos = TRUE; + } break; } @@ -412,8 +415,11 @@ gst_omx_component_handle_messages (GstOMXComponent * comp) buf, buf->omx_buf->pBuffer); if ((buf->omx_buf->nFlags & OMX_BUFFERFLAG_EOS) - && port->port_def.eDir == OMX_DirOutput) + && port->port_def.eDir == OMX_DirOutput && !port->eos) { + GST_DEBUG_OBJECT (comp->parent, "%s port %u is EOS", comp->name, + port->index); port->eos = TRUE; + } } /* If an input port is managed by a pool, the buffer will be ready to be