]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavutil/internal.h
reduce number of shifts
[frescor/ffmpeg.git] / 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 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
74 #define INT64_MAX INT64_C(9223372036854775807)
75 #endif
76
77 #ifndef UINT64_MAX
78 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
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
89 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
90 #    define PIC
91 #endif
92
93 #include "intreadwrite.h"
94 #include "bswap.h"
95
96 #include <stddef.h>
97 #ifndef offsetof
98 #    define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
99 #endif
100
101 #ifdef __MINGW32__
102 #    ifdef _DEBUG
103 #        define DEBUG
104 #    endif
105
106 #    define snprintf _snprintf
107 #    define vsnprintf _vsnprintf
108
109 /* __MINGW32__ end */
110 #elif defined (CONFIG_OS2)
111 /* OS/2 EMX */
112
113 #    include <float.h>
114
115 #endif /* !__MINGW32__ && CONFIG_OS2 */
116
117 #ifdef USE_FASTMEMCPY
118 #    include "libvo/fastmemcpy.h"
119 #endif
120
121 // Use rip-relative addressing if compiling PIC code on x86-64.
122 #if defined(__MINGW32__) || defined(__CYGWIN__) || \
123     defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__))
124 #    if defined(ARCH_X86_64) && defined(PIC)
125 #        define MANGLE(a) "_" #a"(%%rip)"
126 #    else
127 #        define MANGLE(a) "_" #a
128 #    endif
129 #else
130 #    if defined(ARCH_X86_64) && defined(PIC)
131 #        define MANGLE(a) #a"(%%rip)"
132 #    elif defined(CONFIG_DARWIN)
133 #        define MANGLE(a) "_" #a
134 #    else
135 #        define MANGLE(a) #a
136 #    endif
137 #endif
138
139 /* debug stuff */
140
141 #if !defined(DEBUG) && !defined(NDEBUG)
142 #    define NDEBUG
143 #endif
144 #include <assert.h>
145
146 /* dprintf macros */
147 #ifdef DEBUG
148 #    define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
149 #else
150 #    define dprintf(pctx, ...)
151 #endif
152
153 #define av_abort()      do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
154
155 /* math */
156
157 extern const uint32_t ff_inverse[256];
158
159 #if defined(ARCH_X86)
160 #    define FASTDIV(a,b) \
161     ({\
162         int ret,dmy;\
163         asm volatile(\
164             "mull %3"\
165             :"=d"(ret),"=a"(dmy)\
166             :"1"(a),"g"(ff_inverse[b])\
167             );\
168         ret;\
169     })
170 #elif defined(ARCH_ARMV4L)
171 #    define FASTDIV(a,b) \
172     ({\
173         int ret,dmy;\
174         asm volatile(\
175             "umull %1, %0, %2, %3"\
176             :"=&r"(ret),"=&r"(dmy)\
177             :"r"(a),"r"(ff_inverse[b])\
178             );\
179         ret;\
180     })
181 #elif defined(CONFIG_FASTDIV)
182 #    define FASTDIV(a,b)   ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32))
183 #else
184 #    define FASTDIV(a,b)   ((a)/(b))
185 #endif
186
187 extern const uint8_t ff_sqrt_tab[128];
188
189 static inline int ff_sqrt(int a)
190 {
191     int ret=0;
192     int s, b;
193
194     if(a<128) return ff_sqrt_tab[a];
195
196     for(s=30; s>=0; s-=2){
197         ret+=ret;
198         b= (1+2*ret)<<s;
199         if(b<=a){
200             a-=b;
201             ret++;
202         }
203     }
204     return ret;
205 }
206
207 #if defined(ARCH_X86)
208 #define MASK_ABS(mask, level)\
209             asm volatile(\
210                 "cdq                    \n\t"\
211                 "xorl %1, %0            \n\t"\
212                 "subl %1, %0            \n\t"\
213                 : "+a" (level), "=&d" (mask)\
214             );
215 #else
216 #define MASK_ABS(mask, level)\
217             mask= level>>31;\
218             level= (level^mask)-mask;
219 #endif
220
221 #ifdef HAVE_CMOV
222 #define COPY3_IF_LT(x,y,a,b,c,d)\
223 asm volatile (\
224     "cmpl %0, %3        \n\t"\
225     "cmovl %3, %0       \n\t"\
226     "cmovl %4, %1       \n\t"\
227     "cmovl %5, %2       \n\t"\
228     : "+&r" (x), "+&r" (a), "+r" (c)\
229     : "r" (y), "r" (b), "r" (d)\
230 );
231 #else
232 #define COPY3_IF_LT(x,y,a,b,c,d)\
233 if((y)<(x)){\
234      (x)=(y);\
235      (a)=(b);\
236      (c)=(d);\
237 }
238 #endif
239
240 /* avoid usage of various functions */
241 #define malloc please_use_av_malloc
242 #define free please_use_av_free
243 #define realloc please_use_av_realloc
244 #define time time_is_forbidden_due_to_security_issues
245 #define rand rand_is_forbidden_due_to_state_trashing
246 #define srand srand_is_forbidden_due_to_state_trashing
247 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
248 #define strcat strcat_is_forbidden_due_to_security_issues_use_pstrcat
249 #define exit exit_is_forbidden
250 #if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H))
251 #define printf please_use_av_log
252 #define fprintf please_use_av_log
253 #endif
254
255 #define CHECKED_ALLOCZ(p, size)\
256 {\
257     p= av_mallocz(size);\
258     if(p==NULL && (size)!=0){\
259         perror("malloc");\
260         goto fail;\
261     }\
262 }
263
264 #ifndef HAVE_LRINTF
265 /* XXX: add ISOC specific test to avoid specific BSD testing. */
266 /* better than nothing implementation. */
267 /* btw, rintf() is existing on fbsd too -- alex */
268 static av_always_inline long int lrintf(float x)
269 {
270 #ifdef __MINGW32__
271 #  ifdef ARCH_X86_32
272     int32_t i;
273     asm volatile(
274         "fistpl %0\n\t"
275         : "=m" (i) : "t" (x) : "st"
276     );
277     return i;
278 #  else
279     /* XXX: incorrect, but make it compile */
280     return (int)(x + (x < 0 ? -0.5 : 0.5));
281 #  endif /* ARCH_X86_32 */
282 #else
283     return (int)(rint(x));
284 #endif /* __MINGW32__ */
285 }
286 #endif /* HAVE_LRINTF */
287
288 #endif /* INTERNAL_H */