mem.h
上传用户:zmz135
上传日期:2014-03-13
资源大小:1366k
文件大小:2k
源码类别:

Windows编程

开发平台:

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 AV_MEM_H
  25. #define AV_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.  * Memory allocation of size byte with alignment suitable for all
  33.  * memory accesses (including vectors if available on the
  34.  * CPU). av_malloc(0) must return a non NULL pointer.
  35.  */
  36. void *av_malloc(unsigned int size);
  37. /**
  38.  * av_realloc semantics (same as glibc): if ptr is NULL and size > 0,
  39.  * identical to malloc(size). If size is zero, it is identical to
  40.  * free(ptr) and NULL is returned.
  41.  */
  42. void *av_realloc(void *ptr, unsigned int size);
  43. /**
  44.  * Free memory which has been allocated with av_malloc(z)() or av_realloc().
  45.  * NOTE: ptr = NULL is explicetly allowed
  46.  * Note2: it is recommended that you use av_freep() instead
  47.  */
  48. void av_free(void *ptr);
  49. void *av_mallocz(unsigned int size);
  50. char *av_strdup(const char *s);
  51. /**
  52.  * Frees memory and sets the pointer to NULL.
  53.  * @param ptr pointer to the pointer which should be freed
  54.  */
  55. void av_freep(void *ptr);
  56. #endif /* AV_MEM_H */