Mercurial > libavutil.hg
annotate internal.h @ 139:8a35b87bf4a1 libavutil
merge CONFIG_WINCE sections
| author | mru |
|---|---|
| date | Tue, 14 Nov 2006 03:37:44 +0000 |
| parents | e8767b5a5fdb |
| children | bec4c3d175da |
| rev | line source |
|---|---|
|
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
1 /* |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
3 * |
|
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
114
diff
changeset
|
4 * This file is part of FFmpeg. |
|
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
114
diff
changeset
|
5 * |
|
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
114
diff
changeset
|
6 * FFmpeg is free software; you can redistribute it and/or |
|
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
7 * modify it under the terms of the GNU Lesser General Public |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
8 * License as published by the Free Software Foundation; either |
|
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
114
diff
changeset
|
9 * version 2.1 of the License, or (at your option) any later version. |
|
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
10 * |
|
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
114
diff
changeset
|
11 * FFmpeg is distributed in the hope that it will be useful, |
|
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
14 * Lesser General Public License for more details. |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
15 * |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
16 * You should have received a copy of the GNU Lesser General Public |
|
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
114
diff
changeset
|
17 * License along with FFmpeg; if not, write to the Free Software |
|
108
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
19 */ |
|
11be8e0d1344
Add official LGPL license headers to the files that were missing them.
diego
parents:
107
diff
changeset
|
20 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
21 /** |
|
80
624fc3ad183a
Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents:
75
diff
changeset
|
22 * @file internal.h |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
23 * common internal api header. |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
24 */ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
25 |
|
80
624fc3ad183a
Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents:
75
diff
changeset
|
26 #ifndef INTERNAL_H |
|
624fc3ad183a
Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents:
75
diff
changeset
|
27 #define INTERNAL_H |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
28 |
|
57
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
29 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC) |
|
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
30 # define PIC |
|
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
31 #endif |
|
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
32 |
| 138 | 33 #ifndef ENODATA |
| 34 # define ENODATA 61 | |
| 35 #endif | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
36 |
|
89
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
37 #include "bswap.h" |
|
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
38 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
39 #include <stddef.h> |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
40 #ifndef offsetof |
| 138 | 41 # define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F)) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
42 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
43 |
| 74 | 44 #ifdef __MINGW32__ |
| 75 | 45 # ifdef _DEBUG |
| 46 # define DEBUG | |
| 47 # endif | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
48 |
| 75 | 49 # define snprintf _snprintf |
| 50 # define vsnprintf _vsnprintf | |
| 19 | 51 |
| 75 | 52 # ifdef CONFIG_WINCE |
| 53 # define perror(a) | |
| 139 | 54 # define abort() |
| 75 | 55 # endif |
| 19 | 56 |
|
66
c619660c74ab
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
65
diff
changeset
|
57 /* __MINGW32__ end */ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
58 #elif defined (CONFIG_OS2) |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
59 /* OS/2 EMX */ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
60 |
| 138 | 61 # include <float.h> |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
62 |
| 73 | 63 #endif /* !__MINGW32__ && CONFIG_OS2 */ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
64 |
| 138 | 65 #ifdef USE_FASTMEMCPY |
| 66 # include "libvo/fastmemcpy.h" | |
| 67 #endif | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
68 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
69 // Use rip-relative addressing if compiling PIC code on x86-64. |
| 138 | 70 #if defined(__MINGW32__) || defined(__CYGWIN__) || \ |
| 71 defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__)) | |
| 72 # if defined(ARCH_X86_64) && defined(PIC) | |
| 73 # define MANGLE(a) "_" #a"(%%rip)" | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
74 # else |
| 138 | 75 # define MANGLE(a) "_" #a |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
76 # endif |
| 138 | 77 #else |
| 78 # if defined(ARCH_X86_64) && defined(PIC) | |
| 79 # define MANGLE(a) #a"(%%rip)" | |
| 80 # elif defined(CONFIG_DARWIN) | |
| 81 # define MANGLE(a) "_" #a | |
| 82 # else | |
| 83 # define MANGLE(a) #a | |
| 84 # endif | |
| 85 #endif | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
86 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
87 /* debug stuff */ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
88 |
| 138 | 89 #if !defined(DEBUG) && !defined(NDEBUG) |
| 90 # define NDEBUG | |
| 91 #endif | |
| 92 #include <assert.h> | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
93 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
94 /* dprintf macros */ |
| 138 | 95 #ifdef DEBUG |
| 96 # define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) | |
| 97 #else | |
| 98 # define dprintf(fmt,...) | |
| 99 #endif | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
100 |
| 138 | 101 #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
102 |
| 134 | 103 extern const uint32_t ff_inverse[256]; |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
104 |
| 125 | 105 #if defined(ARCH_X86) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
106 # define FASTDIV(a,b) \ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
107 ({\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
108 int ret,dmy;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
109 asm volatile(\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
110 "mull %3"\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
111 :"=d"(ret),"=a"(dmy)\ |
| 134 | 112 :"1"(a),"g"(ff_inverse[b])\ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
113 );\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
114 ret;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
115 }) |
|
114
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
116 #elif defined(ARCH_ARMV4L) |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
117 # define FASTDIV(a,b) \ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
118 ({\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
119 int ret,dmy;\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
120 asm volatile(\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
121 "umull %1, %0, %2, %3"\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
122 :"=&r"(ret),"=&r"(dmy)\ |
| 134 | 123 :"r"(a),"r"(ff_inverse[b])\ |
|
114
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
124 );\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
125 ret;\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
126 }) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
127 #elif defined(CONFIG_FASTDIV) |
| 134 | 128 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32)) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
129 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
130 # define FASTDIV(a,b) ((a)/(b)) |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
131 #endif |
| 12 | 132 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
133 /* math */ |
|
22
3b56407b3f96
On MinGW it is not possible to build shared and static libraries at once.
diego
parents:
19
diff
changeset
|
134 extern FF_IMPORT_ATTR const uint8_t ff_sqrt_tab[128]; |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
135 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
136 static inline int ff_sqrt(int a) |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
137 { |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
138 int ret=0; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
139 int s; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
140 int ret_sq=0; |
| 12 | 141 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
142 if(a<128) return ff_sqrt_tab[a]; |
| 12 | 143 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
144 for(s=15; s>=0; s--){ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
145 int b= ret_sq + (1<<(s*2)) + (ret<<s)*2; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
146 if(b<=a){ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
147 ret_sq=b; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
148 ret+= 1<<s; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
149 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
150 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
151 return ret; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
152 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
153 |
| 125 | 154 #if defined(ARCH_X86) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
155 #define MASK_ABS(mask, level)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
156 asm volatile(\ |
| 13 | 157 "cdq \n\t"\ |
| 158 "xorl %1, %0 \n\t"\ | |
| 159 "subl %1, %0 \n\t"\ | |
| 160 : "+a" (level), "=&d" (mask)\ | |
| 161 ); | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
162 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
163 #define MASK_ABS(mask, level)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
164 mask= level>>31;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
165 level= (level^mask)-mask; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
166 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
167 |
|
121
69714d5e1561
Protect code that uses CMOV instructions with HAVE_CMOV,
gpoirier
parents:
116
diff
changeset
|
168 #ifdef HAVE_CMOV |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
169 #define COPY3_IF_LT(x,y,a,b,c,d)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
170 asm volatile (\ |
| 13 | 171 "cmpl %0, %3 \n\t"\ |
| 172 "cmovl %3, %0 \n\t"\ | |
| 173 "cmovl %4, %1 \n\t"\ | |
| 174 "cmovl %5, %2 \n\t"\ | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
175 : "+r" (x), "+r" (a), "+r" (c)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
176 : "r" (y), "r" (b), "r" (d)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
177 ); |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
178 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
179 #define COPY3_IF_LT(x,y,a,b,c,d)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
180 if((y)<(x)){\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
181 (x)=(y);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
182 (a)=(b);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
183 (c)=(d);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
184 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
185 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
186 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
187 /* avoid usage of various functions */ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
188 #define malloc please_use_av_malloc |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
189 #define free please_use_av_free |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
190 #define realloc please_use_av_realloc |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
191 #define time time_is_forbidden_due_to_security_issues |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
192 #define rand rand_is_forbidden_due_to_state_trashing |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
193 #define srand srand_is_forbidden_due_to_state_trashing |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
194 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
195 #define strcat strcat_is_forbidden_due_to_security_issues_use_pstrcat |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
196 #if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H)) |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
197 #define printf please_use_av_log |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
198 #define fprintf please_use_av_log |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
199 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
200 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
201 #define CHECKED_ALLOCZ(p, size)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
202 {\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
203 p= av_mallocz(size);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
204 if(p==NULL && (size)!=0){\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
205 perror("malloc");\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
206 goto fail;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
207 }\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
208 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
209 |
|
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
210 #ifndef HAVE_LRINTF |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
211 /* XXX: add ISOC specific test to avoid specific BSD testing. */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
212 /* better than nothing implementation. */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
213 /* btw, rintf() is existing on fbsd too -- alex */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
214 static always_inline long int lrintf(float x) |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
215 { |
|
66
c619660c74ab
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
65
diff
changeset
|
216 #ifdef __MINGW32__ |
|
124
bd1ecfd747bc
Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change
diego
parents:
121
diff
changeset
|
217 # ifdef ARCH_X86_32 |
|
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
218 int32_t i; |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
219 asm volatile( |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
220 "fistpl %0\n\t" |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
221 : "=m" (i) : "t" (x) : "st" |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
222 ); |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
223 return i; |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
224 # else |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
225 /* XXX: incorrect, but make it compile */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
226 return (int)(x + (x < 0 ? -0.5 : 0.5)); |
|
124
bd1ecfd747bc
Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change
diego
parents:
121
diff
changeset
|
227 # endif /* ARCH_X86_32 */ |
|
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
228 #else |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
229 return (int)(rint(x)); |
|
66
c619660c74ab
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
65
diff
changeset
|
230 #endif /* __MINGW32__ */ |
|
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
231 } |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
232 #endif /* HAVE_LRINTF */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
233 |
|
80
624fc3ad183a
Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents:
75
diff
changeset
|
234 #endif /* INTERNAL_H */ |
