2011-03-18 17:35:42 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2009 Wim Taymans <wim.taymans@gmail.be>
|
|
|
|
*
|
|
|
|
* gstmemory.h: Header for memory blocks
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_MEMORY_H__
|
|
|
|
#define __GST_MEMORY_H__
|
|
|
|
|
2011-03-21 08:51:53 +00:00
|
|
|
#include <gst/gstconfig.h>
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
2011-03-18 18:28:17 +00:00
|
|
|
|
2011-03-18 17:35:42 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-11-10 12:51:28 +00:00
|
|
|
#define GST_TYPE_MEMORY (gst_memory_get_type())
|
|
|
|
GType gst_memory_get_type(void);
|
|
|
|
|
2012-01-30 12:28:34 +00:00
|
|
|
#define GST_TYPE_ALLOCATOR (gst_allocator_get_type())
|
|
|
|
GType gst_allocator_get_type(void);
|
|
|
|
|
2012-03-15 21:09:02 +00:00
|
|
|
#define GST_TYPE_ALLOCATION_PARAMS (gst_allocation_params_get_type())
|
2012-03-15 12:28:28 +00:00
|
|
|
GType gst_allocation_params_get_type(void);
|
|
|
|
|
2011-03-18 17:35:42 +00:00
|
|
|
typedef struct _GstMemory GstMemory;
|
|
|
|
typedef struct _GstMemoryInfo GstMemoryInfo;
|
2011-06-22 09:42:46 +00:00
|
|
|
typedef struct _GstAllocator GstAllocator;
|
2012-03-15 12:28:28 +00:00
|
|
|
typedef struct _GstAllocationParams GstAllocationParams;
|
2011-03-18 17:35:42 +00:00
|
|
|
|
2012-03-29 11:34:50 +00:00
|
|
|
/**
|
|
|
|
* gst_memory_alignment:
|
|
|
|
*
|
|
|
|
* The default memory alignment in bytes - 1
|
|
|
|
* an alignment of 7 would be the same as what malloc() guarantees.
|
|
|
|
*/
|
2011-12-16 01:20:27 +00:00
|
|
|
GST_EXPORT gsize gst_memory_alignment;
|
2011-06-10 14:46:12 +00:00
|
|
|
|
2012-02-13 15:33:00 +00:00
|
|
|
#define GST_MEMORY_CAST(mem) ((GstMemory *)(mem))
|
|
|
|
|
2011-03-30 16:45:08 +00:00
|
|
|
/**
|
|
|
|
* GstMemoryFlags:
|
2011-04-07 14:02:43 +00:00
|
|
|
* @GST_MEMORY_FLAG_READONLY: memory is readonly. It is not allowed to map the
|
|
|
|
* memory with #GST_MAP_WRITE.
|
|
|
|
* @GST_MEMORY_FLAG_NO_SHARE: memory must not be shared. Copies will have to be
|
|
|
|
* made when this memory needs to be shared between buffers.
|
2012-03-14 20:32:22 +00:00
|
|
|
* @GST_MEMORY_FLAG_ZERO_PREFIXED: the memory prefix is filled with 0 bytes
|
|
|
|
* @GST_MEMORY_FLAG_ZERO_PADDED: the memory padding is filled with 0 bytes
|
2011-06-05 17:11:22 +00:00
|
|
|
* @GST_MEMORY_FLAG_LAST: first flag that can be used for custom purposes
|
2011-03-30 16:45:08 +00:00
|
|
|
*
|
|
|
|
* Flags for wrapped memory.
|
|
|
|
*/
|
2011-03-19 09:45:37 +00:00
|
|
|
typedef enum {
|
2012-07-04 14:38:15 +00:00
|
|
|
GST_MEMORY_FLAG_READONLY = GST_MINI_OBJECT_FLAG_LOCK_READONLY,
|
|
|
|
GST_MEMORY_FLAG_NO_SHARE = (GST_MINI_OBJECT_FLAG_LAST << 0),
|
|
|
|
GST_MEMORY_FLAG_ZERO_PREFIXED = (GST_MINI_OBJECT_FLAG_LAST << 1),
|
|
|
|
GST_MEMORY_FLAG_ZERO_PADDED = (GST_MINI_OBJECT_FLAG_LAST << 2),
|
2011-04-07 14:02:43 +00:00
|
|
|
|
2012-06-14 14:30:12 +00:00
|
|
|
GST_MEMORY_FLAG_LAST = (GST_MINI_OBJECT_FLAG_LAST << 16)
|
2011-03-19 09:45:37 +00:00
|
|
|
} GstMemoryFlags;
|
|
|
|
|
2012-02-13 15:33:00 +00:00
|
|
|
/**
|
|
|
|
* GST_MEMORY_FLAGS:
|
|
|
|
* @mem: a #GstMemory.
|
|
|
|
*
|
|
|
|
* A flags word containing #GstMemoryFlags flags set on @mem
|
|
|
|
*/
|
2012-06-14 14:30:12 +00:00
|
|
|
#define GST_MEMORY_FLAGS(mem) GST_MINI_OBJECT_FLAGS (mem)
|
2012-02-13 15:33:00 +00:00
|
|
|
/**
|
|
|
|
* GST_MEMORY_FLAG_IS_SET:
|
|
|
|
* @mem: a #GstMemory.
|
|
|
|
* @flag: the #GstMemoryFlags to check.
|
|
|
|
*
|
|
|
|
* Gives the status of a specific flag on a @mem.
|
|
|
|
*/
|
2012-06-14 14:30:12 +00:00
|
|
|
#define GST_MEMORY_FLAG_IS_SET(mem,flag) GST_MINI_OBJECT_FLAG_IS_SET (mem,flag)
|
2012-03-14 20:32:22 +00:00
|
|
|
/**
|
|
|
|
* GST_MEMORY_FLAG_UNSET:
|
|
|
|
* @mem: a #GstMemory.
|
|
|
|
* @flag: the #GstMemoryFlags to clear.
|
|
|
|
*
|
|
|
|
* Clear a specific flag on a @mem.
|
|
|
|
*/
|
2012-06-14 14:30:12 +00:00
|
|
|
#define GST_MEMORY_FLAG_UNSET(mem,flag) GST_MINI_OBJECT_FLAG_UNSET (mem, flag)
|
2012-02-13 15:33:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_MEMORY_IS_READONLY:
|
|
|
|
* @mem: a #GstMemory.
|
|
|
|
*
|
|
|
|
* Check if @mem is readonly.
|
|
|
|
*/
|
|
|
|
#define GST_MEMORY_IS_READONLY(mem) GST_MEMORY_FLAG_IS_SET(mem,GST_MEMORY_FLAG_READONLY)
|
2012-06-14 14:30:12 +00:00
|
|
|
/**
|
|
|
|
* GST_MEMORY_IS_NO_SHARE:
|
|
|
|
* @mem: a #GstMemory.
|
|
|
|
*
|
|
|
|
* Check if @mem cannot be shared between buffers
|
|
|
|
*/
|
|
|
|
#define GST_MEMORY_IS_NO_SHARE(mem) GST_MEMORY_FLAG_IS_SET(mem,GST_MEMORY_FLAG_NO_SHARE)
|
2012-03-14 20:32:22 +00:00
|
|
|
/**
|
|
|
|
* GST_MEMORY_IS_ZERO_PREFIXED:
|
|
|
|
* @mem: a #GstMemory.
|
|
|
|
*
|
|
|
|
* Check if the prefix in @mem is 0 filled.
|
|
|
|
*/
|
|
|
|
#define GST_MEMORY_IS_ZERO_PREFIXED(mem) GST_MEMORY_FLAG_IS_SET(mem,GST_MEMORY_FLAG_ZERO_PREFIXED)
|
|
|
|
/**
|
|
|
|
* GST_MEMORY_IS_ZERO_PADDED:
|
|
|
|
* @mem: a #GstMemory.
|
|
|
|
*
|
|
|
|
* Check if the padding in @mem is 0 filled.
|
|
|
|
*/
|
|
|
|
#define GST_MEMORY_IS_ZERO_PADDED(mem) GST_MEMORY_FLAG_IS_SET(mem,GST_MEMORY_FLAG_ZERO_PADDED)
|
|
|
|
|
2012-02-13 15:33:00 +00:00
|
|
|
|
2011-03-18 17:35:42 +00:00
|
|
|
/**
|
|
|
|
* GstMemory:
|
2012-06-14 14:30:12 +00:00
|
|
|
* @mini_object: parent structure
|
2011-06-22 09:42:46 +00:00
|
|
|
* @allocator: pointer to the #GstAllocator
|
2011-03-30 14:47:55 +00:00
|
|
|
* @parent: parent memory block
|
2012-01-19 08:12:05 +00:00
|
|
|
* @maxsize: the maximum size allocated
|
|
|
|
* @align: the alignment of the memory
|
|
|
|
* @offset: the offset where valid data starts
|
|
|
|
* @size: the size of valid data
|
2011-03-18 17:35:42 +00:00
|
|
|
*
|
|
|
|
* Base structure for memory implementations. Custom memory will put this structure
|
|
|
|
* as the first member of their structure.
|
|
|
|
*/
|
|
|
|
struct _GstMemory {
|
2012-06-14 14:30:12 +00:00
|
|
|
GstMiniObject mini_object;
|
|
|
|
|
2012-01-30 12:02:13 +00:00
|
|
|
GstAllocator *allocator;
|
2011-03-18 17:35:42 +00:00
|
|
|
|
2011-03-19 09:45:37 +00:00
|
|
|
GstMemory *parent;
|
2012-01-19 08:12:05 +00:00
|
|
|
gsize maxsize;
|
|
|
|
gsize align;
|
|
|
|
gsize offset;
|
|
|
|
gsize size;
|
2011-03-18 17:35:42 +00:00
|
|
|
};
|
|
|
|
|
2011-03-30 16:45:08 +00:00
|
|
|
/**
|
|
|
|
* GstMapFlags:
|
|
|
|
* @GST_MAP_READ: map for read access
|
|
|
|
* @GST_MAP_WRITE: map for write access
|
2011-12-19 16:00:18 +00:00
|
|
|
* @GST_MAP_FLAG_LAST: first flag that can be used for custom purposes
|
2011-03-30 16:45:08 +00:00
|
|
|
*
|
|
|
|
* Flags used when mapping memory
|
|
|
|
*/
|
2011-03-18 18:28:17 +00:00
|
|
|
typedef enum {
|
2012-07-03 11:45:03 +00:00
|
|
|
GST_MAP_READ = GST_LOCK_FLAG_READ,
|
|
|
|
GST_MAP_WRITE = GST_LOCK_FLAG_WRITE,
|
2011-12-19 16:00:18 +00:00
|
|
|
|
|
|
|
GST_MAP_FLAG_LAST = (1 << 16)
|
2011-03-18 18:28:17 +00:00
|
|
|
} GstMapFlags;
|
2012-07-04 10:03:32 +00:00
|
|
|
/**
|
|
|
|
* GST_MAP_READWRITE:
|
|
|
|
*
|
|
|
|
* GstMapFlags value alias for GST_MAP_READ | GST_MAP_WRITE
|
|
|
|
*/
|
|
|
|
#define GST_MAP_READWRITE (GST_MAP_READ | GST_MAP_WRITE)
|
|
|
|
|
2011-03-18 18:28:17 +00:00
|
|
|
|
2012-01-20 13:23:57 +00:00
|
|
|
/**
|
|
|
|
* GstMapInfo:
|
|
|
|
* @memory: a pointer to the mapped memory
|
2012-01-24 13:37:25 +00:00
|
|
|
* @flags: flags used when mapping the memory
|
2012-06-23 11:37:16 +00:00
|
|
|
* @data: (array length=size): a pointer to the mapped data
|
2012-01-20 13:23:57 +00:00
|
|
|
* @size: the valid size in @data
|
|
|
|
* @maxsize: the maximum bytes in @data
|
2012-02-23 14:32:33 +00:00
|
|
|
* @user_data: extra private user_data that the implementation of the memory
|
|
|
|
* can use to store extra info.
|
2012-01-20 13:23:57 +00:00
|
|
|
*
|
|
|
|
* A structure containing the result of a map operation such as
|
|
|
|
* gst_memory_map(). It contains the data and size.
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
GstMemory *memory;
|
2012-01-24 13:37:25 +00:00
|
|
|
GstMapFlags flags;
|
2012-01-20 15:10:26 +00:00
|
|
|
guint8 *data;
|
2012-01-20 13:23:57 +00:00
|
|
|
gsize size;
|
|
|
|
gsize maxsize;
|
2012-02-23 14:32:33 +00:00
|
|
|
/*< private >*/
|
|
|
|
gpointer user_data[4];
|
2012-01-20 13:23:57 +00:00
|
|
|
} GstMapInfo;
|
|
|
|
|
2012-03-29 11:34:50 +00:00
|
|
|
/**
|
|
|
|
* GST_MAP_INFO_INIT:
|
|
|
|
*
|
|
|
|
* Initializer for #GstMapInfo
|
|
|
|
*/
|
2012-02-23 14:32:33 +00:00
|
|
|
#define GST_MAP_INFO_INIT { NULL, 0, NULL, 0, 0, }
|
2012-01-24 13:37:25 +00:00
|
|
|
|
2011-03-18 17:35:42 +00:00
|
|
|
/**
|
2011-06-22 09:42:46 +00:00
|
|
|
* GST_ALLOCATOR_SYSMEM:
|
2011-03-18 17:35:42 +00:00
|
|
|
*
|
2011-06-22 09:42:46 +00:00
|
|
|
* The allocator name for the default system memory allocator
|
2011-03-18 17:35:42 +00:00
|
|
|
*/
|
2011-06-22 09:42:46 +00:00
|
|
|
#define GST_ALLOCATOR_SYSMEM "SystemMemory"
|
2011-03-18 17:35:42 +00:00
|
|
|
|
2012-03-15 12:28:28 +00:00
|
|
|
/**
|
|
|
|
* GstAllocationParams:
|
|
|
|
* @flags: flags to control allocation
|
|
|
|
* @align: the desired alignment of the memory
|
2012-06-19 13:30:37 +00:00
|
|
|
* @prefix: the desired prefix
|
2012-03-15 12:28:28 +00:00
|
|
|
* @padding: the desired padding
|
|
|
|
*
|
|
|
|
* Parameters to control the allocation of memory
|
|
|
|
*/
|
|
|
|
struct _GstAllocationParams {
|
|
|
|
GstMemoryFlags flags;
|
|
|
|
gsize align;
|
|
|
|
gsize prefix;
|
|
|
|
gsize padding;
|
|
|
|
|
|
|
|
/*< private >*/
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
|
|
};
|
|
|
|
|
2011-06-07 14:14:50 +00:00
|
|
|
/**
|
2012-01-30 12:02:13 +00:00
|
|
|
* GstAllocatorAllocFunction:
|
2011-06-22 09:42:46 +00:00
|
|
|
* @allocator: a #GstAllocator
|
2012-03-14 20:32:22 +00:00
|
|
|
* @size: the size
|
2012-03-15 12:28:28 +00:00
|
|
|
* @params: allocator params
|
2011-06-07 15:54:33 +00:00
|
|
|
* @user_data: user data
|
2011-06-07 14:14:50 +00:00
|
|
|
*
|
2012-03-15 12:28:28 +00:00
|
|
|
* Allocate a new #GstMemory from @allocator that can hold at least @size
|
|
|
|
* bytes (+ padding) and is aligned to (@align + 1) bytes.
|
2011-06-07 15:54:33 +00:00
|
|
|
*
|
2012-03-14 20:32:22 +00:00
|
|
|
* The offset and size of the memory should be set and the prefix/padding must
|
2012-03-15 12:28:28 +00:00
|
|
|
* be filled with 0 if @params flags contains #GST_MEMORY_FLAG_ZERO_PREFIXED and
|
2012-03-14 20:32:22 +00:00
|
|
|
* #GST_MEMORY_FLAG_ZERO_PADDED respectively.
|
|
|
|
*
|
2012-06-25 07:32:41 +00:00
|
|
|
* @user_data is extra data passed to this function. The default
|
|
|
|
* gst_allocator_alloc() passes the user_data that was used when creating
|
|
|
|
* @allocator.
|
2011-06-07 14:14:50 +00:00
|
|
|
*
|
|
|
|
* Returns: a newly allocated #GstMemory. Free with gst_memory_unref()
|
|
|
|
*/
|
2012-01-30 12:02:13 +00:00
|
|
|
typedef GstMemory * (*GstAllocatorAllocFunction) (GstAllocator *allocator,
|
2012-03-15 12:28:28 +00:00
|
|
|
gsize size, GstAllocationParams *params,
|
2012-01-30 12:02:13 +00:00
|
|
|
gpointer user_data);
|
2011-06-07 14:14:50 +00:00
|
|
|
|
2011-03-30 16:45:08 +00:00
|
|
|
/**
|
|
|
|
* GstMemoryMapFunction:
|
|
|
|
* @mem: a #GstMemory
|
2012-01-19 08:12:05 +00:00
|
|
|
* @maxsize: size to map
|
2011-03-30 16:45:08 +00:00
|
|
|
* @flags: access mode for the memory
|
|
|
|
*
|
|
|
|
* Get the memory of @mem that can be accessed according to the mode specified
|
2012-01-19 08:12:05 +00:00
|
|
|
* in @flags. The function should return a pointer that contains at least
|
|
|
|
* @maxsize bytes.
|
2011-03-30 16:45:08 +00:00
|
|
|
*
|
2012-01-19 08:12:05 +00:00
|
|
|
* Returns: a pointer to memory of which at least @maxsize bytes can be
|
|
|
|
* accessed according to the access pattern in @flags.
|
2011-03-30 16:45:08 +00:00
|
|
|
*/
|
2012-01-19 08:12:05 +00:00
|
|
|
typedef gpointer (*GstMemoryMapFunction) (GstMemory *mem, gsize maxsize, GstMapFlags flags);
|
2011-03-30 16:45:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstMemoryUnmapFunction:
|
|
|
|
* @mem: a #GstMemory
|
|
|
|
*
|
2012-01-19 08:12:05 +00:00
|
|
|
* Return the pointer previously retrieved with gst_memory_map().
|
2011-03-30 16:45:08 +00:00
|
|
|
*
|
|
|
|
* Returns: %TRUE on success.
|
|
|
|
*/
|
2012-01-19 08:12:05 +00:00
|
|
|
typedef void (*GstMemoryUnmapFunction) (GstMemory *mem);
|
2011-03-30 16:45:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstMemoryFreeFunction:
|
|
|
|
* @mem: a #GstMemory
|
|
|
|
*
|
|
|
|
* Free the memory used by @mem. This function is usually called when the
|
|
|
|
* refcount of the @mem has reached 0.
|
|
|
|
*/
|
2011-03-18 20:45:39 +00:00
|
|
|
typedef void (*GstMemoryFreeFunction) (GstMemory *mem);
|
2011-03-30 14:47:55 +00:00
|
|
|
|
2011-03-30 16:45:08 +00:00
|
|
|
/**
|
|
|
|
* GstMemoryCopyFunction:
|
|
|
|
* @mem: a #GstMemory
|
|
|
|
* @offset: an offset
|
2011-11-11 01:47:30 +00:00
|
|
|
* @size: a size or -1
|
2011-03-30 16:45:08 +00:00
|
|
|
*
|
|
|
|
* Copy @size bytes from @mem starting at @offset and return them wrapped in a
|
|
|
|
* new GstMemory object.
|
|
|
|
* If @size is set to -1, all bytes starting at @offset are copied.
|
|
|
|
*
|
|
|
|
* Returns: a new #GstMemory object wrapping a copy of the requested region in
|
|
|
|
* @mem.
|
|
|
|
*/
|
2011-11-11 01:47:30 +00:00
|
|
|
typedef GstMemory * (*GstMemoryCopyFunction) (GstMemory *mem, gssize offset, gssize size);
|
2011-03-30 16:45:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstMemoryShareFunction:
|
|
|
|
* @mem: a #GstMemory
|
|
|
|
* @offset: an offset
|
2011-11-11 01:47:30 +00:00
|
|
|
* @size: a size or -1
|
2011-03-30 16:45:08 +00:00
|
|
|
*
|
|
|
|
* Share @size bytes from @mem starting at @offset and return them wrapped in a
|
|
|
|
* new GstMemory object. If @size is set to -1, all bytes starting at @offset are
|
|
|
|
* shared. This function does not make a copy of the bytes in @mem.
|
|
|
|
*
|
|
|
|
* Returns: a new #GstMemory object sharing the requested region in @mem.
|
|
|
|
*/
|
2011-11-11 01:47:30 +00:00
|
|
|
typedef GstMemory * (*GstMemoryShareFunction) (GstMemory *mem, gssize offset, gssize size);
|
2011-03-30 16:45:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstMemoryIsSpanFunction:
|
|
|
|
* @mem1: a #GstMemory
|
2011-06-05 17:11:22 +00:00
|
|
|
* @mem2: a #GstMemory
|
2011-03-30 16:45:08 +00:00
|
|
|
* @offset: a result offset
|
|
|
|
*
|
|
|
|
* Check if @mem1 and @mem2 occupy contiguous memory and return the offset of
|
|
|
|
* @mem1 in the parent buffer in @offset.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @mem1 and @mem2 are in contiguous memory.
|
|
|
|
*/
|
2011-03-30 14:47:55 +00:00
|
|
|
typedef gboolean (*GstMemoryIsSpanFunction) (GstMemory *mem1, GstMemory *mem2, gsize *offset);
|
2011-03-18 17:35:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GstMemoryInfo:
|
2012-02-17 23:53:58 +00:00
|
|
|
* @mem_type: the memory type this allocator provides
|
2012-01-30 12:02:13 +00:00
|
|
|
* @alloc: the implementation of the GstAllocatorAllocFunction
|
|
|
|
* @mem_map: the implementation of the GstMemoryMapFunction
|
|
|
|
* @mem_unmap: the implementation of the GstMemoryUnmapFunction
|
|
|
|
* @mem_free: the implementation of the GstMemoryFreeFunction
|
|
|
|
* @mem_copy: the implementation of the GstMemoryCopyFunction
|
|
|
|
* @mem_share: the implementation of the GstMemoryShareFunction
|
|
|
|
* @mem_is_span: the implementation of the GstMemoryIsSpanFunction
|
2011-03-18 17:35:42 +00:00
|
|
|
*
|
2011-06-07 14:14:50 +00:00
|
|
|
* The #GstMemoryInfo is used to register new memory allocators and contain
|
2011-03-30 16:45:08 +00:00
|
|
|
* the implementations for various memory operations.
|
2011-03-18 17:35:42 +00:00
|
|
|
*/
|
|
|
|
struct _GstMemoryInfo {
|
2012-01-30 14:57:39 +00:00
|
|
|
const gchar *mem_type;
|
|
|
|
|
2012-01-30 12:02:13 +00:00
|
|
|
GstAllocatorAllocFunction alloc;
|
2011-03-18 20:45:39 +00:00
|
|
|
|
2012-01-30 12:02:13 +00:00
|
|
|
GstMemoryMapFunction mem_map;
|
|
|
|
GstMemoryUnmapFunction mem_unmap;
|
|
|
|
GstMemoryFreeFunction mem_free;
|
2011-06-07 14:14:50 +00:00
|
|
|
|
2012-01-30 12:02:13 +00:00
|
|
|
GstMemoryCopyFunction mem_copy;
|
|
|
|
GstMemoryShareFunction mem_share;
|
|
|
|
GstMemoryIsSpanFunction mem_is_span;
|
2011-11-11 15:52:41 +00:00
|
|
|
|
2011-11-14 09:27:01 +00:00
|
|
|
/*< private >*/
|
2011-11-11 15:52:41 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2011-03-18 17:35:42 +00:00
|
|
|
};
|
|
|
|
|
2012-03-29 11:34:50 +00:00
|
|
|
/**
|
|
|
|
* GstAllocator:
|
|
|
|
*
|
|
|
|
* An opaque type returned from gst_allocator_new() or gst_allocator_find()
|
|
|
|
* that can be used to allocator memory.
|
|
|
|
*/
|
|
|
|
|
2011-06-07 14:14:50 +00:00
|
|
|
/* allocators */
|
2012-01-30 14:57:39 +00:00
|
|
|
GstAllocator * gst_allocator_new (const GstMemoryInfo * info,
|
|
|
|
gpointer user_data, GDestroyNotify notify);
|
|
|
|
const gchar * gst_allocator_get_memory_type (GstAllocator * allocator);
|
2011-06-07 14:14:50 +00:00
|
|
|
|
2012-06-14 13:33:50 +00:00
|
|
|
/**
|
|
|
|
* gst_allocator_ref:
|
|
|
|
* @allocator: The allocator to refcount
|
|
|
|
*
|
|
|
|
* Increase the refcount of this allocator.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): @allocator (for convenience when doing assignments)
|
|
|
|
*/
|
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC GstAllocator * gst_allocator_ref (GstAllocator * allocator);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline GstAllocator *
|
|
|
|
gst_allocator_ref (GstAllocator * allocator)
|
|
|
|
{
|
|
|
|
return (GstAllocator *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (allocator));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_allocator_unref:
|
|
|
|
* @allocator: (transfer full): the allocator to refcount
|
|
|
|
*
|
|
|
|
* Decrease the refcount of an allocator, freeing it if the refcount reaches 0.
|
|
|
|
*/
|
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC void gst_allocator_unref (GstAllocator * allocator);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
gst_allocator_unref (GstAllocator * allocator)
|
|
|
|
{
|
|
|
|
gst_mini_object_unref (GST_MINI_OBJECT_CAST (allocator));
|
|
|
|
}
|
2012-01-30 12:02:13 +00:00
|
|
|
|
2012-02-17 23:53:58 +00:00
|
|
|
void gst_allocator_register (const gchar *name, GstAllocator *allocator);
|
2012-01-30 14:57:39 +00:00
|
|
|
GstAllocator * gst_allocator_find (const gchar *name);
|
2012-01-30 12:02:13 +00:00
|
|
|
|
2012-01-30 14:57:39 +00:00
|
|
|
void gst_allocator_set_default (GstAllocator * allocator);
|
2011-06-07 14:14:50 +00:00
|
|
|
|
2011-03-22 19:51:06 +00:00
|
|
|
/* allocating memory blocks */
|
2012-07-05 15:11:01 +00:00
|
|
|
void gst_allocation_params_init (GstAllocationParams *params);
|
2012-03-15 12:28:28 +00:00
|
|
|
GstAllocationParams *
|
2012-07-05 15:11:01 +00:00
|
|
|
gst_allocation_params_copy (const GstAllocationParams *params) G_GNUC_MALLOC;
|
|
|
|
void gst_allocation_params_free (GstAllocationParams *params);
|
2012-03-15 12:28:28 +00:00
|
|
|
|
|
|
|
GstMemory * gst_allocator_alloc (GstAllocator * allocator, gsize size,
|
|
|
|
GstAllocationParams *params);
|
2011-06-22 09:42:46 +00:00
|
|
|
|
2012-02-22 01:02:50 +00:00
|
|
|
GstMemory * gst_memory_new_wrapped (GstMemoryFlags flags, gpointer data, gsize maxsize,
|
|
|
|
gsize offset, gsize size, gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
2011-03-22 19:51:06 +00:00
|
|
|
|
2012-07-05 15:11:01 +00:00
|
|
|
void gst_memory_init (GstMemory *mem, GstMemoryFlags flags,
|
|
|
|
GstAllocator *allocator, GstMemory *parent,
|
|
|
|
gsize maxsize, gsize align,
|
|
|
|
gsize offset, gsize size);
|
|
|
|
|
2011-03-22 19:51:06 +00:00
|
|
|
/* refcounting */
|
2012-06-14 14:30:12 +00:00
|
|
|
/**
|
|
|
|
* gst_memory_ref:
|
|
|
|
* @memory: The memory to refcount
|
|
|
|
*
|
|
|
|
* Increase the refcount of this memory.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): @memory (for convenience when doing assignments)
|
|
|
|
*/
|
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC GstMemory * gst_memory_ref (GstMemory * memory);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline GstMemory *
|
|
|
|
gst_memory_ref (GstMemory * memory)
|
|
|
|
{
|
|
|
|
return (GstMemory *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (memory));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_memory_unref:
|
|
|
|
* @memory: (transfer full): the memory to refcount
|
|
|
|
*
|
|
|
|
* Decrease the refcount of an memory, freeing it if the refcount reaches 0.
|
|
|
|
*/
|
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC void gst_memory_unref (GstMemory * memory);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
gst_memory_unref (GstMemory * memory)
|
|
|
|
{
|
|
|
|
gst_mini_object_unref (GST_MINI_OBJECT_CAST (memory));
|
|
|
|
}
|
2012-02-13 15:33:00 +00:00
|
|
|
|
2011-03-22 19:51:06 +00:00
|
|
|
/* getting/setting memory properties */
|
2012-02-13 15:33:00 +00:00
|
|
|
gsize gst_memory_get_sizes (GstMemory *mem, gsize *offset, gsize *maxsize);
|
|
|
|
void gst_memory_resize (GstMemory *mem, gssize offset, gsize size);
|
2011-03-18 17:35:42 +00:00
|
|
|
|
2012-07-04 14:38:15 +00:00
|
|
|
#define gst_memory_lock(m,f) gst_mini_object_lock (GST_MINI_OBJECT_CAST (m), (f))
|
|
|
|
#define gst_memory_unlock(m,f) gst_mini_object_unlock (GST_MINI_OBJECT_CAST (m), (f))
|
|
|
|
#define gst_memory_is_writable(m) gst_mini_object_is_writable (GST_MINI_OBJECT_CAST (m))
|
|
|
|
|
2011-06-07 15:34:17 +00:00
|
|
|
/* retrieving data */
|
2012-02-13 15:33:00 +00:00
|
|
|
GstMemory * gst_memory_make_mapped (GstMemory *mem, GstMapInfo *info, GstMapFlags flags);
|
|
|
|
gboolean gst_memory_map (GstMemory *mem, GstMapInfo *info, GstMapFlags flags);
|
|
|
|
void gst_memory_unmap (GstMemory *mem, GstMapInfo *info);
|
2011-03-29 17:17:55 +00:00
|
|
|
|
2011-03-22 19:51:06 +00:00
|
|
|
/* copy and subregions */
|
2012-02-13 15:33:00 +00:00
|
|
|
GstMemory * gst_memory_copy (GstMemory *mem, gssize offset, gssize size);
|
|
|
|
GstMemory * gst_memory_share (GstMemory *mem, gssize offset, gssize size);
|
2011-03-18 20:45:39 +00:00
|
|
|
|
2011-03-29 17:17:55 +00:00
|
|
|
/* span memory */
|
2012-02-13 15:33:00 +00:00
|
|
|
gboolean gst_memory_is_span (GstMemory *mem1, GstMemory *mem2, gsize *offset);
|
2011-03-30 14:47:55 +00:00
|
|
|
|
2011-03-18 17:35:42 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_MEMORY_H__ */
|