Mercurial > libavutil.hg
annotate internal.h @ 225:0b93dab98397 libavutil
simplify av_fifo_realloc()
author | michael |
---|---|
date | Wed, 17 Jan 2007 20:05:31 +0000 |
parents | 162b19388ef8 |
children | 2d2e2b4e50fa |
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 |
154 | 29 #ifndef attribute_used |
30 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0) | |
31 # define attribute_used __attribute__((used)) | |
32 #else | |
33 # define attribute_used | |
34 #endif | |
35 #endif | |
36 | |
37 #ifndef attribute_unused | |
160 | 38 #if defined(__GNUC__) |
154 | 39 # define attribute_unused __attribute__((unused)) |
40 #else | |
41 # define attribute_unused | |
42 #endif | |
43 #endif | |
44 | |
155 | 45 #ifndef M_PI |
46 #define M_PI 3.14159265358979323846 | |
47 #endif | |
48 | |
49 #ifndef PRId64 | |
50 #define PRId64 "lld" | |
51 #endif | |
52 | |
53 #ifndef PRIu64 | |
54 #define PRIu64 "llu" | |
55 #endif | |
56 | |
57 #ifndef PRIx64 | |
58 #define PRIx64 "llx" | |
59 #endif | |
60 | |
61 #ifndef PRIX64 | |
62 #define PRIX64 "llX" | |
63 #endif | |
64 | |
65 #ifndef PRId32 | |
66 #define PRId32 "d" | |
67 #endif | |
68 | |
69 #ifndef PRIdFAST16 | |
70 #define PRIdFAST16 PRId32 | |
71 #endif | |
72 | |
73 #ifndef PRIdFAST32 | |
74 #define PRIdFAST32 PRId32 | |
75 #endif | |
76 | |
77 #ifndef INT16_MIN | |
78 #define INT16_MIN (-0x7fff-1) | |
79 #endif | |
80 | |
81 #ifndef INT16_MAX | |
82 #define INT16_MAX 0x7fff | |
83 #endif | |
84 | |
85 #ifndef INT32_MIN | |
86 #define INT32_MIN (-0x7fffffff-1) | |
87 #endif | |
88 | |
89 #ifndef INT32_MAX | |
90 #define INT32_MAX 0x7fffffff | |
91 #endif | |
92 | |
93 #ifndef UINT32_MAX | |
94 #define UINT32_MAX 0xffffffff | |
95 #endif | |
96 | |
97 #ifndef INT64_MIN | |
98 #define INT64_MIN (-0x7fffffffffffffffLL-1) | |
99 #endif | |
100 | |
101 #ifndef INT64_MAX | |
156 | 102 #define INT64_MAX INT64_C(9223372036854775807) |
155 | 103 #endif |
104 | |
105 #ifndef UINT64_MAX | |
156 | 106 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF) |
155 | 107 #endif |
108 | |
109 #ifndef INT_BIT | |
110 # if INT_MAX != 2147483647 | |
111 # define INT_BIT 64 | |
112 # else | |
113 # define INT_BIT 32 | |
114 # endif | |
115 #endif | |
116 | |
57
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten«Ò <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
117 #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
|
118 # define PIC |
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten«Ò <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
119 #endif |
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten«Ò <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
120 |
138 | 121 #ifndef ENODATA |
122 # define ENODATA 61 | |
123 #endif | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
124 |
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
143
diff
changeset
|
125 #include "intreadwrite.h" |
89
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
126 #include "bswap.h" |
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
127 |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
128 #include <stddef.h> |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
129 #ifndef offsetof |
138 | 130 # 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
|
131 #endif |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
132 |
74 | 133 #ifdef __MINGW32__ |
75 | 134 # ifdef _DEBUG |
135 # define DEBUG | |
136 # endif | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
137 |
75 | 138 # define snprintf _snprintf |
139 # define vsnprintf _vsnprintf | |
19 | 140 |
75 | 141 # ifdef CONFIG_WINCE |
142 # define perror(a) | |
139 | 143 # define abort() |
75 | 144 # endif |
19 | 145 |
66
c619660c74ab
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
65
diff
changeset
|
146 /* __MINGW32__ end */ |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
147 #elif defined (CONFIG_OS2) |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
148 /* OS/2 EMX */ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
149 |
138 | 150 # include <float.h> |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
151 |
73 | 152 #endif /* !__MINGW32__ && CONFIG_OS2 */ |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
153 |
138 | 154 #ifdef USE_FASTMEMCPY |
155 # include "libvo/fastmemcpy.h" | |
156 #endif | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
157 |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
158 // Use rip-relative addressing if compiling PIC code on x86-64. |
138 | 159 #if defined(__MINGW32__) || defined(__CYGWIN__) || \ |
160 defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__)) | |
161 # if defined(ARCH_X86_64) && defined(PIC) | |
162 # define MANGLE(a) "_" #a"(%%rip)" | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
163 # else |
138 | 164 # define MANGLE(a) "_" #a |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
165 # endif |
138 | 166 #else |
167 # if defined(ARCH_X86_64) && defined(PIC) | |
168 # define MANGLE(a) #a"(%%rip)" | |
169 # elif defined(CONFIG_DARWIN) | |
170 # define MANGLE(a) "_" #a | |
171 # else | |
172 # define MANGLE(a) #a | |
173 # endif | |
174 #endif | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
175 |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
176 /* debug stuff */ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
177 |
138 | 178 #if !defined(DEBUG) && !defined(NDEBUG) |
179 # define NDEBUG | |
180 #endif | |
181 #include <assert.h> | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
182 |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
183 /* dprintf macros */ |
138 | 184 #ifdef DEBUG |
185 # define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) | |
186 #else | |
187 # define dprintf(fmt,...) | |
188 #endif | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
189 |
138 | 190 #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
|
191 |
143 | 192 /* math */ |
193 | |
134 | 194 extern const uint32_t ff_inverse[256]; |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
195 |
125 | 196 #if defined(ARCH_X86) |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
197 # define FASTDIV(a,b) \ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
198 ({\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
199 int ret,dmy;\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
200 asm volatile(\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
201 "mull %3"\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
202 :"=d"(ret),"=a"(dmy)\ |
134 | 203 :"1"(a),"g"(ff_inverse[b])\ |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
204 );\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
205 ret;\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
206 }) |
114
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
207 #elif defined(ARCH_ARMV4L) |
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
208 # define FASTDIV(a,b) \ |
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
209 ({\ |
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
210 int ret,dmy;\ |
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
211 asm volatile(\ |
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
212 "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
|
213 :"=&r"(ret),"=&r"(dmy)\ |
134 | 214 :"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
|
215 );\ |
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
216 ret;\ |
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
217 }) |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
218 #elif defined(CONFIG_FASTDIV) |
134 | 219 # 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
|
220 #else |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
221 # define FASTDIV(a,b) ((a)/(b)) |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
222 #endif |
12 | 223 |
157 | 224 extern const uint8_t ff_sqrt_tab[128]; |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
225 |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
226 static inline int ff_sqrt(int a) |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
227 { |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
228 int ret=0; |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
229 int s; |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
230 int ret_sq=0; |
12 | 231 |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
232 if(a<128) return ff_sqrt_tab[a]; |
12 | 233 |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
234 for(s=15; s>=0; s--){ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
235 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
|
236 if(b<=a){ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
237 ret_sq=b; |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
238 ret+= 1<<s; |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
239 } |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
240 } |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
241 return ret; |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
242 } |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
243 |
125 | 244 #if defined(ARCH_X86) |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
245 #define MASK_ABS(mask, level)\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
246 asm volatile(\ |
13 | 247 "cdq \n\t"\ |
248 "xorl %1, %0 \n\t"\ | |
249 "subl %1, %0 \n\t"\ | |
250 : "+a" (level), "=&d" (mask)\ | |
251 ); | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
252 #else |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
253 #define MASK_ABS(mask, level)\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
254 mask= level>>31;\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
255 level= (level^mask)-mask; |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
256 #endif |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
257 |
121
69714d5e1561
Protect code that uses CMOV instructions with HAVE_CMOV,
gpoirier
parents:
116
diff
changeset
|
258 #ifdef HAVE_CMOV |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
259 #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
|
260 asm volatile (\ |
13 | 261 "cmpl %0, %3 \n\t"\ |
262 "cmovl %3, %0 \n\t"\ | |
263 "cmovl %4, %1 \n\t"\ | |
264 "cmovl %5, %2 \n\t"\ | |
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
265 : "+r" (x), "+r" (a), "+r" (c)\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
266 : "r" (y), "r" (b), "r" (d)\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
267 ); |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
268 #else |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
269 #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
|
270 if((y)<(x)){\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
271 (x)=(y);\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
272 (a)=(b);\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
273 (c)=(d);\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
274 } |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
275 #endif |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
276 |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
277 /* avoid usage of various functions */ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
278 #define malloc please_use_av_malloc |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
279 #define free please_use_av_free |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
280 #define realloc please_use_av_realloc |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
281 #define time time_is_forbidden_due_to_security_issues |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
282 #define rand rand_is_forbidden_due_to_state_trashing |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
283 #define srand srand_is_forbidden_due_to_state_trashing |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
284 #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
|
285 #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
|
286 #if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H)) |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
287 #define printf please_use_av_log |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
288 #define fprintf please_use_av_log |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
289 #endif |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
290 |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
291 #define CHECKED_ALLOCZ(p, size)\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
292 {\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
293 p= av_mallocz(size);\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
294 if(p==NULL && (size)!=0){\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
295 perror("malloc");\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
296 goto fail;\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
297 }\ |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
298 } |
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
299 |
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
300 #ifndef HAVE_LRINTF |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
301 /* 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
|
302 /* better than nothing implementation. */ |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
303 /* btw, rintf() is existing on fbsd too -- alex */ |
159
039198e96ee2
rename always_inline to av_always_inline and move to common.h
mru
parents:
157
diff
changeset
|
304 static av_always_inline long int lrintf(float x) |
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
305 { |
66
c619660c74ab
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
65
diff
changeset
|
306 #ifdef __MINGW32__ |
124
bd1ecfd747bc
Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change
diego
parents:
121
diff
changeset
|
307 # ifdef ARCH_X86_32 |
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
308 int32_t i; |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
309 asm volatile( |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
310 "fistpl %0\n\t" |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
311 : "=m" (i) : "t" (x) : "st" |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
312 ); |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
313 return i; |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
314 # else |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
315 /* XXX: incorrect, but make it compile */ |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
316 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
|
317 # endif /* ARCH_X86_32 */ |
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
318 #else |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
319 return (int)(rint(x)); |
66
c619660c74ab
CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use just
diego
parents:
65
diff
changeset
|
320 #endif /* __MINGW32__ */ |
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
321 } |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
322 #endif /* HAVE_LRINTF */ |
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
323 |
80
624fc3ad183a
Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents:
75
diff
changeset
|
324 #endif /* INTERNAL_H */ |