]> git.sesse.net Git - ffmpeg/blob - libavutil/internal.h
remove dependancy on *malloc()
[ffmpeg] / libavutil / internal.h
1 /*
2  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file internal.h
23  * common internal api header.
24  */
25
26 #ifndef INTERNAL_H
27 #define INTERNAL_H
28
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
38 #if defined(__GNUC__)
39 #    define attribute_unused __attribute__((unused))
40 #else
41 #    define attribute_unused
42 #endif
43 #endif
44
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
102 #define INT64_MAX INT64_C(9223372036854775807)
103 #endif
104
105 #ifndef UINT64_MAX
106 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
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
117 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
118 #    define PIC
119 #endif
120
121 #ifndef ENODATA
122 #    define ENODATA  61
123 #endif
124
125 #include "intreadwrite.h"
126 #include "bswap.h"
127
128 #include <stddef.h>
129 #ifndef offsetof
130 #    define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
131 #endif
132
133 #ifdef __MINGW32__
134 #    ifdef _DEBUG
135 #        define DEBUG
136 #    endif
137
138 #    define snprintf _snprintf
139 #    define vsnprintf _vsnprintf
140
141 #    ifdef CONFIG_WINCE
142 #        define perror(a)
143 #        define abort()
144 #    endif
145
146 /* __MINGW32__ end */
147 #elif defined (CONFIG_OS2)
148 /* OS/2 EMX */
149
150 #    include <float.h>
151
152 #endif /* !__MINGW32__ && CONFIG_OS2 */
153
154 #ifdef USE_FASTMEMCPY
155 #    include "libvo/fastmemcpy.h"
156 #endif
157
158 // Use rip-relative addressing if compiling PIC code on x86-64.
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)"
163 #    else
164 #        define MANGLE(a) "_" #a
165 #    endif
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
175
176 /* debug stuff */
177
178 #if !defined(DEBUG) && !defined(NDEBUG)
179 #    define NDEBUG
180 #endif
181 #include <assert.h>
182
183 /* dprintf macros */
184 #ifdef DEBUG
185 #    define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__)
186 #else
187 #    define dprintf(fmt,...)
188 #endif
189
190 #define av_abort()      do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
191
192 /* math */
193
194 extern const uint32_t ff_inverse[256];
195
196 #if defined(ARCH_X86)
197 #    define FASTDIV(a,b) \
198     ({\
199         int ret,dmy;\
200         asm volatile(\
201             "mull %3"\
202             :"=d"(ret),"=a"(dmy)\
203             :"1"(a),"g"(ff_inverse[b])\
204             );\
205         ret;\
206     })
207 #elif defined(ARCH_ARMV4L)
208 #    define FASTDIV(a,b) \
209     ({\
210         int ret,dmy;\
211         asm volatile(\
212             "umull %1, %0, %2, %3"\
213             :"=&r"(ret),"=&r"(dmy)\
214             :"r"(a),"r"(ff_inverse[b])\
215             );\
216         ret;\
217     })
218 #elif defined(CONFIG_FASTDIV)
219 #    define FASTDIV(a,b)   ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32))
220 #else
221 #    define FASTDIV(a,b)   ((a)/(b))
222 #endif
223
224 extern const uint8_t ff_sqrt_tab[128];
225
226 static inline int ff_sqrt(int a)
227 {
228     int ret=0;
229     int s;
230     int ret_sq=0;
231
232     if(a<128) return ff_sqrt_tab[a];
233
234     for(s=15; s>=0; s--){
235         int b= ret_sq + (1<<(s*2)) + (ret<<s)*2;
236         if(b<=a){
237             ret_sq=b;
238             ret+= 1<<s;
239         }
240     }
241     return ret;
242 }
243
244 #if defined(ARCH_X86)
245 #define MASK_ABS(mask, level)\
246             asm volatile(\
247                 "cdq                    \n\t"\
248                 "xorl %1, %0            \n\t"\
249                 "subl %1, %0            \n\t"\
250                 : "+a" (level), "=&d" (mask)\
251             );
252 #else
253 #define MASK_ABS(mask, level)\
254             mask= level>>31;\
255             level= (level^mask)-mask;
256 #endif
257
258 #ifdef HAVE_CMOV
259 #define COPY3_IF_LT(x,y,a,b,c,d)\
260 asm volatile (\
261     "cmpl %0, %3        \n\t"\
262     "cmovl %3, %0       \n\t"\
263     "cmovl %4, %1       \n\t"\
264     "cmovl %5, %2       \n\t"\
265     : "+r" (x), "+r" (a), "+r" (c)\
266     : "r" (y), "r" (b), "r" (d)\
267 );
268 #else
269 #define COPY3_IF_LT(x,y,a,b,c,d)\
270 if((y)<(x)){\
271      (x)=(y);\
272      (a)=(b);\
273      (c)=(d);\
274 }
275 #endif
276
277 /* avoid usage of various functions */
278 #define malloc please_use_av_malloc
279 #define free please_use_av_free
280 #define realloc please_use_av_realloc
281 #define time time_is_forbidden_due_to_security_issues
282 #define rand rand_is_forbidden_due_to_state_trashing
283 #define srand srand_is_forbidden_due_to_state_trashing
284 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
285 #define strcat strcat_is_forbidden_due_to_security_issues_use_pstrcat
286 #if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H))
287 #define printf please_use_av_log
288 #define fprintf please_use_av_log
289 #endif
290
291 #define CHECKED_ALLOCZ(p, size)\
292 {\
293     p= av_mallocz(size);\
294     if(p==NULL && (size)!=0){\
295         perror("malloc");\
296         goto fail;\
297     }\
298 }
299
300 #ifndef HAVE_LRINTF
301 /* XXX: add ISOC specific test to avoid specific BSD testing. */
302 /* better than nothing implementation. */
303 /* btw, rintf() is existing on fbsd too -- alex */
304 static av_always_inline long int lrintf(float x)
305 {
306 #ifdef __MINGW32__
307 #  ifdef ARCH_X86_32
308     int32_t i;
309     asm volatile(
310         "fistpl %0\n\t"
311         : "=m" (i) : "t" (x) : "st"
312     );
313     return i;
314 #  else
315     /* XXX: incorrect, but make it compile */
316     return (int)(x + (x < 0 ? -0.5 : 0.5));
317 #  endif /* ARCH_X86_32 */
318 #else
319     return (int)(rint(x));
320 #endif /* __MINGW32__ */
321 }
322 #endif /* HAVE_LRINTF */
323
324 #endif /* INTERNAL_H */