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.

137 lines
4.4KB

  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; 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 "attributes.h"
  27. #include "avutil.h"
  28. /**
  29. * @addtogroup lavu_mem
  30. * @{
  31. */
  32. #if defined(__ICC) && _ICC < 1200 || 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. #elif defined(__TI_COMPILER_VERSION__)
  36. #define DECLARE_ALIGNED(n,t,v) \
  37. AV_PRAGMA(DATA_ALIGN(v,n)) \
  38. t __attribute__((aligned(n))) v
  39. #define DECLARE_ASM_CONST(n,t,v) \
  40. AV_PRAGMA(DATA_ALIGN(v,n)) \
  41. 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. #elif defined(_MSC_VER)
  46. #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
  47. #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
  48. #else
  49. #define DECLARE_ALIGNED(n,t,v) t v
  50. #define DECLARE_ASM_CONST(n,t,v) static const t v
  51. #endif
  52. #if AV_GCC_VERSION_AT_LEAST(3,1)
  53. #define av_malloc_attrib __attribute__((__malloc__))
  54. #else
  55. #define av_malloc_attrib
  56. #endif
  57. #if AV_GCC_VERSION_AT_LEAST(4,3)
  58. #define av_alloc_size(n) __attribute__((alloc_size(n)))
  59. #else
  60. #define av_alloc_size(n)
  61. #endif
  62. /**
  63. * Allocate a block of size bytes with alignment suitable for all
  64. * memory accesses (including vectors if available on the CPU).
  65. * @param size Size in bytes for the memory block to be allocated.
  66. * @return Pointer to the allocated block, NULL if the block cannot
  67. * be allocated.
  68. * @see av_mallocz()
  69. */
  70. void *av_malloc(size_t size) av_malloc_attrib av_alloc_size(1);
  71. /**
  72. * Allocate or reallocate a block of memory.
  73. * If ptr is NULL and size > 0, allocate a new block. If
  74. * size is zero, free the memory block pointed to by ptr.
  75. * @param ptr Pointer to a memory block already allocated with
  76. * av_malloc(z)() or av_realloc() or NULL.
  77. * @param size Size in bytes for the memory block to be allocated or
  78. * reallocated.
  79. * @return Pointer to a newly reallocated block or NULL if the block
  80. * cannot be reallocated or the function is used to free the memory block.
  81. * @see av_fast_realloc()
  82. */
  83. void *av_realloc(void *ptr, size_t size) av_alloc_size(2);
  84. /**
  85. * Free a memory block which has been allocated with av_malloc(z)() or
  86. * av_realloc().
  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.
  90. * @see av_freep()
  91. */
  92. void av_free(void *ptr);
  93. /**
  94. * Allocate a block of size bytes with alignment suitable for all
  95. * memory accesses (including vectors if available on the CPU) and
  96. * zero all the bytes of the block.
  97. * @param size Size in bytes for the memory block to be allocated.
  98. * @return Pointer to the allocated block, NULL if it cannot be allocated.
  99. * @see av_malloc()
  100. */
  101. void *av_mallocz(size_t size) av_malloc_attrib av_alloc_size(1);
  102. /**
  103. * Duplicate the string s.
  104. * @param s string to be duplicated
  105. * @return Pointer to a newly allocated string containing a
  106. * copy of s or NULL if the string cannot be allocated.
  107. */
  108. char *av_strdup(const char *s) av_malloc_attrib;
  109. /**
  110. * Free a memory block which has been allocated with av_malloc(z)() or
  111. * av_realloc() and set the pointer pointing to it to NULL.
  112. * @param ptr Pointer to the pointer to the memory block which should
  113. * be freed.
  114. * @see av_free()
  115. */
  116. void av_freep(void *ptr);
  117. /**
  118. * @}
  119. */
  120. #endif /* AVUTIL_MEM_H */