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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * default memory allocator for libavutil
  3.  * Copyright (c) 2002 Fabrice Bellard.
  4.  *
  5.  * This file is part of FFmpeg.
  6.  *
  7.  * FFmpeg is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU Lesser General Public
  9.  * License as published by the Free Software Foundation; either
  10.  * version 2.1 of the License, or (at your option) any later version.
  11.  *
  12.  * FFmpeg is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * Lesser General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU Lesser General Public
  18.  * License along with FFmpeg; if not, write to the Free Software
  19.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20.  */
  21. /**
  22.  * @file mem.c
  23.  * default memory allocator for libavutil.
  24.  */
  25. #include "common.h"
  26. #include "define.h"
  27. #include <stdio.h>
  28. /* here we can use OS dependent allocation functions */
  29. #undef malloc
  30. #undef free
  31. #undef realloc
  32. #ifdef HAVE_MALLOC_H
  33. #include <malloc.h>
  34. #endif
  35. /* you can redefine av_malloc and av_free in your project to use your
  36.    memory allocator. You do not need to suppress this file because the
  37.    linker will do it automatically */
  38. void *av_malloc(unsigned int size)
  39. {
  40.     void *ptr;
  41. #ifdef CONFIG_MEMALIGN_HACK
  42.     long diff;
  43. #endif
  44.     /* let's disallow possible ambiguous cases */
  45.     if(size > (INT_MAX-16) )
  46.         return NULL;
  47. #ifdef CONFIG_MEMALIGN_HACK
  48.     ptr = malloc(size+16);
  49.     if(!ptr)
  50.         return ptr;
  51.     diff= ((-(long)ptr - 1)&15) + 1;
  52.     ptr = (char*)ptr + diff;
  53.     ((char*)ptr)[-1]= diff;
  54. #elif defined (HAVE_MEMALIGN)
  55.     ptr = memalign(16,size);
  56.     /* Why 64?
  57.        Indeed, we should align it:
  58.          on 4 for 386
  59.          on 16 for 486
  60.          on 32 for 586, PPro - k6-III
  61.          on 64 for K7 (maybe for P3 too).
  62.        Because L1 and L2 caches are aligned on those values.
  63.        But I don't want to code such logic here!
  64.      */
  65.      /* Why 16?
  66.         Because some CPUs need alignment, for example SSE2 on P4, & most RISC CPUs
  67.         it will just trigger an exception and the unaligned load will be done in the
  68.         exception handler or it will just segfault (SSE2 on P4)
  69.         Why not larger? Because I did not see a difference in benchmarks ...
  70.      */
  71.      /* benchmarks with p3
  72.         memalign(64)+1          3071,3051,3032
  73.         memalign(64)+2          3051,3032,3041
  74.         memalign(64)+4          2911,2896,2915
  75.         memalign(64)+8          2545,2554,2550
  76.         memalign(64)+16         2543,2572,2563
  77.         memalign(64)+32         2546,2545,2571
  78.         memalign(64)+64         2570,2533,2558
  79.         btw, malloc seems to do 8 byte alignment by default here
  80.      */
  81. #else
  82.     ptr = malloc(size);
  83. #endif
  84.     return ptr;
  85. }
  86. void *av_realloc(void *ptr, unsigned int size)
  87. {
  88. #ifdef CONFIG_MEMALIGN_HACK
  89.     int diff;
  90. #endif
  91.     /* let's disallow possible ambiguous cases */
  92.     if(size > (INT_MAX-16) )
  93.         return NULL;
  94. #ifdef CONFIG_MEMALIGN_HACK
  95.     //FIXME this isn't aligned correctly, though it probably isn't needed
  96.     if(!ptr) return av_malloc(size);
  97.     diff= ((char*)ptr)[-1];
  98.     return (char*)realloc((char*)ptr - diff, size + diff) + diff;
  99. #else
  100.     return realloc(ptr, size);
  101. #endif
  102. }
  103. void av_free(void *ptr)
  104. {
  105.     /* XXX: this test should not be needed on most libcs */
  106.     if (ptr)
  107. #ifdef CONFIG_MEMALIGN_HACK
  108.         free((char*)ptr - ((char*)ptr)[-1]);
  109. #else
  110.         free(ptr);
  111. #endif
  112. }
  113. void av_freep(void *arg)
  114. {
  115.     void **ptr= (void**)arg;
  116.     av_free(*ptr);
  117.     *ptr = NULL;
  118. }
  119. void *av_mallocz(unsigned int size)
  120. {
  121.     void *ptr = av_malloc(size);
  122.     if (ptr)
  123.         memset(ptr, 0, size);
  124.     return ptr;
  125. }
  126. char *av_strdup(const char *s)
  127. {
  128.     char *ptr= NULL;
  129.     if(s){
  130.         int len = strlen(s) + 1;
  131.         ptr = av_malloc(len);
  132.         if (ptr)
  133.             memcpy(ptr, s, len);
  134.     }
  135.     return ptr;
  136. }