文章目录
前言
本文主要介绍 gstreamer 中目前支持的内存 allocator , 包括 gstreamer 默认的system 内存 alloctor ,以及一些其他的常用的内存 allocator
软硬件环境:
硬件:PC
软件:Ubuntu22.04 gstreamer1.20.3
一、gstreamer 默认的内存 alloctor
1. gstreamer 中默认的内存 allocator 为 GST_ALLOCATOR_SYSMEM (即SystemMemory)
详细的介绍可以查看之前的文章《gstreamer 中 GstAllocator 介绍》
GST_ALLOCATOR_SYSMEM 即 SystemMemory
2. GST_ALLOCATOR_SYSMEM 申请内存实例
如下所示,是使用gstreamer 默认的 内存 allocator(GST_ALLOCATOR_SYSMEM) 申请一块内存(大小为4096byte)的代码实例 galloctor_test.c
gst_allocator_alloc() 函数第一个参数传NULL, 就是使用默认的内存 allocator(GST_ALLOCATOR_SYSMEM) 申请内存
#include <stdio.h>
#include <string.h>
#include <gst/gst.h>
int main(int argc, char *argv[])
{
GstAllocator *alloc;
GstMemory *mem;
GstMapInfo map;
gst_init(&argc, &argv);
//申请 mem
mem = gst_allocator_alloc(NULL, 4096, NULL);
//映射内存
if(gst_memory_map(mem, &map, GST_MAP_READWRITE)) {
g_print("map.size = %ld\n", map.size);
//写入数据
memset(map.data, 0, map.size);
g_print("map.data[0] = %d\n", map.data[0]);
} else {
g_printerr("gst_memory_map failed!\n");
}
//解除内存映射
gst_memory_unmap(mem, &map);
//释放内存
gst_memory_unref(mem);
return 0;
}
编译命令:
gcc galloctor_test.c -o galloctor_test `pkg-config --cflags --libs gstreamer-1.0`
执行结果: