Mercurial > libavcodec.hg
annotate mem.c @ 3475:4e06affe9974 libavcodec
Correct inverse quantization for P-frames
| author | kostya |
|---|---|
| date | Sun, 16 Jul 2006 03:47:34 +0000 |
| parents | ecdc24320e47 |
| children |
| rev | line source |
|---|---|
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
1 /* |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
2 * default memory allocator for libavcodec |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
3 * Copyright (c) 2002 Fabrice Bellard. |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
4 * |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
5 * This library is free software; you can redistribute it and/or |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
6 * modify it under the terms of the GNU Lesser General Public |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
7 * License as published by the Free Software Foundation; either |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
8 * version 2 of the License, or (at your option) any later version. |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
9 * |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
10 * This library is distributed in the hope that it will be useful, |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
13 * Lesser General Public License for more details. |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
14 * |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
15 * You should have received a copy of the GNU Lesser General Public |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
16 * License along with this library; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
3008
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
18 */ |
| 2967 | 19 |
| 1106 | 20 /** |
| 21 * @file mem.c | |
| 22 * default memory allocator for libavcodec. | |
| 23 */ | |
| 2967 | 24 |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
25 #include "avcodec.h" |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
26 |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
27 /* here we can use OS dependant allocation functions */ |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
28 #undef malloc |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
29 #undef free |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
30 #undef realloc |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
31 |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
32 #ifdef HAVE_MALLOC_H |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
33 #include <malloc.h> |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
34 #endif |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
35 |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
36 /* you can redefine av_malloc and av_free in your project to use your |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
37 memory allocator. You do not need to suppress this file because the |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
38 linker will do it automatically */ |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
39 |
| 2967 | 40 /** |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
41 * Memory allocation of size byte with alignment suitable for all |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
42 * memory accesses (including vectors if available on the |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
43 * CPU). av_malloc(0) must return a non NULL pointer. |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
44 */ |
| 862 | 45 void *av_malloc(unsigned int size) |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
46 { |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
47 void *ptr; |
|
2522
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2425
diff
changeset
|
48 #ifdef MEMALIGN_HACK |
| 3074 | 49 long diff; |
|
2522
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2425
diff
changeset
|
50 #endif |
| 2422 | 51 |
|
3369
36e208be9ad6
spelling fixes courtesy of "Herv? W." H.O.W.aka.V+ffmpeg (at) gmail (dot) com
diego
parents:
3074
diff
changeset
|
52 /* let's disallow possible ambiguous cases */ |
|
3374
e9614cf8ac92
* Allocating 16 bytes more for the MEMALIGN_HACK is enough. There's no
gpoirier
parents:
3369
diff
changeset
|
53 if(size > (INT_MAX-16) ) |
| 2422 | 54 return NULL; |
| 2967 | 55 |
|
2060
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
56 #ifdef MEMALIGN_HACK |
|
3374
e9614cf8ac92
* Allocating 16 bytes more for the MEMALIGN_HACK is enough. There's no
gpoirier
parents:
3369
diff
changeset
|
57 ptr = malloc(size+16); |
|
e9614cf8ac92
* Allocating 16 bytes more for the MEMALIGN_HACK is enough. There's no
gpoirier
parents:
3369
diff
changeset
|
58 if(!ptr) |
|
e9614cf8ac92
* Allocating 16 bytes more for the MEMALIGN_HACK is enough. There's no
gpoirier
parents:
3369
diff
changeset
|
59 return ptr; |
| 3074 | 60 diff= ((-(long)ptr - 1)&15) + 1; |
|
2060
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
61 ptr += diff; |
|
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
62 ((char*)ptr)[-1]= diff; |
| 2967 | 63 #elif defined (HAVE_MEMALIGN) |
| 677 | 64 ptr = memalign(16,size); |
| 2967 | 65 /* Why 64? |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
66 Indeed, we should align it: |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
67 on 4 for 386 |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
68 on 16 for 486 |
| 2979 | 69 on 32 for 586, PPro - k6-III |
| 70 on 64 for K7 (maybe for P3 too). | |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
71 Because L1 and L2 caches are aligned on those values. |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
72 But I don't want to code such logic here! |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
73 */ |
| 677 | 74 /* Why 16? |
| 75 because some cpus need alignment, for example SSE2 on P4, & most RISC cpus | |
| 76 it will just trigger an exception and the unaligned load will be done in the | |
| 77 exception handler or it will just segfault (SSE2 on P4) | |
| 78 Why not larger? because i didnt see a difference in benchmarks ... | |
| 79 */ | |
| 80 /* benchmarks with p3 | |
| 2979 | 81 memalign(64)+1 3071,3051,3032 |
| 82 memalign(64)+2 3051,3032,3041 | |
| 83 memalign(64)+4 2911,2896,2915 | |
| 84 memalign(64)+8 2545,2554,2550 | |
| 85 memalign(64)+16 2543,2572,2563 | |
| 86 memalign(64)+32 2546,2545,2571 | |
| 87 memalign(64)+64 2570,2533,2558 | |
| 2967 | 88 |
| 677 | 89 btw, malloc seems to do 8 byte alignment by default here |
| 90 */ | |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
91 #else |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
92 ptr = malloc(size); |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
93 #endif |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
94 return ptr; |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
95 } |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
96 |
| 1026 | 97 /** |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
98 * av_realloc semantics (same as glibc): if ptr is NULL and size > 0, |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
99 * identical to malloc(size). If size is zero, it is identical to |
| 2967 | 100 * free(ptr) and NULL is returned. |
| 1026 | 101 */ |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
102 void *av_realloc(void *ptr, unsigned int size) |
|
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
103 { |
|
2522
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2425
diff
changeset
|
104 #ifdef MEMALIGN_HACK |
| 2425 | 105 int diff; |
|
2522
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2425
diff
changeset
|
106 #endif |
|
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2425
diff
changeset
|
107 |
|
3369
36e208be9ad6
spelling fixes courtesy of "Herv? W." H.O.W.aka.V+ffmpeg (at) gmail (dot) com
diego
parents:
3074
diff
changeset
|
108 /* let's disallow possible ambiguous cases */ |
|
3374
e9614cf8ac92
* Allocating 16 bytes more for the MEMALIGN_HACK is enough. There's no
gpoirier
parents:
3369
diff
changeset
|
109 if(size > (INT_MAX-16) ) |
| 2422 | 110 return NULL; |
| 111 | |
|
2060
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
112 #ifdef MEMALIGN_HACK |
|
3369
36e208be9ad6
spelling fixes courtesy of "Herv? W." H.O.W.aka.V+ffmpeg (at) gmail (dot) com
diego
parents:
3074
diff
changeset
|
113 //FIXME this isn't aligned correctly, though it probably isn't needed |
| 2147 | 114 if(!ptr) return av_malloc(size); |
| 115 diff= ((char*)ptr)[-1]; | |
|
2060
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
116 return realloc(ptr - diff, size + diff) + diff; |
|
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
117 #else |
|
1031
19de1445beb2
use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents:
1026
diff
changeset
|
118 return realloc(ptr, size); |
|
2060
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
119 #endif |
| 1026 | 120 } |
| 121 | |
| 3008 | 122 /** |
| 123 * Free memory which has been allocated with av_malloc(z)() or av_realloc(). | |
|
3063
f02d0b59279c
Remove all stray tabs and trailing whitespace, this time for good.
diego
parents:
3036
diff
changeset
|
124 * NOTE: ptr = NULL is explicetly allowed |
| 3418 | 125 * Note2: it is recommended that you use av_freep() instead |
| 3008 | 126 */ |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
127 void av_free(void *ptr) |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
128 { |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
129 /* XXX: this test should not be needed on most libcs */ |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
130 if (ptr) |
|
2060
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
131 #ifdef MEMALIGN_HACK |
|
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
132 free(ptr - ((char*)ptr)[-1]); |
|
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
133 #else |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
134 free(ptr); |
|
2060
d07784fbdad1
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
michael
parents:
1106
diff
changeset
|
135 #endif |
|
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
136 } |
|
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
137 |
