Mercurial > libavcodec.hg
annotate mem.c @ 692:852b5a416161 libavcodec
fixing ac prediction encoding with adaptive quantization
author | michaelni |
---|---|
date | Tue, 24 Sep 2002 09:15:46 +0000 |
parents | 0ed44dd02bbf |
children | 058194d7ade6 |
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 |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
18 */ |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
19 #include "avcodec.h" |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
20 #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
|
21 #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
|
22 #endif |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
23 |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
24 /* 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
|
25 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
|
26 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
|
27 |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
28 /* memory alloc */ |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
29 void *av_malloc(int size) |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
30 { |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
31 void *ptr; |
677 | 32 #if defined (HAVE_MEMALIGN) |
33 ptr = memalign(16,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
|
34 /* Why 64? |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
35 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
|
36 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
|
37 on 16 for 486 |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
38 on 32 for 586, PPro - k6-III |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
39 on 64 for K7 (maybe for P3 too). |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
40 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
|
41 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
|
42 */ |
677 | 43 /* Why 16? |
44 because some cpus need alignment, for example SSE2 on P4, & most RISC cpus | |
45 it will just trigger an exception and the unaligned load will be done in the | |
46 exception handler or it will just segfault (SSE2 on P4) | |
47 Why not larger? because i didnt see a difference in benchmarks ... | |
48 */ | |
49 /* benchmarks with p3 | |
50 memalign(64)+1 3071,3051,3032 | |
51 memalign(64)+2 3051,3032,3041 | |
52 memalign(64)+4 2911,2896,2915 | |
53 memalign(64)+8 2545,2554,2550 | |
54 memalign(64)+16 2543,2572,2563 | |
55 memalign(64)+32 2546,2545,2571 | |
56 memalign(64)+64 2570,2533,2558 | |
57 | |
58 btw, malloc seems to do 8 byte alignment by default here | |
59 */ | |
490
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
60 #else |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
61 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
|
62 #endif |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
63 if (!ptr) |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
64 return NULL; |
677 | 65 //fprintf(stderr, "%X %d\n", (int)ptr, 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
|
66 /* NOTE: this memset should not be present */ |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
67 memset(ptr, 0, size); |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
68 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
|
69 } |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
70 |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
71 /* NOTE: ptr = NULL is explicetly allowed */ |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
72 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
|
73 { |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
74 /* 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
|
75 if (ptr) |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
76 free(ptr); |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
77 } |
e28763300864
put memory functions in a separate file so that the user can redefinite them without modifying the library
bellard
parents:
diff
changeset
|
78 |