0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00
obs-studio/libobs/util/bmem.c

138 lines
3.0 KiB
C
Raw Normal View History

2013-10-01 04:37:13 +02:00
/******************************************************************************
Copyright (c) 2013 by Hugh Bailey <obs.jim@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
******************************************************************************/
#include <malloc.h>
#include <stdlib.h>
#include <string.h>
#include "base.h"
#include "bmem.h"
2013-10-01 16:24:59 +02:00
/*
* NOTE: totally jacked the mem alignment trick from ffmpeg, credit to them:
* http://www.ffmpeg.org/
*/
#define ALIGNMENT 16
#define ALIGNMENT_HACK 1
static void *a_malloc(size_t size)
2013-10-01 04:37:13 +02:00
{
2013-10-01 16:24:59 +02:00
#ifdef _WIN32
return _aligned_malloc(size, ALIGNMENT);
#else
void *ptr = NULL;
long diff;
ptr = malloc(size + ALIGNMENT);
diff = ((~(long)ptr) & (ALIGNMENT - 1)) + 1;
ptr = (char *)ptr + diff;
((char *)ptr)[-1] = (char)diff;
2013-10-01 04:37:13 +02:00
return ptr;
2013-10-01 16:24:59 +02:00
#endif
}
static void *a_realloc(void *ptr, size_t size)
{
#ifdef _WIN32
return _aligned_realloc(ptr, size, ALIGNMENT);
2013-10-01 04:37:13 +02:00
#else
2013-10-01 16:24:59 +02:00
long diff;
if (!ptr)
return a_malloc(size);
diff = ((char *)ptr)[-1];
ptr = realloc((char*)ptr - diff, size + diff);
if (ptr)
ptr = (char *)ptr + diff;
return ptr;
2013-10-01 04:37:13 +02:00
#endif
}
static void a_free(void *ptr)
{
2013-10-01 16:24:59 +02:00
#ifdef _WIN32
2013-10-01 04:37:13 +02:00
_aligned_free(ptr);
#else
2013-10-01 16:24:59 +02:00
if (ptr)
free((char *)ptr - ((char*)ptr)[-1]);
2013-10-01 04:37:13 +02:00
#endif
}
2013-10-01 16:24:59 +02:00
static struct base_allocator alloc = {a_malloc, a_realloc, a_free};
2013-10-01 04:37:13 +02:00
static size_t num_allocs = 0;
void base_set_allocator(struct base_allocator *defs)
{
memcpy(&alloc, defs, sizeof(struct base_allocator));
}
void *bmalloc(size_t size)
{
void *ptr = alloc.malloc(size);
if (!ptr && !size)
ptr = alloc.malloc(1);
if (!ptr)
bcrash("Out of memory while trying to allocate %lu bytes",
(unsigned long)size);
num_allocs++;
return ptr;
}
void *brealloc(void *ptr, size_t size)
{
if (!ptr)
num_allocs++;
ptr = alloc.realloc(ptr, size);
if (!ptr && !size)
ptr = alloc.realloc(ptr, 1);
if (!ptr)
bcrash("Out of memory while trying to allocate %lu bytes",
(unsigned long)size);
return ptr;
}
void bfree(void *ptr)
{
if (ptr)
num_allocs--;
alloc.free(ptr);
}
size_t bnum_allocs(void)
{
return num_allocs;
}
void *bmemdup(const void *ptr, size_t size)
{
void *out = bmalloc(size);
if (size)
memcpy(out, ptr, size);
return out;
}