Mercurial > libavutil.hg
annotate internal.h @ 366:4d3f4347b718 libavutil
move #include of system headers to top of file
| author | mru |
|---|---|
| date | Sat, 14 Jul 2007 14:34:40 +0000 |
| parents | 7f9e8e77c86b |
| children | 8805bba131a9 |
| 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 |
| 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 |
| 154 | 37 #ifndef attribute_used |
| 38 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0) | |
| 39 # define attribute_used __attribute__((used)) | |
| 40 #else | |
| 41 # define attribute_used | |
| 42 #endif | |
| 43 #endif | |
| 44 | |
| 155 | 45 #ifndef M_PI |
| 46 #define M_PI 3.14159265358979323846 | |
| 47 #endif | |
| 48 | |
| 49 #ifndef INT16_MIN | |
| 50 #define INT16_MIN (-0x7fff-1) | |
| 51 #endif | |
| 52 | |
| 53 #ifndef INT16_MAX | |
| 54 #define INT16_MAX 0x7fff | |
| 55 #endif | |
| 56 | |
| 57 #ifndef INT32_MIN | |
| 58 #define INT32_MIN (-0x7fffffff-1) | |
| 59 #endif | |
| 60 | |
| 61 #ifndef INT32_MAX | |
| 62 #define INT32_MAX 0x7fffffff | |
| 63 #endif | |
| 64 | |
| 65 #ifndef UINT32_MAX | |
| 66 #define UINT32_MAX 0xffffffff | |
| 67 #endif | |
| 68 | |
| 69 #ifndef INT64_MIN | |
| 70 #define INT64_MIN (-0x7fffffffffffffffLL-1) | |
| 71 #endif | |
| 72 | |
| 73 #ifndef INT64_MAX | |
| 156 | 74 #define INT64_MAX INT64_C(9223372036854775807) |
| 155 | 75 #endif |
| 76 | |
| 77 #ifndef UINT64_MAX | |
| 156 | 78 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF) |
| 155 | 79 #endif |
| 80 | |
| 81 #ifndef INT_BIT | |
| 82 # if INT_MAX != 2147483647 | |
| 83 # define INT_BIT 64 | |
| 84 # else | |
| 85 # define INT_BIT 32 | |
| 86 # endif | |
| 87 #endif | |
| 88 | |
|
57
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
89 #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
|
90 # define PIC |
|
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
91 #endif |
|
4d00c7c7d07d
Make ffmpeg better support pic - from Diego Petten? <flameeyes@gentoo.org>
lu_zero
parents:
55
diff
changeset
|
92 |
|
152
5b211d03227b
Move BE_*/LE_*/ST*/LD* macros to a common place. Some further
reimar
parents:
143
diff
changeset
|
93 #include "intreadwrite.h" |
|
89
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
94 #include "bswap.h" |
|
59433f391f2d
do not include bswap.h in common.h for external programs, since the former
reimar
parents:
80
diff
changeset
|
95 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
96 #ifndef offsetof |
| 138 | 97 # 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
|
98 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
99 |
| 138 | 100 #ifdef USE_FASTMEMCPY |
| 101 # include "libvo/fastmemcpy.h" | |
| 340 | 102 # define memcpy(a,b,c) fast_memcpy(a,b,c) |
| 138 | 103 #endif |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
104 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
105 // Use rip-relative addressing if compiling PIC code on x86-64. |
| 138 | 106 #if defined(__MINGW32__) || defined(__CYGWIN__) || \ |
| 107 defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__)) | |
| 108 # if defined(ARCH_X86_64) && defined(PIC) | |
| 109 # define MANGLE(a) "_" #a"(%%rip)" | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
110 # else |
| 138 | 111 # define MANGLE(a) "_" #a |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
112 # endif |
| 138 | 113 #else |
| 114 # if defined(ARCH_X86_64) && defined(PIC) | |
| 115 # define MANGLE(a) #a"(%%rip)" | |
| 116 # elif defined(CONFIG_DARWIN) | |
| 117 # define MANGLE(a) "_" #a | |
| 118 # else | |
| 119 # define MANGLE(a) #a | |
| 120 # endif | |
| 121 #endif | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
122 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
123 /* debug stuff */ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
124 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
125 /* dprintf macros */ |
| 138 | 126 #ifdef DEBUG |
| 285 | 127 # define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__) |
| 138 | 128 #else |
| 285 | 129 # define dprintf(pctx, ...) |
| 138 | 130 #endif |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
131 |
| 138 | 132 #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
|
133 |
| 143 | 134 /* math */ |
| 135 | |
| 134 | 136 extern const uint32_t ff_inverse[256]; |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
137 |
| 125 | 138 #if defined(ARCH_X86) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
139 # define FASTDIV(a,b) \ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
140 ({\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
141 int ret,dmy;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
142 asm volatile(\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
143 "mull %3"\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
144 :"=d"(ret),"=a"(dmy)\ |
| 134 | 145 :"1"(a),"g"(ff_inverse[b])\ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
146 );\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
147 ret;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
148 }) |
|
114
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
149 #elif defined(ARCH_ARMV4L) |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
150 # define FASTDIV(a,b) \ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
151 ({\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
152 int ret,dmy;\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
153 asm volatile(\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
154 "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
|
155 :"=&r"(ret),"=&r"(dmy)\ |
| 134 | 156 :"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
|
157 );\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
158 ret;\ |
|
37779851c665
add FASTDIV macro for ARM. Reported speed-up on MPEG-4 decoding: 1.8%
gpoirier
parents:
108
diff
changeset
|
159 }) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
160 #elif defined(CONFIG_FASTDIV) |
| 134 | 161 # 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
|
162 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
163 # define FASTDIV(a,b) ((a)/(b)) |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
164 #endif |
| 12 | 165 |
| 157 | 166 extern const uint8_t ff_sqrt_tab[128]; |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
167 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
168 static inline int ff_sqrt(int a) |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
169 { |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
170 int ret=0; |
| 334 | 171 int s, b; |
| 12 | 172 |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
173 if(a<128) return ff_sqrt_tab[a]; |
| 12 | 174 |
| 334 | 175 for(s=30; s>=0; s-=2){ |
| 176 ret+=ret; | |
| 177 b= (1+2*ret)<<s; | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
178 if(b<=a){ |
| 333 | 179 a-=b; |
| 334 | 180 ret++; |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
181 } |
|
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 return ret; |
|
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 |
| 125 | 186 #if defined(ARCH_X86) |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
187 #define MASK_ABS(mask, level)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
188 asm volatile(\ |
| 13 | 189 "cdq \n\t"\ |
| 190 "xorl %1, %0 \n\t"\ | |
| 191 "subl %1, %0 \n\t"\ | |
| 192 : "+a" (level), "=&d" (mask)\ | |
| 193 ); | |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
194 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
195 #define MASK_ABS(mask, level)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
196 mask= level>>31;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
197 level= (level^mask)-mask; |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
198 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
199 |
|
121
69714d5e1561
Protect code that uses CMOV instructions with HAVE_CMOV,
gpoirier
parents:
116
diff
changeset
|
200 #ifdef HAVE_CMOV |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
201 #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
|
202 asm volatile (\ |
| 13 | 203 "cmpl %0, %3 \n\t"\ |
| 204 "cmovl %3, %0 \n\t"\ | |
| 205 "cmovl %4, %1 \n\t"\ | |
| 206 "cmovl %5, %2 \n\t"\ | |
|
323
0e5545f9a454
Add first and second output to earlyclobbers in COPY3_IF_LT macro.
diego
parents:
321
diff
changeset
|
207 : "+&r" (x), "+&r" (a), "+r" (c)\ |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
208 : "r" (y), "r" (b), "r" (d)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
209 ); |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
210 #else |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
211 #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
|
212 if((y)<(x)){\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
213 (x)=(y);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
214 (a)=(b);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
215 (c)=(d);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
216 } |
|
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 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
219 /* 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
|
220 #undef malloc |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
221 #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
|
222 #undef free |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
223 #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
|
224 #undef realloc |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
225 #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
|
226 #undef time |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
227 #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
|
228 #undef rand |
| 355 | 229 #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
|
230 #undef srand |
| 355 | 231 #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
|
232 #undef random |
| 355 | 233 #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
|
234 #undef sprintf |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
235 #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
|
236 #undef strcat |
| 349 | 237 #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
|
238 #undef exit |
| 321 | 239 #define exit exit_is_forbidden |
|
353
05c01c4c1ca9
Remove leading underscores from specifiers, they are reserved.
diego
parents:
349
diff
changeset
|
240 #if !(defined(LIBAVFORMAT_BUILD) || defined(FRAMEHOOK_H)) |
|
359
b951d460bcb4
undef forbidden names before we #define them in case they are macros in libc
mru
parents:
355
diff
changeset
|
241 #undef printf |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
242 #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
|
243 #undef fprintf |
|
0
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
244 #define fprintf please_use_av_log |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
245 #endif |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
246 |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
247 #define CHECKED_ALLOCZ(p, size)\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
248 {\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
249 p= av_mallocz(size);\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
250 if(p==NULL && (size)!=0){\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
251 perror("malloc");\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
252 goto fail;\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
253 }\ |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
254 } |
|
ee8f44bb7c4d
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
diff
changeset
|
255 |
|
4
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
256 #ifndef HAVE_LRINTF |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
257 /* 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
|
258 /* better than nothing implementation. */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
259 /* 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
|
260 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
|
261 { |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
262 return (int)(rint(x)); |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
263 } |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
264 #endif /* HAVE_LRINTF */ |
|
26a00aee5eac
Move lrintf implementation from libavcodec/dsputil.h to libavutil/common.h
diego
parents:
3
diff
changeset
|
265 |
|
80
624fc3ad183a
Split common.h in two parts, purely internal stuff (internal.h) and things
reimar
parents:
75
diff
changeset
|
266 #endif /* INTERNAL_H */ |
