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.

98 lines
3.1KB

  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 mem.h
  22. * Memory handling functions.
  23. */
  24. #ifndef FFMPEG_MEM_H
  25. #define FFMPEG_MEM_H
  26. #ifdef __GNUC__
  27. #define DECLARE_ALIGNED(n,t,v) t v __attribute__ ((aligned (n)))
  28. #else
  29. #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
  30. #endif
  31. /**
  32. * Allocate a block of \p size bytes with alignment suitable for all
  33. * memory accesses (including vectors if available on the CPU).
  34. * @param size Size in bytes for the memory block to be allocated.
  35. * @return Pointer to the allocated block, NULL if it cannot allocate
  36. * it.
  37. * @see av_mallocz()
  38. */
  39. void *av_malloc(unsigned int size);
  40. /**
  41. * Allocate or reallocate a block of memory.
  42. * If \p ptr is NULL and \p size > 0, allocate a new block. If \p
  43. * size is zero, free the memory block pointed by \p ptr.
  44. * @param size Size in bytes for the memory block to be allocated or
  45. * reallocated.
  46. * @param ptr Pointer to a memory block already allocated with
  47. * av_malloc(z)() or av_realloc() or NULL.
  48. * @return Pointer to a newly reallocated block or NULL if it cannot
  49. * reallocate or the function is used to free the memory block.
  50. * @see av_fast_realloc()
  51. */
  52. void *av_realloc(void *ptr, unsigned int size);
  53. /**
  54. * Free a memory block which has been allocated with av_malloc(z)() or
  55. * av_realloc().
  56. * @param ptr Pointer to the memory block which should be freed.
  57. * @note ptr = NULL is explicitly allowed.
  58. * @note It is recommended that you use av_freep() instead.
  59. * @see av_freep()
  60. */
  61. void av_free(void *ptr);
  62. /**
  63. * Allocate a block of \p size bytes with alignment suitable for all
  64. * memory accesses (including vectors if available on the CPU) and
  65. * set to zeroes all the bytes of the block.
  66. * @param size Size in bytes for the memory block to be allocated.
  67. * @return Pointer to the allocated block, NULL if it cannot allocate
  68. * it.
  69. * @see av_malloc()
  70. */
  71. void *av_mallocz(unsigned int size);
  72. /**
  73. * Duplicate the string \p s.
  74. * @param s String to be duplicated.
  75. * @return Pointer to a newly allocated string containing a
  76. * copy of \p s or NULL if it cannot be allocated.
  77. */
  78. char *av_strdup(const char *s);
  79. /**
  80. * Free a memory block which has been allocated with av_malloc(z)() or
  81. * av_realloc() and set to NULL the pointer to it.
  82. * @param ptr Pointer to the pointer to the memory block which should
  83. * be freed.
  84. * @see av_free()
  85. */
  86. void av_freep(void *ptr);
  87. #endif /* FFMPEG_MEM_H */