You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

308 lines
11KB

  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  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.
  10. *
  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.
  15. *
  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
  19. */
  20. /**
  21. * @file
  22. * memory handling functions
  23. */
  24. #ifndef AVUTIL_MEM_H
  25. #define AVUTIL_MEM_H
  26. #include <limits.h>
  27. #include <stdint.h>
  28. #include "attributes.h"
  29. #include "error.h"
  30. #include "avutil.h"
  31. /**
  32. * @addtogroup lavu_mem
  33. * @{
  34. */
  35. #if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1110 || defined(__SUNPRO_C)
  36. #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
  37. #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
  38. #elif defined(__TI_COMPILER_VERSION__)
  39. #define DECLARE_ALIGNED(n,t,v) \
  40. AV_PRAGMA(DATA_ALIGN(v,n)) \
  41. t __attribute__((aligned(n))) v
  42. #define DECLARE_ASM_CONST(n,t,v) \
  43. AV_PRAGMA(DATA_ALIGN(v,n)) \
  44. static const t __attribute__((aligned(n))) v
  45. #elif defined(__GNUC__)
  46. #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
  47. #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v
  48. #elif defined(_MSC_VER)
  49. #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
  50. #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
  51. #else
  52. #define DECLARE_ALIGNED(n,t,v) t v
  53. #define DECLARE_ASM_CONST(n,t,v) static const t v
  54. #endif
  55. #if AV_GCC_VERSION_AT_LEAST(3,1)
  56. #define av_malloc_attrib __attribute__((__malloc__))
  57. #else
  58. #define av_malloc_attrib
  59. #endif
  60. #if AV_GCC_VERSION_AT_LEAST(4,3)
  61. #define av_alloc_size(...) __attribute__((alloc_size(__VA_ARGS__)))
  62. #else
  63. #define av_alloc_size(...)
  64. #endif
  65. /**
  66. * Allocate a block of size bytes with alignment suitable for all
  67. * memory accesses (including vectors if available on the CPU).
  68. * @param size Size in bytes for the memory block to be allocated.
  69. * @return Pointer to the allocated block, NULL if the block cannot
  70. * be allocated.
  71. * @see av_mallocz()
  72. */
  73. void *av_malloc(size_t size) av_malloc_attrib av_alloc_size(1);
  74. /**
  75. * Helper function to allocate a block of size * nmemb bytes with
  76. * using av_malloc()
  77. * @param nmemb Number of elements
  78. * @param size Size of the single element
  79. * @return Pointer to the allocated block, NULL if the block cannot
  80. * be allocated.
  81. * @see av_malloc()
  82. */
  83. av_alloc_size(1, 2) static inline void *av_malloc_array(size_t nmemb, size_t size)
  84. {
  85. if (size <= 0 || nmemb >= INT_MAX / size)
  86. return NULL;
  87. return av_malloc(nmemb * size);
  88. }
  89. /**
  90. * Allocate or reallocate a block of memory.
  91. * If ptr is NULL and size > 0, allocate a new block. If
  92. * size is zero, free the memory block pointed to by ptr.
  93. * @param ptr Pointer to a memory block already allocated with
  94. * av_malloc(z)() or av_realloc() or NULL.
  95. * @param size Size in bytes for the memory block to be allocated or
  96. * reallocated.
  97. * @return Pointer to a newly reallocated block or NULL if the block
  98. * cannot be reallocated or the function is used to free the memory block.
  99. * @see av_fast_realloc()
  100. */
  101. void *av_realloc(void *ptr, size_t size) av_alloc_size(2);
  102. /**
  103. * Allocate or reallocate a block of memory.
  104. * This function does the same thing as av_realloc, except:
  105. * - It takes two arguments and checks the result of the multiplication for
  106. * integer overflow.
  107. * - It frees the input block in case of failure, thus avoiding the memory
  108. * leak with the classic "buf = realloc(buf); if (!buf) return -1;".
  109. */
  110. void *av_realloc_f(void *ptr, size_t nelem, size_t elsize);
  111. /**
  112. * Allocate or reallocate an array.
  113. * If ptr is NULL and nmemb > 0, allocate a new block. If
  114. * nmemb is zero, free the memory block pointed to by ptr.
  115. * @param ptr Pointer to a memory block already allocated with
  116. * av_malloc(z)() or av_realloc() or NULL.
  117. * @param nmemb Number of elements
  118. * @param size Size of the single element
  119. * @return Pointer to a newly reallocated block or NULL if the block
  120. * cannot be reallocated or the function is used to free the memory block.
  121. */
  122. av_alloc_size(2, 3) void *av_realloc_array(void *ptr, size_t nmemb, size_t size);
  123. /**
  124. * Allocate or reallocate an array.
  125. * If *ptr is NULL and nmemb > 0, allocate a new block. If
  126. * nmemb is zero, free the memory block pointed to by ptr.
  127. * @param ptr Pointer to a pointer to a memory block already allocated
  128. * with av_malloc(z)() or av_realloc(), or pointer to a pointer to NULL.
  129. * The pointer is updated on success, or freed on failure.
  130. * @param nmemb Number of elements
  131. * @param size Size of the single element
  132. * @return Zero on success, an AVERROR error code on failure.
  133. */
  134. av_alloc_size(2, 3) int av_reallocp_array(void *ptr, size_t nmemb, size_t size);
  135. /**
  136. * Free a memory block which has been allocated with av_malloc(z)() or
  137. * av_realloc().
  138. * @param ptr Pointer to the memory block which should be freed.
  139. * @note ptr = NULL is explicitly allowed.
  140. * @note It is recommended that you use av_freep() instead.
  141. * @see av_freep()
  142. */
  143. void av_free(void *ptr);
  144. /**
  145. * Allocate a block of size bytes with alignment suitable for all
  146. * memory accesses (including vectors if available on the CPU) and
  147. * zero all the bytes of the block.
  148. * @param size Size in bytes for the memory block to be allocated.
  149. * @return Pointer to the allocated block, NULL if it cannot be allocated.
  150. * @see av_malloc()
  151. */
  152. void *av_mallocz(size_t size) av_malloc_attrib av_alloc_size(1);
  153. /**
  154. * Allocate a block of nmemb * size bytes with alignment suitable for all
  155. * memory accesses (including vectors if available on the CPU) and
  156. * zero all the bytes of the block.
  157. * The allocation will fail if nmemb * size is greater than or equal
  158. * to INT_MAX.
  159. * @param nmemb
  160. * @param size
  161. * @return Pointer to the allocated block, NULL if it cannot be allocated.
  162. */
  163. void *av_calloc(size_t nmemb, size_t size) av_malloc_attrib;
  164. /**
  165. * Helper function to allocate a block of size * nmemb bytes with
  166. * using av_mallocz()
  167. * @param nmemb Number of elements
  168. * @param size Size of the single element
  169. * @return Pointer to the allocated block, NULL if the block cannot
  170. * be allocated.
  171. * @see av_mallocz()
  172. * @see av_malloc_array()
  173. */
  174. av_alloc_size(1, 2) static inline void *av_mallocz_array(size_t nmemb, size_t size)
  175. {
  176. if (size <= 0 || nmemb >= INT_MAX / size)
  177. return NULL;
  178. return av_mallocz(nmemb * size);
  179. }
  180. /**
  181. * Duplicate the string s.
  182. * @param s string to be duplicated
  183. * @return Pointer to a newly allocated string containing a
  184. * copy of s or NULL if the string cannot be allocated.
  185. */
  186. char *av_strdup(const char *s) av_malloc_attrib;
  187. /**
  188. * Duplicate the buffer p.
  189. * @param p buffer to be duplicated
  190. * @return Pointer to a newly allocated buffer containing a
  191. * copy of p or NULL if the buffer cannot be allocated.
  192. */
  193. void *av_memdup(const void *p, size_t size);
  194. /**
  195. * Free a memory block which has been allocated with av_malloc(z)() or
  196. * av_realloc() and set the pointer pointing to it to NULL.
  197. * @param ptr Pointer to the pointer to the memory block which should
  198. * be freed.
  199. * @see av_free()
  200. */
  201. void av_freep(void *ptr);
  202. /**
  203. * Add an element to a dynamic array.
  204. *
  205. * The array to grow is supposed to be an array of pointers to
  206. * structures, and the element to add must be a pointer to an already
  207. * allocated structure.
  208. *
  209. * The array is reallocated when its size reaches powers of 2.
  210. * Therefore, the amortized cost of adding an element is constant.
  211. *
  212. * In case of success, the pointer to the array is updated in order to
  213. * point to the new grown array, and the number pointed to by nb_ptr
  214. * is incremented.
  215. * In case of failure, the array is freed, *tab_ptr is set to NULL and
  216. * *nb_ptr is set to 0.
  217. *
  218. * @param tab_ptr pointer to the array to grow
  219. * @param nb_ptr pointer to the number of elements in the array
  220. * @param elem element to add
  221. * @see av_dynarray2_add()
  222. */
  223. void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem);
  224. /**
  225. * Add an element of size elem_size to a dynamic array.
  226. *
  227. * The array is reallocated when its number of elements reaches powers of 2.
  228. * Therefore, the amortized cost of adding an element is constant.
  229. *
  230. * In case of success, the pointer to the array is updated in order to
  231. * point to the new grown array, and the number pointed to by nb_ptr
  232. * is incremented.
  233. * In case of failure, the array is freed, *tab_ptr is set to NULL and
  234. * *nb_ptr is set to 0.
  235. *
  236. * @param tab_ptr pointer to the array to grow
  237. * @param nb_ptr pointer to the number of elements in the array
  238. * @param elem_size size in bytes of the elements in the array
  239. * @param elem_data pointer to the data of the element to add. If NULL, the space of
  240. * the new added element is not filled.
  241. * @return pointer to the data of the element to copy in the new allocated space.
  242. * If NULL, the new allocated space is left uninitialized."
  243. * @see av_dynarray_add()
  244. */
  245. void *av_dynarray2_add(void **tab_ptr, int *nb_ptr, size_t elem_size,
  246. const uint8_t *elem_data);
  247. /**
  248. * Multiply two size_t values checking for overflow.
  249. * @return 0 if success, AVERROR(EINVAL) if overflow.
  250. */
  251. static inline int av_size_mult(size_t a, size_t b, size_t *r)
  252. {
  253. size_t t = a * b;
  254. /* Hack inspired from glibc: only try the division if nelem and elsize
  255. * are both greater than sqrt(SIZE_MAX). */
  256. if ((a | b) >= ((size_t)1 << (sizeof(size_t) * 4)) && a && t / a != b)
  257. return AVERROR(EINVAL);
  258. *r = t;
  259. return 0;
  260. }
  261. /**
  262. * Set the maximum size that may me allocated in one block.
  263. */
  264. void av_max_alloc(size_t max);
  265. /**
  266. * @brief deliberately overlapping memcpy implementation
  267. * @param dst destination buffer
  268. * @param back how many bytes back we start (the initial size of the overlapping window), must be > 0
  269. * @param cnt number of bytes to copy, must be >= 0
  270. *
  271. * cnt > back is valid, this will copy the bytes we just copied,
  272. * thus creating a repeating pattern with a period length of back.
  273. */
  274. void av_memcpy_backptr(uint8_t *dst, int back, int cnt);
  275. /**
  276. * @}
  277. */
  278. #endif /* AVUTIL_MEM_H */