27#define _XOPEN_SOURCE 600
51#define malloc AV_JOIN(MALLOC_PREFIX, malloc)
52#define memalign AV_JOIN(MALLOC_PREFIX, memalign)
53#define posix_memalign AV_JOIN(MALLOC_PREFIX, posix_memalign)
54#define realloc AV_JOIN(MALLOC_PREFIX, realloc)
55#define free AV_JOIN(MALLOC_PREFIX, free)
57void *malloc(
size_t size);
59int posix_memalign(
void **ptr,
size_t align,
size_t size);
60void *realloc(
void *ptr,
size_t size);
65#define ALIGN (HAVE_SIMD_ALIGN_64 ? 64 : (HAVE_SIMD_ALIGN_32 ? 32 : 16))
67#define FF_MEMORY_POISON 0x2a
84#if (!defined(__INTEL_COMPILER) && AV_GCC_VERSION_AT_LEAST(5,1)) || AV_HAS_BUILTIN(__builtin_mul_overflow)
85 if (__builtin_mul_overflow(
a,
b, &t))
91 if ((
a |
b) >= ((
size_t)1 << (
sizeof(
size_t) * 4)) &&
a && t /
a !=
b)
105#if HAVE_POSIX_MEMALIGN
109#elif HAVE_ALIGNED_MALLOC
148#if CONFIG_MEMORY_POISONING
161#if HAVE_ALIGNED_MALLOC
166#if CONFIG_MEMORY_POISONING
197 memcpy(&
val, ptr,
sizeof(
val));
205 memcpy(ptr, &
val,
sizeof(
val));
229 memcpy(&
val, ptr,
sizeof(
val));
231 memcpy(ptr, &
val,
sizeof(
val));
240#if HAVE_ALIGNED_MALLOC
260 memset(ptr, 0,
size);
276 size_t len = strlen(
s) + 1;
289 const char *end = memchr(
s, 0,
len);
308 memcpy(ptr, p,
size);
316 memcpy(&
tab, tab_ptr,
sizeof(
tab));
320 memcpy(tab_ptr, &
tab,
sizeof(
tab));
330 memcpy(&
tab, tab_ptr,
sizeof(
tab));
334 memcpy(tab_ptr, &
tab,
sizeof(
tab));
342 const uint8_t *elem_data)
344 uint8_t *tab_elem_data =
NULL;
347 tab_elem_data = (uint8_t *)*tab_ptr + (*nb_ptr) * elem_size;
349 memcpy(tab_elem_data, elem_data, elem_size);
350 else if (CONFIG_MEMORY_POISONING)
356 return tab_elem_data;
381 uint32_t
a = v << 8 | v >> 16;
382 uint32_t
b = v << 16 | v >> 8;
383 uint32_t
c = v << 24 | v;
386 uint32_t
a = v | v << 24;
387 uint32_t
b = v >> 8 | v << 16;
388 uint32_t
c = v >> 16 | v << 8;
422 uint64_t v2= v + ((uint64_t)v<<32);
447 const uint8_t *
src = &
dst[-back];
453 }
else if (back == 2) {
455 }
else if (back == 3) {
457 }
else if (back == 4) {
462 while (cnt > blocklen) {
463 memcpy(
dst,
src, blocklen);
499 if (min_size <= *
size)
504 max_size =
FFMIN(max_size, UINT_MAX);
506 if (min_size > max_size) {
511 min_size =
FFMIN(max_size,
FFMAX(min_size + min_size / 16 + 32, min_size));
525static inline void fast_malloc(
void *ptr,
unsigned int *
size,
size_t min_size,
int zero_realloc)
530 memcpy(&
val, ptr,
sizeof(
val));
531 if (min_size <= *
size) {
538 max_size =
FFMIN(max_size, UINT_MAX);
540 if (min_size > max_size) {
545 min_size =
FFMIN(max_size,
FFMAX(min_size + min_size / 16 + 32, min_size));
548 memcpy(ptr, &
val,
sizeof(
val));
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static double val(void *priv, double ch)
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static const uint8_t *BS_FUNC align(BSCTX *bc)
Skip bits to a byte boundary.
#define atomic_load_explicit(object, order)
#define atomic_store_explicit(object, desired, order)
#define FF_DYNARRAY_ADD(av_size_max, av_elt_size, av_array, av_size, av_success, av_failure)
Add an element to a dynamic array.
void * av_dynarray2_add(void **tab_ptr, int *nb_ptr, size_t elem_size, const uint8_t *elem_data)
Add an element of size elem_size to a dynamic array.
void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem)
Add the pointer to an element to a dynamic array.
int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem)
Add an element to a dynamic array.
void av_fast_mallocz(void *ptr, unsigned int *size, size_t min_size)
Allocate and clear a buffer, reusing the given one if large enough.
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given buffer if it is not large enough, otherwise do nothing.
char * av_strndup(const char *s, size_t len)
Duplicate a substring of a string.
void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size)
Allocate a buffer, reusing the given one if large enough.
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
Overlapping memcpy() implementation.
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
void * av_memdup(const void *p, size_t size)
Duplicate a buffer with av_malloc().
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
Allocate, reallocate an array through a pointer to a pointer.
void av_max_alloc(size_t max)
Set the maximum size that may be allocated in one block.
int av_size_mult(size_t a, size_t b, size_t *r)
Multiply two size_t values checking for overflow.
Macro definitions for various function/variable attributes.
common internal API header
Utility Preprocessor macros.
static atomic_size_t max_alloc_size
static void fill32(uint8_t *dst, int len)
static int size_mult(size_t a, size_t b, size_t *r)
static void fill16(uint8_t *dst, int len)
void * av_calloc(size_t nmemb, size_t size)
static void fill24(uint8_t *dst, int len)
static void fast_malloc(void *ptr, unsigned int *size, size_t min_size, int zero_realloc)
Memory handling functions.
#define av_malloc_array(a, b)
#define av_realloc_f(p, o, n)
static const struct twinvq_data tab