From 43b9dee4b29317229cb8491c3bf56c6ca3d4bb63 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 7 Jul 2011 12:51:03 +0200 Subject: [PATCH] omx: Clarify GQueue/GPtrArray element types --- omx/gstomx.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/omx/gstomx.h b/omx/gstomx.h index 646d791102f..3fbc12acb54 100644 --- a/omx/gstomx.h +++ b/omx/gstomx.h @@ -80,8 +80,8 @@ struct _GstOMXPort { GMutex *port_lock; GCond *port_cond; OMX_PARAM_PORTDEFINITIONTYPE port_def; - GPtrArray *buffers; - GQueue *pending_buffers; + GPtrArray *buffers; /* Contains GstOMXBuffer* */ + GQueue *pending_buffers; /* Contains GstOMXBuffer* */ /* If TRUE we need to get the new caps * of this port */ gboolean settings_changed; @@ -95,7 +95,7 @@ struct _GstOMXComponent { OMX_HANDLETYPE handle; GstOMXCore *core; - GPtrArray *ports; + GPtrArray *ports; /* Contains GstOMXPort* */ /* Protecting state, pending_state and last_error * Signalled if one of them changes -- 2.34.1