~ubuntu-branches/ubuntu/intrepid/gstreamer0.10-ffmpeg/intrepid

« back to all changes in this revision

Viewing changes to gst-libs/ext/ffmpeg/libavcodec/mem.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-12-13 23:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20061213231028-9vl0epppqnwbq78i
Tags: upstream-0.10.2
Import upstream version 0.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
 
 */
19
 
 
20
 
/**
21
 
 * @file mem.c
22
 
 * default memory allocator for libavcodec.
23
 
 */
24
 
 
25
 
#include "avcodec.h"
26
 
 
27
 
/* here we can use OS dependant allocation functions */
28
 
#undef malloc
29
 
#undef free
30
 
#undef realloc
31
 
 
32
 
#ifdef HAVE_MALLOC_H
33
 
#include <malloc.h>
34
 
#endif
35
 
 
36
 
/* you can redefine av_malloc and av_free in your project to use your
37
 
   memory allocator. You do not need to suppress this file because the
38
 
   linker will do it automatically */
39
 
 
40
 
/**
41
 
 * Memory allocation of size byte with alignment suitable for all
42
 
 * memory accesses (including vectors if available on the
43
 
 * CPU). av_malloc(0) must return a non NULL pointer.
44
 
 */
45
 
void *av_malloc(unsigned int size)
46
 
{
47
 
    void *ptr;
48
 
#ifdef MEMALIGN_HACK
49
 
    long diff;
50
 
#endif
51
 
 
52
 
    /* lets disallow possible ambiguous cases */
53
 
    if(size > INT_MAX)
54
 
        return NULL;
55
 
 
56
 
#ifdef MEMALIGN_HACK
57
 
    ptr = malloc(size+16+1);
58
 
    diff= ((-(long)ptr - 1)&15) + 1;
59
 
    ptr += diff;
60
 
    ((char*)ptr)[-1]= diff;
61
 
#elif defined (HAVE_POSIX_MEMALIGN)
62
 
    if (posix_memalign(&ptr, 16, size) != 0)
63
 
        return NULL;
64
 
    /* Why 64?
65
 
       Indeed, we should align it:
66
 
         on 4 for 386
67
 
         on 16 for 486
68
 
         on 32 for 586, PPro - k6-III
69
 
         on 64 for K7 (maybe for P3 too).
70
 
       Because L1 and L2 caches are aligned on those values.
71
 
       But I don't want to code such logic here!
72
 
     */
73
 
     /* Why 16?
74
 
        because some cpus need alignment, for example SSE2 on P4, & most RISC cpus
75
 
        it will just trigger an exception and the unaligned load will be done in the
76
 
        exception handler or it will just segfault (SSE2 on P4)
77
 
        Why not larger? because i didnt see a difference in benchmarks ...
78
 
     */
79
 
     /* benchmarks with p3
80
 
        memalign(64)+1          3071,3051,3032
81
 
        memalign(64)+2          3051,3032,3041
82
 
        memalign(64)+4          2911,2896,2915
83
 
        memalign(64)+8          2545,2554,2550
84
 
        memalign(64)+16         2543,2572,2563
85
 
        memalign(64)+32         2546,2545,2571
86
 
        memalign(64)+64         2570,2533,2558
87
 
 
88
 
        btw, malloc seems to do 8 byte alignment by default here
89
 
     */
90
 
#else
91
 
    ptr = malloc(size);
92
 
#endif
93
 
    return ptr;
94
 
}
95
 
 
96
 
/**
97
 
 * av_realloc semantics (same as glibc): if ptr is NULL and size > 0,
98
 
 * identical to malloc(size). If size is zero, it is identical to
99
 
 * free(ptr) and NULL is returned.
100
 
 */
101
 
void *av_realloc(void *ptr, unsigned int size)
102
 
{
103
 
#ifdef MEMALIGN_HACK
104
 
    int diff;
105
 
#endif
106
 
 
107
 
    /* lets disallow possible ambiguous cases */
108
 
    if(size > INT_MAX)
109
 
        return NULL;
110
 
 
111
 
#ifdef MEMALIGN_HACK
112
 
    //FIXME this isnt aligned correctly though it probably isnt needed
113
 
    if(!ptr) return av_malloc(size);
114
 
    diff= ((char*)ptr)[-1];
115
 
    return realloc(ptr - diff, size + diff) + diff;
116
 
#else
117
 
    return realloc(ptr, size);
118
 
#endif
119
 
}
120
 
 
121
 
/**
122
 
 * Free memory which has been allocated with av_malloc(z)() or av_realloc().
123
 
 * NOTE: ptr = NULL is explicetly allowed
124
 
 * Note2: it is recommanded that you use av_freep() instead
125
 
 */
126
 
void av_free(void *ptr)
127
 
{
128
 
    /* XXX: this test should not be needed on most libcs */
129
 
    if (ptr)
130
 
#ifdef MEMALIGN_HACK
131
 
        free(ptr - ((char*)ptr)[-1]);
132
 
#else
133
 
        free(ptr);
134
 
#endif
135
 
}
136