memory: add boxed GType for the allocator

This commit is contained in:
Wim Taymans 2012-01-30 13:28:34 +01:00
parent af2fc026fc
commit f8c6cd196e
2 changed files with 6 additions and 0 deletions

View file

@ -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:
*

View file

@ -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;