mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
memory: pass user_data to the alloc function
Pass the user data that was passed to _register to the alloc function of an allocator.
This commit is contained in:
parent
70e799c8fc
commit
cfd3faef5a
2 changed files with 11 additions and 4 deletions
|
@ -691,5 +691,6 @@ gst_memory_allocator_alloc (const GstMemoryAllocator * allocator,
|
|||
if (allocator == NULL)
|
||||
allocator = _default_allocator;
|
||||
|
||||
return allocator->info.alloc (allocator, maxsize, align);
|
||||
return allocator->info.alloc (allocator, maxsize, align,
|
||||
allocator->info.user_data);
|
||||
}
|
||||
|
|
|
@ -106,15 +106,21 @@ typedef enum {
|
|||
|
||||
/**
|
||||
* GstMemoryAllocFunction:
|
||||
* @allocator: a #GstMemoryAllocator
|
||||
* @maxsize: the maxsize
|
||||
* @align: the alignment
|
||||
* @user_data: user data
|
||||
*
|
||||
* Allocate a new #GstMemory that can hold at least @maxsize bytes and is aligned
|
||||
* to (@align + 1) bytes.
|
||||
* Allocate a new #GstMemory from @allocator that can hold at least @maxsize bytes
|
||||
* and is aligned to (@align + 1) bytes.
|
||||
*
|
||||
* @user_data is the data that was used when registering @allocator.
|
||||
*
|
||||
* Returns: a newly allocated #GstMemory. Free with gst_memory_unref()
|
||||
*/
|
||||
typedef GstMemory * (*GstMemoryAllocFunction) (const GstMemoryAllocator *allocator, gsize maxsize, gsize align);
|
||||
typedef GstMemory * (*GstMemoryAllocFunction) (const GstMemoryAllocator *allocator,
|
||||
gsize maxsize, gsize align,
|
||||
gpointer user_data);
|
||||
|
||||
/**
|
||||
* GstMemoryGetSizesFunction:
|
||||
|
|
Loading…
Reference in a new issue