54#if FF_API_DECLARE_ALIGNED
107#if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1110 || defined(__SUNPRO_C)
108 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
109 #define DECLARE_ASM_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
110 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
111#elif defined(__DJGPP__)
112 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (FFMIN(n, 16)))) v
113 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
114 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (FFMIN(n, 16)))) v
115#elif defined(__GNUC__) || defined(__clang__)
116 #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
117 #define DECLARE_ASM_ALIGNED(n,t,v) t av_used __attribute__ ((aligned (n))) v
118 #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v
119#elif defined(_MSC_VER)
120 #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
121 #define DECLARE_ASM_ALIGNED(n,t,v) __declspec(align(n)) t v
122 #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
124 #define DECLARE_ALIGNED(n,t,v) t v
125 #define DECLARE_ASM_ALIGNED(n,t,v) t v
126 #define DECLARE_ASM_CONST(n,t,v) static const t v
150#if AV_GCC_VERSION_AT_LEAST(3,1)
151 #define av_malloc_attrib __attribute__((__malloc__))
153 #define av_malloc_attrib
171#if AV_GCC_VERSION_AT_LEAST(4,3)
172 #define av_alloc_size(...) __attribute__((alloc_size(__VA_ARGS__)))
174 #define av_alloc_size(...)
242#if FF_API_AV_MALLOCZ_ARRAY
653 const uint8_t *elem_data);
Macro definitions for various function/variable attributes.
#define av_warn_unused_result
#define attribute_deprecated
Convenience header that includes libavutil's core.
#define av_malloc_attrib
Function attribute denoting a malloc-like function.
#define av_alloc_size(...)
Function attribute used on a function that allocates memory, whose size is given by the specified par...
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.
av_warn_unused_result 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_free(void *ptr)
Free a memory block which has been allocated with a function of av_malloc() or av_realloc() family.
void av_freep(void *ptr)
Free a memory block which has been allocated with a function of av_malloc() or av_realloc() family,...
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) av_malloc_attrib
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)
Allocate, reallocate, or free an array.
void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
Overlapping memcpy() implementation.
void * av_mallocz(size_t size) av_malloc_attrib
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
void * av_realloc(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory.
void * av_realloc_f(void *ptr, size_t nelem, size_t elsize)
Allocate, reallocate, or free a block of memory.
char * av_strdup(const char *s) av_malloc_attrib
Duplicate a string.
av_warn_unused_result 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().
attribute_deprecated void * av_mallocz_array(size_t nmemb, size_t size) av_malloc_attrib
void * av_malloc(size_t size) av_malloc_attrib
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
Allocate, reallocate an array through a pointer to a pointer.
void * av_calloc(size_t nmemb, size_t size) av_malloc_attrib
Allocate a memory block for an array with av_mallocz().
void * av_malloc_array(size_t nmemb, size_t size)
Allocate a memory block for an array with av_malloc().
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.