2002-06-11 13:41:01 +00:00
|
|
|
/*
|
2006-07-19 07:28:58 +00:00
|
|
|
* default memory allocator for libavutil
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2002 Fabrice Bellard
|
2002-06-11 13:41:01 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-06-11 13:41:01 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-06-11 13:41:01 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-06-11 13:41:01 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-06-11 13:41:01 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-03-06 11:32:04 +00:00
|
|
|
/**
|
2010-04-20 14:45:34 +00:00
|
|
|
* @file
|
2009-01-28 00:16:05 +00:00
|
|
|
* default memory allocator for libavutil
|
2003-03-06 11:32:04 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2011-05-12 13:11:27 +00:00
|
|
|
#define _XOPEN_SOURCE 600
|
|
|
|
|
2009-01-24 14:55:30 +00:00
|
|
|
#include "config.h"
|
2003-01-23 23:03:09 +00:00
|
|
|
|
2009-01-24 14:55:30 +00:00
|
|
|
#include <limits.h>
|
2009-01-07 23:36:34 +00:00
|
|
|
#include <stdlib.h>
|
2009-01-24 14:55:30 +00:00
|
|
|
#include <string.h>
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_MALLOC_H
|
2002-06-11 13:41:01 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
|
|
|
|
2010-01-28 13:06:31 +00:00
|
|
|
#include "avutil.h"
|
2009-01-25 22:40:43 +00:00
|
|
|
#include "mem.h"
|
|
|
|
|
2009-01-28 00:16:05 +00:00
|
|
|
/* here we can use OS-dependent allocation functions */
|
2009-01-25 22:59:05 +00:00
|
|
|
#undef free
|
|
|
|
#undef malloc
|
|
|
|
#undef realloc
|
|
|
|
|
2010-01-28 13:06:31 +00:00
|
|
|
#ifdef MALLOC_PREFIX
|
|
|
|
|
|
|
|
#define malloc AV_JOIN(MALLOC_PREFIX, malloc)
|
|
|
|
#define memalign AV_JOIN(MALLOC_PREFIX, memalign)
|
|
|
|
#define posix_memalign AV_JOIN(MALLOC_PREFIX, posix_memalign)
|
|
|
|
#define realloc AV_JOIN(MALLOC_PREFIX, realloc)
|
|
|
|
#define free AV_JOIN(MALLOC_PREFIX, free)
|
|
|
|
|
|
|
|
void *malloc(size_t size);
|
|
|
|
void *memalign(size_t align, size_t size);
|
|
|
|
int posix_memalign(void **ptr, size_t align, size_t size);
|
|
|
|
void *realloc(void *ptr, size_t size);
|
|
|
|
void free(void *ptr);
|
|
|
|
|
|
|
|
#endif /* MALLOC_PREFIX */
|
|
|
|
|
2011-05-10 01:15:42 +00:00
|
|
|
#define ALIGN (HAVE_AVX ? 32 : 16)
|
|
|
|
|
2012-04-15 20:35:19 +00:00
|
|
|
/* NOTE: if you want to override these functions with your own
|
|
|
|
* implementations (not recommended) you have to link libav* as
|
|
|
|
* dynamic libraries and remove -Wl,-Bsymbolic from the linker flags.
|
|
|
|
* Note that this will cost performance. */
|
2002-06-11 13:41:01 +00:00
|
|
|
|
2011-12-25 17:43:58 +00:00
|
|
|
static size_t max_alloc_size= INT_MAX;
|
|
|
|
|
|
|
|
void av_max_alloc(size_t max){
|
|
|
|
max_alloc_size = max;
|
|
|
|
}
|
2011-05-18 21:59:38 +00:00
|
|
|
|
2011-04-12 19:17:26 +00:00
|
|
|
void *av_malloc(size_t size)
|
2002-06-11 13:41:01 +00:00
|
|
|
{
|
2009-01-07 23:36:34 +00:00
|
|
|
void *ptr = NULL;
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MEMALIGN_HACK
|
2006-01-30 22:59:09 +00:00
|
|
|
long diff;
|
2005-02-24 19:08:50 +00:00
|
|
|
#endif
|
2005-01-12 00:16:25 +00:00
|
|
|
|
2006-06-30 02:47:36 +00:00
|
|
|
/* let's disallow possible ambiguous cases */
|
2011-12-25 17:43:58 +00:00
|
|
|
if (size > (max_alloc_size-32))
|
2005-01-12 00:16:25 +00:00
|
|
|
return NULL;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MEMALIGN_HACK
|
2011-05-10 01:15:42 +00:00
|
|
|
ptr = malloc(size+ALIGN);
|
2006-06-30 08:00:01 +00:00
|
|
|
if(!ptr)
|
|
|
|
return ptr;
|
2011-05-10 01:15:42 +00:00
|
|
|
diff= ((-(long)ptr - 1)&(ALIGN-1)) + 1;
|
2008-02-14 08:16:07 +00:00
|
|
|
ptr = (char*)ptr + diff;
|
2004-06-06 03:45:53 +00:00
|
|
|
((char*)ptr)[-1]= diff;
|
2009-01-13 23:44:16 +00:00
|
|
|
#elif HAVE_POSIX_MEMALIGN
|
2011-12-11 00:56:48 +00:00
|
|
|
if (size) //OS X on SDK 10.6 has a broken posix_memalign implementation
|
2011-05-10 01:15:42 +00:00
|
|
|
if (posix_memalign(&ptr,ALIGN,size))
|
2009-02-21 20:38:27 +00:00
|
|
|
ptr = NULL;
|
2012-06-18 13:37:02 +00:00
|
|
|
#elif HAVE_ALIGNED_MALLOC
|
2012-06-19 18:52:00 +00:00
|
|
|
ptr = _aligned_malloc(size, ALIGN);
|
2009-01-13 23:44:16 +00:00
|
|
|
#elif HAVE_MEMALIGN
|
2011-05-10 01:15:42 +00:00
|
|
|
ptr = memalign(ALIGN,size);
|
2005-12-17 18:14:38 +00:00
|
|
|
/* Why 64?
|
2002-06-11 13:41:01 +00:00
|
|
|
Indeed, we should align it:
|
|
|
|
on 4 for 386
|
|
|
|
on 16 for 486
|
2009-01-28 00:16:05 +00:00
|
|
|
on 32 for 586, PPro - K6-III
|
2005-12-22 01:10:11 +00:00
|
|
|
on 64 for K7 (maybe for P3 too).
|
2002-06-11 13:41:01 +00:00
|
|
|
Because L1 and L2 caches are aligned on those values.
|
|
|
|
But I don't want to code such logic here!
|
|
|
|
*/
|
2011-04-23 17:24:31 +00:00
|
|
|
/* Why 32?
|
|
|
|
For AVX ASM. SSE / NEON needs only 16.
|
2008-03-12 23:58:46 +00:00
|
|
|
Why not larger? Because I did not see a difference in benchmarks ...
|
2002-09-15 10:02:15 +00:00
|
|
|
*/
|
2009-01-28 00:16:05 +00:00
|
|
|
/* benchmarks with P3
|
2005-12-22 01:10:11 +00:00
|
|
|
memalign(64)+1 3071,3051,3032
|
|
|
|
memalign(64)+2 3051,3032,3041
|
|
|
|
memalign(64)+4 2911,2896,2915
|
|
|
|
memalign(64)+8 2545,2554,2550
|
|
|
|
memalign(64)+16 2543,2572,2563
|
|
|
|
memalign(64)+32 2546,2545,2571
|
|
|
|
memalign(64)+64 2570,2533,2558
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2009-01-28 00:16:05 +00:00
|
|
|
BTW, malloc seems to do 8-byte alignment by default here.
|
2002-09-15 10:02:15 +00:00
|
|
|
*/
|
2002-06-11 13:41:01 +00:00
|
|
|
#else
|
|
|
|
ptr = malloc(size);
|
|
|
|
#endif
|
2012-07-02 17:31:35 +00:00
|
|
|
if(!ptr && !size) {
|
|
|
|
size = 1;
|
2011-05-07 13:28:39 +00:00
|
|
|
ptr= av_malloc(1);
|
2012-07-02 17:31:35 +00:00
|
|
|
}
|
|
|
|
#if CONFIG_MEMORY_POISONING
|
|
|
|
if (ptr)
|
|
|
|
memset(ptr, 0x2a, size);
|
|
|
|
#endif
|
2002-06-11 13:41:01 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2011-04-12 19:17:26 +00:00
|
|
|
void *av_realloc(void *ptr, size_t size)
|
2003-01-23 23:03:09 +00:00
|
|
|
{
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MEMALIGN_HACK
|
2006-08-17 08:18:48 +00:00
|
|
|
int diff;
|
|
|
|
#endif
|
2005-02-24 19:08:50 +00:00
|
|
|
|
2006-06-30 02:47:36 +00:00
|
|
|
/* let's disallow possible ambiguous cases */
|
2011-12-25 17:43:58 +00:00
|
|
|
if (size > (max_alloc_size-32))
|
2005-01-12 00:16:25 +00:00
|
|
|
return NULL;
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MEMALIGN_HACK
|
2006-08-17 08:18:48 +00:00
|
|
|
//FIXME this isn't aligned correctly, though it probably isn't needed
|
|
|
|
if(!ptr) return av_malloc(size);
|
|
|
|
diff= ((char*)ptr)[-1];
|
2011-10-11 20:03:19 +00:00
|
|
|
ptr= realloc((char*)ptr - diff, size + diff);
|
|
|
|
if(ptr) ptr = (char*)ptr + diff;
|
|
|
|
return ptr;
|
2012-06-18 13:37:02 +00:00
|
|
|
#elif HAVE_ALIGNED_MALLOC
|
2012-06-19 18:52:00 +00:00
|
|
|
return _aligned_realloc(ptr, size + !size, ALIGN);
|
2006-08-17 08:18:48 +00:00
|
|
|
#else
|
2011-05-07 13:28:07 +00:00
|
|
|
return realloc(ptr, size + !size);
|
2004-06-06 03:45:53 +00:00
|
|
|
#endif
|
2003-01-21 21:30:48 +00:00
|
|
|
}
|
|
|
|
|
2011-03-20 18:39:20 +00:00
|
|
|
void *av_realloc_f(void *ptr, size_t nelem, size_t elsize)
|
|
|
|
{
|
|
|
|
size_t size;
|
|
|
|
void *r;
|
|
|
|
|
|
|
|
if (av_size_mult(elsize, nelem, &size)) {
|
|
|
|
av_free(ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
r = av_realloc(ptr, size);
|
|
|
|
if (!r && size)
|
|
|
|
av_free(ptr);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2002-06-11 13:41:01 +00:00
|
|
|
void av_free(void *ptr)
|
|
|
|
{
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MEMALIGN_HACK
|
2011-02-03 00:40:35 +00:00
|
|
|
if (ptr)
|
2008-02-14 08:16:07 +00:00
|
|
|
free((char*)ptr - ((char*)ptr)[-1]);
|
2012-06-18 13:37:02 +00:00
|
|
|
#elif HAVE_ALIGNED_MALLOC
|
|
|
|
_aligned_free(ptr);
|
2004-06-06 03:45:53 +00:00
|
|
|
#else
|
2011-02-03 00:40:35 +00:00
|
|
|
free(ptr);
|
2004-06-06 03:45:53 +00:00
|
|
|
#endif
|
2002-06-11 13:41:01 +00:00
|
|
|
}
|
|
|
|
|
2006-09-25 15:23:40 +00:00
|
|
|
void av_freep(void *arg)
|
|
|
|
{
|
|
|
|
void **ptr= (void**)arg;
|
|
|
|
av_free(*ptr);
|
|
|
|
*ptr = NULL;
|
|
|
|
}
|
|
|
|
|
2011-04-12 19:17:26 +00:00
|
|
|
void *av_mallocz(size_t size)
|
2006-09-25 15:23:40 +00:00
|
|
|
{
|
2008-04-03 19:18:14 +00:00
|
|
|
void *ptr = av_malloc(size);
|
2006-09-25 15:23:40 +00:00
|
|
|
if (ptr)
|
|
|
|
memset(ptr, 0, size);
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2011-09-24 16:39:13 +00:00
|
|
|
void *av_calloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
if (size <= 0 || nmemb >= INT_MAX / size)
|
|
|
|
return NULL;
|
|
|
|
return av_mallocz(nmemb * size);
|
|
|
|
}
|
|
|
|
|
2006-09-25 15:23:40 +00:00
|
|
|
char *av_strdup(const char *s)
|
|
|
|
{
|
2008-05-23 12:37:32 +00:00
|
|
|
char *ptr= NULL;
|
|
|
|
if(s){
|
2008-05-23 12:37:52 +00:00
|
|
|
int len = strlen(s) + 1;
|
|
|
|
ptr = av_malloc(len);
|
|
|
|
if (ptr)
|
|
|
|
memcpy(ptr, s, len);
|
2008-05-23 12:37:32 +00:00
|
|
|
}
|
2006-09-25 15:23:40 +00:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2011-04-29 15:33:38 +00:00
|
|
|
/* add one element to a dynamic array */
|
|
|
|
void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem)
|
|
|
|
{
|
|
|
|
/* see similar ffmpeg.c:grow_array() */
|
|
|
|
int nb, nb_alloc;
|
|
|
|
intptr_t *tab;
|
|
|
|
|
|
|
|
nb = *nb_ptr;
|
|
|
|
tab = *(intptr_t**)tab_ptr;
|
|
|
|
if ((nb & (nb - 1)) == 0) {
|
|
|
|
if (nb == 0)
|
|
|
|
nb_alloc = 1;
|
|
|
|
else
|
|
|
|
nb_alloc = nb * 2;
|
|
|
|
tab = av_realloc(tab, nb_alloc * sizeof(intptr_t));
|
|
|
|
*(intptr_t**)tab_ptr = tab;
|
|
|
|
}
|
|
|
|
tab[nb++] = (intptr_t)elem;
|
|
|
|
*nb_ptr = nb;
|
|
|
|
}
|
2012-01-28 23:34:59 +00:00
|
|
|
|