2011-06-07 16:18:27 +00:00
|
|
|
GstMemory
|
|
|
|
---------
|
|
|
|
|
|
|
|
This document describes the design of the memory objects.
|
|
|
|
|
|
|
|
GstMemory objects are usually added to GstBuffer objects and contain the
|
|
|
|
multimedia data passed around in the pipeline.
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
~~~~~~~~~~~~
|
|
|
|
|
|
|
|
- It must be possible to have different memory allocators
|
|
|
|
- It must be possible to efficiently share memory objects, copy, span
|
|
|
|
and trim.
|
|
|
|
|
|
|
|
|
2012-07-05 10:53:57 +00:00
|
|
|
Memory layout
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
2013-10-14 03:42:40 +00:00
|
|
|
GstMemory manages a memory region. The accessible part of the managed region is
|
2012-07-05 10:53:57 +00:00
|
|
|
defined by an offset relative to the start of the region and a size. This
|
|
|
|
means that the managed region can be larger than what is visible to the user of
|
|
|
|
GstMemory API.
|
|
|
|
|
|
|
|
Schematically, GstMemory has a pointer to a memory region of _maxsize_. The area
|
|
|
|
starting from _offset_ and _size_ is accessible.
|
|
|
|
|
|
|
|
memory
|
|
|
|
GstMemory ->*----------------------------------------------------*
|
|
|
|
^----------------------------------------------------^
|
|
|
|
maxsize
|
|
|
|
^--------------------------------------^
|
|
|
|
offset size
|
|
|
|
|
|
|
|
The current properties of the accessible memory can be retrieved with:
|
|
|
|
|
|
|
|
gsize gst_memory_get_sizes (GstMemory *mem, gsize *offset, gsize *maxsize);
|
|
|
|
|
|
|
|
The offset and size can be changed with:
|
|
|
|
|
|
|
|
void gst_memory_resize (GstMemory *mem, gssize offset, gsize size);
|
|
|
|
|
|
|
|
|
2011-06-07 16:18:27 +00:00
|
|
|
Allocators
|
|
|
|
~~~~~~~~~~
|
|
|
|
|
2012-10-01 11:28:54 +00:00
|
|
|
GstMemory objects are created by allocators. Allocators are a subclass
|
|
|
|
of GstObject and can be subclassed to make custom allocators.
|
2011-06-07 16:18:27 +00:00
|
|
|
|
2012-10-01 11:28:54 +00:00
|
|
|
struct _GstAllocator {
|
|
|
|
GstObject object;
|
2012-03-09 13:30:01 +00:00
|
|
|
|
2012-10-01 11:28:54 +00:00
|
|
|
const gchar *mem_type;
|
2012-03-09 13:30:01 +00:00
|
|
|
|
|
|
|
GstMemoryMapFunction mem_map;
|
|
|
|
GstMemoryUnmapFunction mem_unmap;
|
|
|
|
|
|
|
|
GstMemoryCopyFunction mem_copy;
|
|
|
|
GstMemoryShareFunction mem_share;
|
|
|
|
GstMemoryIsSpanFunction mem_is_span;
|
2011-06-07 16:18:27 +00:00
|
|
|
};
|
|
|
|
|
2012-10-01 11:28:54 +00:00
|
|
|
The allocator class has 2 virtual methods. One to create a GstMemory,
|
|
|
|
another to free it again.
|
|
|
|
|
|
|
|
struct _GstAllocatorClass {
|
|
|
|
GstObjectClass object_class;
|
|
|
|
|
|
|
|
GstMemory * (*alloc) (GstAllocator *allocator, gsize size,
|
|
|
|
GstAllocationParams *params);
|
|
|
|
void (*free) (GstAllocator *allocator, GstMemory *memory);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-03-09 13:30:01 +00:00
|
|
|
Allocators are refcounted. It is also possible to register the allocator to the
|
|
|
|
GStreamer system. This way, the allocator can be retrieved by name.
|
|
|
|
|
|
|
|
After an allocator is created, new GstMemory can be created with
|
2011-06-07 16:18:27 +00:00
|
|
|
|
2012-01-05 11:39:17 +00:00
|
|
|
GstMemory * gst_allocator_alloc (const GstAllocator * allocator,
|
2012-07-05 10:53:57 +00:00
|
|
|
gsize size,
|
|
|
|
GstAllocationParams *params);
|
|
|
|
|
|
|
|
GstAllocationParams contain extra info such as flags, alignment, prefix and
|
|
|
|
padding.
|
2011-06-07 16:18:27 +00:00
|
|
|
|
|
|
|
The GstMemory object is a refcounted object that must be freed with
|
|
|
|
gst_memory_unref ().
|
|
|
|
|
2012-10-01 11:28:54 +00:00
|
|
|
The GstMemory keeps a ref to the allocator that allocated it. Inside the
|
|
|
|
allocator are the most common GstMemory operations listed. Custom
|
|
|
|
GstAllocator implementations must implement the various operations on
|
|
|
|
the memory they allocate.
|
|
|
|
|
2011-06-07 16:18:27 +00:00
|
|
|
It is also possible to create a new GstMemory object that wraps existing
|
|
|
|
memory with:
|
|
|
|
|
2012-03-09 13:30:01 +00:00
|
|
|
GstMemory * gst_memory_new_wrapped (GstMemoryFlags flags,
|
|
|
|
gpointer data, gsize maxsize,
|
|
|
|
gsize offset, gsize size,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
2011-06-07 16:18:27 +00:00
|
|
|
|
2011-06-08 10:04:49 +00:00
|
|
|
Lifecycle
|
|
|
|
~~~~~~~~~
|
|
|
|
|
2012-07-05 10:53:57 +00:00
|
|
|
GstMemory extends from GstMiniObject and therefore uses its lifecycle
|
|
|
|
management (See part-miniobject.txt).
|
2012-07-03 07:48:32 +00:00
|
|
|
|
2011-06-08 10:04:49 +00:00
|
|
|
|
2011-06-07 16:18:27 +00:00
|
|
|
|
|
|
|
Data Access
|
|
|
|
~~~~~~~~~~~
|
|
|
|
|
2011-06-08 10:04:49 +00:00
|
|
|
Access to the memory region is always controlled with a map and unmap method
|
|
|
|
call. This allows the implementation to monitor the access patterns or set up
|
|
|
|
the required memory mappings when needed.
|
|
|
|
|
2012-07-05 10:53:57 +00:00
|
|
|
The access of the memory object is controlled with the locking mechanism on
|
|
|
|
GstMiniObject (See part-miniobject.txt).
|
|
|
|
|
2011-06-08 10:04:49 +00:00
|
|
|
Mapping a memory region requires the caller to specify the access method: READ
|
2012-07-04 09:48:37 +00:00
|
|
|
and/or WRITE. Mapping a memory region will first try to get a lock on the
|
|
|
|
memory in the requested access mode. This means that the map operation can
|
|
|
|
fail when WRITE access is requested on a non-writable memory object (it has
|
|
|
|
an exclusive counter > 1, the memory is already locked in an incompatible
|
|
|
|
access mode or the memory is marked readonly).
|
2011-06-08 10:04:49 +00:00
|
|
|
|
|
|
|
After the data has been accessed in the object, the unmap call must be
|
2012-07-04 09:48:37 +00:00
|
|
|
performed, which will unlock the memory again.
|
2011-06-08 10:04:49 +00:00
|
|
|
|
2013-10-14 03:42:40 +00:00
|
|
|
It is allowed to recursively map multiple times with the same or narrower
|
|
|
|
access modes. For each of the map calls, a corresponding unmap call needs to
|
2012-07-05 10:53:57 +00:00
|
|
|
be made. WRITE-only memory cannot be mapped in READ mode and READ-only memory
|
|
|
|
cannot be mapped in WRITE mode.
|
2012-01-05 15:41:58 +00:00
|
|
|
|
|
|
|
The memory pointer returned from the map call is guaranteed to remain valid in
|
|
|
|
the requested mapping mode until the corresponding unmap call is performed on
|
|
|
|
the pointer.
|
|
|
|
|
|
|
|
When multiple map operations are nested and return the same pointer, the pointer
|
|
|
|
is valid until the last unmap call is done.
|
|
|
|
|
|
|
|
When the final reference on a memory object is dropped, all outstanding
|
2012-03-09 13:30:01 +00:00
|
|
|
mappings should have been unmapped.
|
2012-01-05 16:02:48 +00:00
|
|
|
|
2013-10-14 03:42:40 +00:00
|
|
|
Resizing a GstMemory does not influence any current mappings in any way.
|
2011-06-08 10:04:49 +00:00
|
|
|
|
|
|
|
Copy
|
|
|
|
~~~~
|
|
|
|
|
|
|
|
A GstMemory copy can be made with the gst_memory_copy() call. Normally,
|
|
|
|
allocators will implement a custom version of this function to make a copy of
|
|
|
|
the same kind of memory as the original one.
|
|
|
|
|
2013-10-14 03:42:40 +00:00
|
|
|
This is what the fallback version of the copy function does, albeit slower
|
|
|
|
than what a custom implementation could do.
|
2011-06-08 10:04:49 +00:00
|
|
|
|
|
|
|
The copy operation is only required to copy the visible range of the memory
|
|
|
|
block.
|
|
|
|
|
|
|
|
|
|
|
|
Share
|
|
|
|
~~~~~
|
2011-06-07 16:18:27 +00:00
|
|
|
|
2011-06-08 10:04:49 +00:00
|
|
|
A memory region can be shared between GstMemory object with the
|
|
|
|
gst_memory_share() operation.
|
2011-06-07 16:18:27 +00:00
|
|
|
|
|
|
|
|