Mercurial > libavutil.hg
annotate internal.h @ 472:f4e8f2cd30b7 libavutil
Fix MANGLE macro on Mac OS X.
Allows compiling a 64 bit FFmpeg on Mac OS X without using --disable-mmx.
patch by ?smail D?nmez ismail namtrac org
| author | diego |
|---|---|
| date | Mon, 17 Mar 2008 07:49:03 +0000 |
| parents | bdc8433d739e |
| children | e841859035a6 |
| 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 |
| 392 | 26 #ifndef FFMPEG_INTERNAL_H |
| 27 #define FFMPEG_INTERNAL_H | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
28 |
| 366 | 29 #if !defined(DEBUG) && !defined(NDEBUG) |
| 30 # define NDEBUG | |
| 31 #endif | |
| 32 | |
| 343 | 33 #include <stdint.h> |
| 366 | 34 #include <stddef.h> |
| 35 #include <assert.h> | |
| 343 | 36 |
|
374
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
37 #ifndef attribute_align_arg |
|
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
38 #if defined(__GNUC__) && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__>1) |
|
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
39 # define attribute_align_arg __attribute__((force_align_arg_pointer)) |
|
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
40 #else |
|
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
41 # define attribute_align_arg |
|
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
42 #endif |
|
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
43 #endif |
|
8805bba131a9
Add attribute that forces alignment of stack to functions that need it.
ramiro
parents:
366
diff
changeset
|
44 |
| 154 | 45 #ifndef attribute_used |
| 46 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0) | |
| 47 # define attribute_used __attribute__((used)) | |
| 48 #else | |
| 49 # define attribute_used | |
| 50 #endif | |
| 51 #endif | |
| 52 | |
|
379
b46114384907
Move Apple gcc AltiVec vector declaration syntax to libavutil.
diego
parents:
378
diff
changeset
|
53 /* Use Apple-specific AltiVec syntax for vector declarations when necessary. */ |
|
b46114384907
Move Apple gcc AltiVec vector declaration syntax to libavutil.
diego
parents:
378
diff
changeset
|
54 #ifdef __APPLE_CC__ |
|
b46114384907
Move Apple gcc AltiVec vector declaration syntax to libavutil.
diego
parents:
378
diff
changeset
|
55 #define AVV(x...) (x) |
|
b46114384907
Move Apple gcc AltiVec vector declaration syntax to libavutil.
diego
parents:
378
diff
changeset
|
56 #else |
|
b46114384907
Move Apple gcc AltiVec vector declaration syntax to libavutil.
diego
parents:
378
diff
changeset
|
57 #define AVV(x...) {x} |
|
b46114384907
Move Apple gcc AltiVec vector declaration syntax to libavutil.
diego
parents:
378
diff
changeset
|
58 #endif |
|
b46114384907
Move Apple gcc AltiVec vector declaration syntax to libavutil.
diego
parents:
378
diff
changeset
|
59 |
| 155 | 60 #ifndef M_PI |
| 61 #define M_PI 3.14159265358979323846 | |
| 62 #endif | |
| 63 | |
| 64 #ifndef INT16_MIN | |
| 65 #define INT16_MIN (-0x7fff-1) | |
| 66 #endif | |
| 67 | |
| 68 #ifndef INT16_MAX | |
| 69 #define INT16_MAX 0x7fff | |
| 70 #endif | |
| 71 | |
| 72 #ifndef INT32_MIN | |
| 73 #define INT32_MIN (-0x7fffffff-1) | |
| 74 #endif | |
| 75 | |
| 76 #ifndef INT32_MAX | |
| 77 #define INT32_MAX 0x7fffffff | |
| 78 #endif | |
| 79 | |
| 80 #ifndef UINT32_MAX | |
| 81 #define UINT32_MAX 0xffffffff | |
| 82 #endif | |
| 83 | |
| 84 #ifndef INT64_MIN | |
| 85 #define INT64_MIN (-0x7fffffffffffffffLL-1) | |
| 86 #endif | |
| 87 | |
| 88 #ifndef INT64_MAX | |
| 156 | 89 #define INT64_MAX INT64_C(9223372036854775807) |
| 155 | 90 #endif |
| 91 | |
| 92 #ifndef UINT64_MAX | |
| 156 | 93 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF) |
| 155 | 94 #endif |
| 95 | |
| 96 #ifndef INT_BIT | |
| 97 # if INT_MAX != 2147483647 | |
| 98 # define INT_BIT 64 | |
| 99 # else | |
| 100 # define INT_BIT 32 | |
| 101 # endif | |
| 102 #endif | |
| 103 | |
|
57
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
104 #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
|
105 # define PIC |
|
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
106 #endif |
|
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
107 |
| 469 | 108 #include "config.h" |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
143
diff
changeset
|
109 #include "intreadwrite.h" |
|
89
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
110 #include "bswap.h" |
|
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
111 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
112 #ifndef offsetof |
| 138 | 113 # 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
|
114 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
115 |
| 138 | 116 #ifdef USE_FASTMEMCPY |
| 117 # include "libvo/fastmemcpy.h" | |
| 340 | 118 # define memcpy(a,b,c) fast_memcpy(a,b,c) |
| 138 | 119 #endif |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
120 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
121 // Use rip-relative addressing if compiling PIC code on x86-64. |
| 409 | 122 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__DJGPP__) || \ |
| 472 | 123 defined(__OS2__) || defined(__APPLE__) || \ |
| 124 (defined (__OpenBSD__) && !defined(__ELF__)) | |
| 138 | 125 # if defined(ARCH_X86_64) && defined(PIC) |
| 126 # define MANGLE(a) "_" #a"(%%rip)" | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
127 # else |
| 138 | 128 # define MANGLE(a) "_" #a |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
129 # endif |
| 138 | 130 #else |
| 131 # if defined(ARCH_X86_64) && defined(PIC) | |
| 132 # define MANGLE(a) #a"(%%rip)" | |
| 133 # else | |
| 134 # define MANGLE(a) #a | |
| 135 # endif | |
| 136 #endif | |
|
0
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 /* debug stuff */ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
139 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
140 /* dprintf macros */ |
| 138 | 141 #ifdef DEBUG |
| 285 | 142 # define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__) |
| 138 | 143 #else |
| 285 | 144 # define dprintf(pctx, ...) |
| 138 | 145 #endif |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
146 |
| 138 | 147 #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
|
148 |
| 143 | 149 /* math */ |
| 150 | |
| 134 | 151 extern const uint32_t ff_inverse[256]; |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
152 |
| 125 | 153 #if defined(ARCH_X86) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
154 # define FASTDIV(a,b) \ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
155 ({\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
156 int ret,dmy;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
157 asm volatile(\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
158 "mull %3"\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
159 :"=d"(ret),"=a"(dmy)\ |
| 134 | 160 :"1"(a),"g"(ff_inverse[b])\ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
161 );\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
162 ret;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
163 }) |
|
114
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
164 #elif defined(ARCH_ARMV4L) |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
165 # define FASTDIV(a,b) \ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
166 ({\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
167 int ret,dmy;\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
168 asm volatile(\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
169 "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
|
170 :"=&r"(ret),"=&r"(dmy)\ |
| 134 | 171 :"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
|
172 );\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
173 ret;\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
174 }) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
175 #elif defined(CONFIG_FASTDIV) |
| 134 | 176 # 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
|
177 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
178 # define FASTDIV(a,b) ((a)/(b)) |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
179 #endif |
| 12 | 180 |
| 432 | 181 extern const uint8_t ff_sqrt_tab[256]; |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
182 |
| 432 | 183 static inline int av_log2_16bit(unsigned int v); |
| 184 | |
| 185 static inline unsigned int ff_sqrt(unsigned int a) | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
186 { |
| 432 | 187 unsigned int b; |
| 12 | 188 |
| 432 | 189 if(a<255) return (ff_sqrt_tab[a+1]-1)>>4; |
| 190 else if(a<(1<<12)) b= ff_sqrt_tab[a>>4 ]>>2; | |
| 191 #ifndef CONFIG_SMALL | |
| 192 else if(a<(1<<14)) b= ff_sqrt_tab[a>>6 ]>>1; | |
| 193 else if(a<(1<<16)) b= ff_sqrt_tab[a>>8 ] ; | |
| 194 #endif | |
| 195 else{ | |
| 196 int s= av_log2_16bit(a>>16)>>1; | |
| 197 unsigned int c= a>>(s+2); | |
| 198 b= ff_sqrt_tab[c>>(s+8)]; | |
| 199 b= FASTDIV(c,b) + (b<<s); | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
200 } |
| 432 | 201 |
| 202 return b - (a<b*b); | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
203 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
204 |
| 125 | 205 #if defined(ARCH_X86) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
206 #define MASK_ABS(mask, level)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
207 asm volatile(\ |
|
461
62530c1673a0
Use cltd instead of cdq asm mnemonic, ICC and gcc support both, but
reimar
parents:
432
diff
changeset
|
208 "cltd \n\t"\ |
| 13 | 209 "xorl %1, %0 \n\t"\ |
| 210 "subl %1, %0 \n\t"\ | |
| 211 : "+a" (level), "=&d" (mask)\ | |
| 212 ); | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
213 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
214 #define MASK_ABS(mask, level)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
215 mask= level>>31;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
216 level= (level^mask)-mask; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
217 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
218 |
|
121
69714d5e1561
Protect code that uses CMOV instructions with HAVE_CMOV,
gpoirier
parents:
116
diff
changeset
|
219 #ifdef HAVE_CMOV |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
220 #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
|
221 asm volatile (\ |
| 13 | 222 "cmpl %0, %3 \n\t"\ |
| 223 "cmovl %3, %0 \n\t"\ | |
| 224 "cmovl %4, %1 \n\t"\ | |
| 225 "cmovl %5, %2 \n\t"\ | |
|
323
0e5545f9a454
Add first and second output to earlyclobbers in COPY3_IF_LT macro.
diego
parents:
321
diff
changeset
|
226 : "+&r" (x), "+&r" (a), "+r" (c)\ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
227 : "r" (y), "r" (b), "r" (d)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
228 ); |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
229 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
230 #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
|
231 if((y)<(x)){\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
232 (x)=(y);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
233 (a)=(b);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
234 (c)=(d);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
235 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
236 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
237 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
238 /* avoid usage of various functions */ |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
239 #undef malloc |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
240 #define malloc please_use_av_malloc |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
241 #undef free |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
242 #define free please_use_av_free |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
243 #undef realloc |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
244 #define realloc please_use_av_realloc |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
245 #undef time |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
246 #define time time_is_forbidden_due_to_security_issues |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
247 #undef rand |
| 355 | 248 #define rand rand_is_forbidden_due_to_state_trashing_use_av_random |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
249 #undef srand |
| 355 | 250 #define srand srand_is_forbidden_due_to_state_trashing_use_av_init_random |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
251 #undef random |
| 355 | 252 #define random random_is_forbidden_due_to_state_trashing_use_av_random |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
253 #undef sprintf |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
254 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
255 #undef strcat |
| 349 | 256 #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
257 #undef exit |
| 321 | 258 #define exit exit_is_forbidden |
| 395 | 259 #if !(defined(LIBAVFORMAT_BUILD) || defined(FFMPEG_FRAMEHOOK_H)) |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
260 #undef printf |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
261 #define printf please_use_av_log |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
262 #undef fprintf |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
263 #define fprintf please_use_av_log |
| 431 | 264 #undef puts |
| 265 #define puts please_use_av_log | |
|
403
c22fbe7d64cf
Generate a linking error if perror() is used in libav*
lucabe
parents:
402
diff
changeset
|
266 #undef perror |
|
c22fbe7d64cf
Generate a linking error if perror() is used in libav*
lucabe
parents:
402
diff
changeset
|
267 #define perror please_use_av_log_instead_of_perror |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
268 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
269 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
270 #define CHECKED_ALLOCZ(p, size)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
271 {\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
272 p= av_mallocz(size);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
273 if(p==NULL && (size)!=0){\ |
| 402 | 274 av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
275 goto fail;\ |
|
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 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
278 |
|
411
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
279 #ifndef HAVE_LLRINT |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
280 static av_always_inline long long llrint(double x) |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
281 { |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
282 return rint(x); |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
283 } |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
284 #endif /* HAVE_LLRINT */ |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
285 |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
286 #ifndef HAVE_LRINT |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
287 static av_always_inline long int lrint(double x) |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
288 { |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
289 return rint(x); |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
290 } |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
291 #endif /* HAVE_LRINT */ |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
292 |
|
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
293 #ifndef HAVE_LRINTF |
|
159
039198e96ee2
rename always_inline to av_always_inline and move to common.h
mru
parents:
157
diff
changeset
|
294 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
|
295 { |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
296 return (int)(rint(x)); |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
297 } |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
298 #endif /* HAVE_LRINTF */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
299 |
|
411
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
300 #ifndef HAVE_ROUND |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
301 static av_always_inline double round(double x) |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
302 { |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
303 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5); |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
304 } |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
305 #endif /* HAVE_ROUND */ |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
306 |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
307 #ifndef HAVE_ROUNDF |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
308 static av_always_inline float roundf(float x) |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
309 { |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
310 return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5); |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
311 } |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
312 #endif /* HAVE_ROUNDF */ |
|
d25e027364d6
Check for the presence of llrint(), lrint(), round() and roundf()
diego
parents:
410
diff
changeset
|
313 |
| 392 | 314 #endif /* FFMPEG_INTERNAL_H */ |
