mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
f362f643ac
Make GstAllocator a GstObject instead of a GstMiniObject, like bufferpool. Make a new gstallocator.c file. Make a GstAllocator subclass for the default allocator.
54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
#include <gst/gst.h>
|
|
|
|
#include "my-memory.h"
|
|
#include "my-vidmem.h"
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
GstAllocator *alloc;
|
|
GstMemory *mem;
|
|
GstAllocationParams params;
|
|
GstMapInfo info;
|
|
guint f, w, h;
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
/* memory using the default API */
|
|
my_memory_init ();
|
|
|
|
alloc = gst_allocator_find ("MyMemory");
|
|
|
|
gst_allocation_params_init (¶ms);
|
|
mem = gst_allocator_alloc (alloc, 1024, ¶ms);
|
|
|
|
gst_memory_map (mem, &info, GST_MAP_READ);
|
|
gst_memory_unmap (mem, &info);
|
|
|
|
gst_memory_unref (mem);
|
|
gst_object_unref (alloc);
|
|
|
|
/* allocator with custom alloc API */
|
|
my_vidmem_init ();
|
|
|
|
/* we can get the allocator but we can only make objects from it when we know
|
|
* the API */
|
|
alloc = gst_allocator_find ("MyVidmem");
|
|
|
|
/* use custom api to alloc */
|
|
mem = my_vidmem_alloc (0, 640, 480);
|
|
g_assert (my_is_vidmem (mem));
|
|
|
|
my_vidmem_get_format (mem, &f, &w, &h);
|
|
g_assert (f == 0);
|
|
g_assert (w == 640);
|
|
g_assert (h == 480);
|
|
|
|
gst_memory_map (mem, &info, GST_MAP_READ);
|
|
gst_memory_unmap (mem, &info);
|
|
|
|
gst_memory_unref (mem);
|
|
gst_object_unref (alloc);
|
|
|
|
return 0;
|
|
}
|