mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
omxbufferpool: add proper type definitions
https://bugzilla.gnome.org/show_bug.cgi?id=726325
This commit is contained in:
parent
0700d6875f
commit
0ea0eb1579
1 changed files with 7 additions and 1 deletions
|
@ -33,7 +33,13 @@
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GST_OMX_BUFFER_POOL(pool) ((GstOMXBufferPool *) pool)
|
#define GST_TYPE_OMX_BUFFER_POOL \
|
||||||
|
(gst_omx_buffer_pool_get_type())
|
||||||
|
#define GST_OMX_BUFFER_POOL(obj) \
|
||||||
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OMX_BUFFER_POOL,GstOMXBufferPool))
|
||||||
|
#define GST_IS_OMX_BUFFER_POOL(obj) \
|
||||||
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OMX_BUFFER_POOL))
|
||||||
|
|
||||||
typedef struct _GstOMXBufferPool GstOMXBufferPool;
|
typedef struct _GstOMXBufferPool GstOMXBufferPool;
|
||||||
typedef struct _GstOMXBufferPoolClass GstOMXBufferPoolClass;
|
typedef struct _GstOMXBufferPoolClass GstOMXBufferPoolClass;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue