mem.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:3k
源码类别:

Audio

开发平台:

Visual C++

  1. /*
  2.  * default memory allocator for libavcodec
  3.  * Copyright (c) 2002 Fabrice Bellard.
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  */
  19.  
  20. /**
  21.  * @file mem.c
  22.  * default memory allocator for libavcodec.
  23.  */
  24.  
  25. #include "avcodec.h"
  26. /* here we can use OS dependant allocation functions */
  27. #undef malloc
  28. #undef free
  29. #undef realloc
  30. #ifdef HAVE_MALLOC_H
  31. #include <malloc.h>
  32. #endif
  33. /* you can redefine av_malloc and av_free in your project to use your
  34.    memory allocator. You do not need to suppress this file because the
  35.    linker will do it automatically */
  36. /** 
  37.  * Memory allocation of size byte with alignment suitable for all
  38.  * memory accesses (including vectors if available on the
  39.  * CPU). av_malloc(0) must return a non NULL pointer.
  40.  */
  41. void *av_malloc(unsigned int size)
  42. {
  43.     void *ptr;
  44.     
  45. #ifdef MEMALIGN_HACK
  46.     int diff;
  47.     ptr = malloc(size+16+1);
  48.     diff= ((-(int)ptr - 1)&15) + 1;
  49.     ptr += diff;
  50.     ((char*)ptr)[-1]= diff;
  51. #elif defined (HAVE_MEMALIGN) 
  52.     ptr = memalign(16,size);
  53.     /* Why 64? 
  54.        Indeed, we should align it:
  55.          on 4 for 386
  56.          on 16 for 486
  57.  on 32 for 586, PPro - k6-III
  58.  on 64 for K7 (maybe for P3 too).
  59.        Because L1 and L2 caches are aligned on those values.
  60.        But I don't want to code such logic here!
  61.      */
  62.      /* Why 16?
  63.         because some cpus need alignment, for example SSE2 on P4, & most RISC cpus
  64.         it will just trigger an exception and the unaligned load will be done in the
  65.         exception handler or it will just segfault (SSE2 on P4)
  66.         Why not larger? because i didnt see a difference in benchmarks ...
  67.      */
  68.      /* benchmarks with p3
  69.         memalign(64)+1 3071,3051,3032
  70.         memalign(64)+2 3051,3032,3041
  71.         memalign(64)+4 2911,2896,2915
  72.         memalign(64)+8 2545,2554,2550
  73.         memalign(64)+16 2543,2572,2563
  74.         memalign(64)+32 2546,2545,2571
  75.         memalign(64)+64 2570,2533,2558
  76.         
  77.         btw, malloc seems to do 8 byte alignment by default here
  78.      */
  79. #else
  80.     ptr = malloc(size);
  81. #endif
  82.     return ptr;
  83. }
  84. /**
  85.  * av_realloc semantics (same as glibc): if ptr is NULL and size > 0,
  86.  * identical to malloc(size). If size is zero, it is identical to
  87.  * free(ptr) and NULL is returned.  
  88.  */
  89. void *av_realloc(void *ptr, unsigned int size)
  90. {
  91. #ifdef MEMALIGN_HACK
  92.     //FIXME this isnt aligned correctly though it probably isnt needed
  93.     int diff= ptr ? ((char*)ptr)[-1] : 0;
  94.     return realloc(ptr - diff, size + diff) + diff;
  95. #else
  96.     return realloc(ptr, size);
  97. #endif
  98. }
  99. /* NOTE: ptr = NULL is explicetly allowed */
  100. void av_free(void *ptr)
  101. {
  102.     /* XXX: this test should not be needed on most libcs */
  103.     if (ptr)
  104. #ifdef MEMALIGN_HACK
  105.         free(ptr - ((char*)ptr)[-1]);
  106. #else
  107.         free(ptr);
  108. #endif
  109. }