gstreamer 内存 alloctor 介绍


前言

本文主要介绍 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`

执行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值