mem.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  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 __ICC
  27.     #define DECLARE_ALIGNED(n,t,v)      t v __attribute__ ((aligned (n)))
  28.     #define DECLARE_ASM_CONST(n,t,v)    const t __attribute__ ((aligned (n))) v
  29. #elif defined(__GNUC__)
  30.     #define DECLARE_ALIGNED(n,t,v)      t v __attribute__ ((aligned (n)))
  31.     #define DECLARE_ASM_CONST(n,t,v)    static const t v attribute_used __attribute__ ((aligned (n)))
  32. #elif defined(_MSC_VER)
  33.     #define DECLARE_ALIGNED(n,t,v)      __declspec(align(n)) t v
  34.     #define DECLARE_ASM_CONST(n,t,v)    __declspec(align(n)) static const t v
  35. #elif defined(HAVE_INLINE_ASM)
  36.     #error The asm code needs alignment, but we do not know how to do it for this compiler.
  37. #else
  38.     #define DECLARE_ALIGNED(n,t,v)      t v
  39.     #define DECLARE_ASM_CONST(n,t,v)    static const t v
  40. #endif
  41. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  42.     #define av_malloc_attrib __attribute__((__malloc__))
  43. #else
  44.     #define av_malloc_attrib
  45. #endif
  46. #if defined(__GNUC__) && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ > 2)
  47.     #define av_alloc_size(n) __attribute__((alloc_size(n)))
  48. #else
  49.     #define av_alloc_size(n)
  50. #endif
  51. /**
  52.  * Allocate a block of p size bytes with alignment suitable for all
  53.  * memory accesses (including vectors if available on the CPU).
  54.  * @param size Size in bytes for the memory block to be allocated.
  55.  * @return Pointer to the allocated block, NULL if it cannot allocate
  56.  * it.
  57.  * @see av_mallocz()
  58.  */
  59. void *av_malloc(unsigned int size) av_malloc_attrib av_alloc_size(1);
  60. /**
  61.  * Allocate or reallocate a block of memory.
  62.  * If p ptr is NULL and p size > 0, allocate a new block. If p
  63.  * size is zero, free the memory block pointed by p ptr.
  64.  * @param size Size in bytes for the memory block to be allocated or
  65.  * reallocated.
  66.  * @param ptr Pointer to a memory block already allocated with
  67.  * av_malloc(z)() or av_realloc() or NULL.
  68.  * @return Pointer to a newly reallocated block or NULL if it cannot
  69.  * reallocate or the function is used to free the memory block.
  70.  * @see av_fast_realloc()
  71.  */
  72. void *av_realloc(void *ptr, unsigned int size) av_alloc_size(2);
  73. /**
  74.  * Free a memory block which has been allocated with av_malloc(z)() or
  75.  * av_realloc().
  76.  * @param ptr Pointer to the memory block which should be freed.
  77.  * @note ptr = NULL is explicitly allowed.
  78.  * @note It is recommended that you use av_freep() instead.
  79.  * @see av_freep()
  80.  */
  81. void av_free(void *ptr);
  82. /**
  83.  * Allocate a block of p size bytes with alignment suitable for all
  84.  * memory accesses (including vectors if available on the CPU) and
  85.  * set to zeroes all the bytes of the block.
  86.  * @param size Size in bytes for the memory block to be allocated.
  87.  * @return Pointer to the allocated block, NULL if it cannot allocate
  88.  * it.
  89.  * @see av_malloc()
  90.  */
  91. void *av_mallocz(unsigned int size) av_malloc_attrib av_alloc_size(1);
  92. /**
  93.  * Duplicate the string p s.
  94.  * @param s String to be duplicated.
  95.  * @return Pointer to a newly allocated string containing a
  96.  * copy of p s or NULL if it cannot be allocated.
  97.  */
  98. char *av_strdup(const char *s) av_malloc_attrib;
  99. /**
  100.  * Free a memory block which has been allocated with av_malloc(z)() or
  101.  * av_realloc() and set to NULL the pointer to it.
  102.  * @param ptr Pointer to the pointer to the memory block which should
  103.  * be freed.
  104.  * @see av_free()
  105.  */
  106. void av_freep(void *ptr);
  107. #endif /* FFMPEG_MEM_H */