mem.h 4.66 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * 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
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
22
 * @file
23
 * memory handling functions
24 25
 */

26 27
#ifndef AVUTIL_MEM_H
#define AVUTIL_MEM_H
28

29
#include "attributes.h"
30
#include "avutil.h"
31

32
#if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1110 || defined(__SUNPRO_C)
33
    #define DECLARE_ALIGNED(n,t,v)      t __attribute__ ((aligned (n))) v
34
    #define DECLARE_ASM_CONST(n,t,v)    const t __attribute__ ((aligned (n))) v
35 36 37 38 39 40 41
#elif defined(__TI_COMPILER_VERSION__)
    #define DECLARE_ALIGNED(n,t,v)                      \
        AV_PRAGMA(DATA_ALIGN(v,n))                      \
        t __attribute__((aligned(n))) v
    #define DECLARE_ASM_CONST(n,t,v)                    \
        AV_PRAGMA(DATA_ALIGN(v,n))                      \
        static const t __attribute__((aligned(n))) v
42
#elif defined(__GNUC__)
43
    #define DECLARE_ALIGNED(n,t,v)      t __attribute__ ((aligned (n))) v
44
    #define DECLARE_ASM_CONST(n,t,v)    static const t av_used __attribute__ ((aligned (n))) v
45 46 47 48 49 50 51 52
#elif defined(_MSC_VER)
    #define DECLARE_ALIGNED(n,t,v)      __declspec(align(n)) t v
    #define DECLARE_ASM_CONST(n,t,v)    __declspec(align(n)) static const t v
#else
    #define DECLARE_ALIGNED(n,t,v)      t v
    #define DECLARE_ASM_CONST(n,t,v)    static const t v
#endif

53
#if AV_GCC_VERSION_AT_LEAST(3,1)
54 55 56 57 58
    #define av_malloc_attrib __attribute__((__malloc__))
#else
    #define av_malloc_attrib
#endif

59
#if AV_GCC_VERSION_AT_LEAST(4,3)
60 61 62 63 64
    #define av_alloc_size(n) __attribute__((alloc_size(n)))
#else
    #define av_alloc_size(n)
#endif

65
/**
66
 * Allocate a block of size bytes with alignment suitable for all
67 68
 * memory accesses (including vectors if available on the CPU).
 * @param size Size in bytes for the memory block to be allocated.
69 70
 * @return Pointer to the allocated block, NULL if the block cannot
 * be allocated.
71
 * @see av_mallocz()
72
 */
73
void *av_malloc(size_t size) av_malloc_attrib av_alloc_size(1);
74 75

/**
76 77 78
 * Allocate or reallocate a block of memory.
 * If ptr is NULL and size > 0, allocate a new block. If
 * size is zero, free the memory block pointed to by ptr.
79 80
 * @param ptr Pointer to a memory block already allocated with
 * av_malloc(z)() or av_realloc() or NULL.
81 82
 * @param size Size in bytes for the memory block to be allocated or
 * reallocated.
83 84
 * @return Pointer to a newly reallocated block or NULL if the block
 * cannot be reallocated or the function is used to free the memory block.
85
 * @see av_fast_realloc()
86
 */
87
void *av_realloc(void *ptr, size_t size) av_alloc_size(2);
88 89

/**
90
 * Free a memory block which has been allocated with av_malloc(z)() or
91 92
 * av_realloc().
 * @param ptr Pointer to the memory block which should be freed.
93 94
 * @note ptr = NULL is explicitly allowed.
 * @note It is recommended that you use av_freep() instead.
95
 * @see av_freep()
96 97 98
 */
void av_free(void *ptr);

99
/**
100
 * Allocate a block of size bytes with alignment suitable for all
101
 * memory accesses (including vectors if available on the CPU) and
102
 * zero all the bytes of the block.
103
 * @param size Size in bytes for the memory block to be allocated.
104
 * @return Pointer to the allocated block, NULL if it cannot be allocated.
105 106
 * @see av_malloc()
 */
107
void *av_mallocz(size_t size) av_malloc_attrib av_alloc_size(1);
108 109

/**
110
 * Duplicate the string s.
111
 * @param s string to be duplicated
112
 * @return Pointer to a newly allocated string containing a
113
 * copy of s or NULL if the string cannot be allocated.
114
 */
115
char *av_strdup(const char *s) av_malloc_attrib;
116 117

/**
118
 * Free a memory block which has been allocated with av_malloc(z)() or
119
 * av_realloc() and set the pointer pointing to it to NULL.
120 121 122
 * @param ptr Pointer to the pointer to the memory block which should
 * be freed.
 * @see av_free()
123 124 125
 */
void av_freep(void *ptr);

126 127 128 129 130 131 132 133 134
/**
 * Add an element to a dynamic array.
 *
 * @param tab_ptr Pointer to the array.
 * @param nb_ptr  Pointer to the number of elements in the array.
 * @param elem    Element to be added.
 */
void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem);

135
#endif /* AVUTIL_MEM_H */