Files
mpp/osal/linux/os_allocator.c
2015-08-20 03:23:36 +00:00

77 lines
1.9 KiB
C

/*
* Copyright 2010 Rockchip Electronics S.LSI Co. LTD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include "os_mem.h"
#include "os_allocator.h"
#include "mpp_mem.h"
#include "mpp_log.h"
typedef struct {
size_t alignment;
} allocator_impl;
int os_allocator_open(void **ctx, size_t alignment)
{
allocator_impl *p = NULL;
if (NULL == ctx) {
mpp_err("os_allocator_open Linux do not accept NULL input\n");
return MPP_ERR_NULL_PTR;
}
p = mpp_malloc(allocator_impl, 1);
if (NULL == p) {
*ctx = NULL;
mpp_err("os_allocator_open Linux failed to allocate context\n");
return MPP_ERR_MALLOC;
}
p->alignment = alignment;
*ctx = p;
return MPP_OK;
}
int os_allocator_alloc(void *ctx, MppBufferData *data, size_t size)
{
allocator_impl *p = NULL;
if (NULL == ctx) {
mpp_err("os_allocator_alloc Linux found NULL context input\n");
return MPP_ERR_NULL_PTR;
}
p = (allocator_impl *)ctx;
return os_malloc(&data->ptr, p->alignment, size);
}
void os_allocator_free(void *ctx, MppBufferData *data)
{
(void) ctx;
os_free(data->ptr);
}
void os_allocator_close(void *ctx)
{
if (ctx)
mpp_free(ctx);
else
mpp_err("os_allocator_close Linux found NULL context input\n");
}