mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
memory: add boxed GType for the allocator
This commit is contained in:
parent
af2fc026fc
commit
f8c6cd196e
2 changed files with 6 additions and 0 deletions
|
@ -73,6 +73,9 @@
|
|||
G_DEFINE_BOXED_TYPE (GstMemory, gst_memory, (GBoxedCopyFunc) gst_memory_ref,
|
||||
(GBoxedFreeFunc) gst_memory_unref);
|
||||
|
||||
G_DEFINE_BOXED_TYPE (GstAllocator, gst_allocator,
|
||||
(GBoxedCopyFunc) gst_allocator_ref, (GBoxedFreeFunc) gst_allocator_unref);
|
||||
|
||||
/**
|
||||
* gst_memory_alignment:
|
||||
*
|
||||
|
|
|
@ -32,6 +32,9 @@ G_BEGIN_DECLS
|
|||
#define GST_TYPE_MEMORY (gst_memory_get_type())
|
||||
GType gst_memory_get_type(void);
|
||||
|
||||
#define GST_TYPE_ALLOCATOR (gst_allocator_get_type())
|
||||
GType gst_allocator_get_type(void);
|
||||
|
||||
typedef struct _GstMemory GstMemory;
|
||||
typedef struct _GstMemoryInfo GstMemoryInfo;
|
||||
typedef struct _GstAllocator GstAllocator;
|
||||
|
|
Loading…
Reference in a new issue