19d15f0af35e829d4d49bdcfe31b6dbeeb8283bc
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 * Memory handling functions.
32 #if defined(__ICC) || defined(__SUNPRO_C)
33 #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
34 #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
35 #elif defined(__GNUC__)
36 #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
37 #define DECLARE_ASM_CONST(n,t,v) static const t v attribute_used __attribute__ ((aligned (n)))
38 #elif defined(_MSC_VER)
39 #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
40 #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
42 #error The asm code needs alignment, but we do not know how to do it for this compiler.
44 #define DECLARE_ALIGNED(n,t,v) t v
45 #define DECLARE_ASM_CONST(n,t,v) static const t v
48 #if AV_GCC_VERSION_AT_LEAST(3,1)
49 #define av_malloc_attrib __attribute__((__malloc__))
51 #define av_malloc_attrib
54 #if (!defined(__ICC) || __ICC > 1100) && AV_GCC_VERSION_AT_LEAST(4,3)
55 #define av_alloc_size(n) __attribute__((alloc_size(n)))
57 #define av_alloc_size(n)
61 * Allocate a block of \p size bytes with alignment suitable for all
62 * memory accesses (including vectors if available on the CPU).
63 * @param size Size in bytes for the memory block to be allocated.
64 * @return Pointer to the allocated block, NULL if it cannot allocate
68 void *av_malloc(unsigned int size
) av_malloc_attrib
av_alloc_size(1);
71 * Allocate or reallocate a block of memory.
72 * If \p ptr is NULL and \p size > 0, allocate a new block. If \p
73 * size is zero, free the memory block pointed by \p ptr.
74 * @param size Size in bytes for the memory block to be allocated or
76 * @param ptr Pointer to a memory block already allocated with
77 * av_malloc(z)() or av_realloc() or NULL.
78 * @return Pointer to a newly reallocated block or NULL if it cannot
79 * reallocate or the function is used to free the memory block.
80 * @see av_fast_realloc()
82 void *av_realloc(void *ptr
, unsigned int size
) av_alloc_size(2);
85 * Free a memory block which has been allocated with av_malloc(z)() or
87 * @param ptr Pointer to the memory block which should be freed.
88 * @note ptr = NULL is explicitly allowed.
89 * @note It is recommended that you use av_freep() instead.
92 void av_free(void *ptr
);
95 * Allocate a block of \p size bytes with alignment suitable for all
96 * memory accesses (including vectors if available on the CPU) and
97 * set to zeroes all the bytes of the block.
98 * @param size Size in bytes for the memory block to be allocated.
99 * @return Pointer to the allocated block, NULL if it cannot allocate
103 void *av_mallocz(unsigned int size
) av_malloc_attrib
av_alloc_size(1);
106 * Duplicate the string \p s.
107 * @param s String to be duplicated.
108 * @return Pointer to a newly allocated string containing a
109 * copy of \p s or NULL if it cannot be allocated.
111 char *av_strdup(const char *s
) av_malloc_attrib
;
114 * Free a memory block which has been allocated with av_malloc(z)() or
115 * av_realloc() and set to NULL the pointer to it.
116 * @param ptr Pointer to the pointer to the memory block which should
120 void av_freep(void *ptr
);
122 #endif /* AVUTIL_MEM_H */