mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
omx: Clarify GQueue/GPtrArray element types
This commit is contained in:
parent
c8c1c7f10f
commit
43b9dee4b2
1 changed files with 3 additions and 3 deletions
|
@ -80,8 +80,8 @@ struct _GstOMXPort {
|
||||||
GMutex *port_lock;
|
GMutex *port_lock;
|
||||||
GCond *port_cond;
|
GCond *port_cond;
|
||||||
OMX_PARAM_PORTDEFINITIONTYPE port_def;
|
OMX_PARAM_PORTDEFINITIONTYPE port_def;
|
||||||
GPtrArray *buffers;
|
GPtrArray *buffers; /* Contains GstOMXBuffer* */
|
||||||
GQueue *pending_buffers;
|
GQueue *pending_buffers; /* Contains GstOMXBuffer* */
|
||||||
/* If TRUE we need to get the new caps
|
/* If TRUE we need to get the new caps
|
||||||
* of this port */
|
* of this port */
|
||||||
gboolean settings_changed;
|
gboolean settings_changed;
|
||||||
|
@ -95,7 +95,7 @@ struct _GstOMXComponent {
|
||||||
OMX_HANDLETYPE handle;
|
OMX_HANDLETYPE handle;
|
||||||
GstOMXCore *core;
|
GstOMXCore *core;
|
||||||
|
|
||||||
GPtrArray *ports;
|
GPtrArray *ports; /* Contains GstOMXPort* */
|
||||||
|
|
||||||
/* Protecting state, pending_state and last_error
|
/* Protecting state, pending_state and last_error
|
||||||
* Signalled if one of them changes
|
* Signalled if one of them changes
|
||||||
|
|
Loading…
Reference in a new issue