]> git.sesse.net Git - ffmpeg/blob - libavutil/internal.h
842c260028921c16d4a41f1998160caf7bec0695
[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 #include <stdint.h>
30 #include <assert.h>
31
32 #ifndef attribute_used
33 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
34 #    define attribute_used __attribute__((used))
35 #else
36 #    define attribute_used
37 #endif
38 #endif
39
40 #ifndef M_PI
41 #define M_PI    3.14159265358979323846
42 #endif
43
44 #ifndef INT16_MIN
45 #define INT16_MIN       (-0x7fff-1)
46 #endif
47
48 #ifndef INT16_MAX
49 #define INT16_MAX       0x7fff
50 #endif
51
52 #ifndef INT32_MIN
53 #define INT32_MIN       (-0x7fffffff-1)
54 #endif
55
56 #ifndef INT32_MAX
57 #define INT32_MAX       0x7fffffff
58 #endif
59
60 #ifndef UINT32_MAX
61 #define UINT32_MAX      0xffffffff
62 #endif
63
64 #ifndef INT64_MIN
65 #define INT64_MIN       (-0x7fffffffffffffffLL-1)
66 #endif
67
68 #ifndef INT64_MAX
69 #define INT64_MAX INT64_C(9223372036854775807)
70 #endif
71
72 #ifndef UINT64_MAX
73 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
74 #endif
75
76 #ifndef INT_BIT
77 #    if INT_MAX != 2147483647
78 #        define INT_BIT 64
79 #    else
80 #        define INT_BIT 32
81 #    endif
82 #endif
83
84 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
85 #    define PIC
86 #endif
87
88 #include "intreadwrite.h"
89 #include "bswap.h"
90
91 #include <stddef.h>
92 #ifndef offsetof
93 #    define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
94 #endif
95
96 #ifdef __MINGW32__
97 #    ifdef _DEBUG
98 #        define DEBUG
99 #    endif
100
101 #    define snprintf _snprintf
102 #    define vsnprintf _vsnprintf
103
104 #endif /* !__MINGW32__ */
105
106 #ifdef USE_FASTMEMCPY
107 #    include "libvo/fastmemcpy.h"
108 #    define memcpy(a,b,c) fast_memcpy(a,b,c)
109 #endif
110
111 // Use rip-relative addressing if compiling PIC code on x86-64.
112 #if defined(__MINGW32__) || defined(__CYGWIN__) || \
113     defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__))
114 #    if defined(ARCH_X86_64) && defined(PIC)
115 #        define MANGLE(a) "_" #a"(%%rip)"
116 #    else
117 #        define MANGLE(a) "_" #a
118 #    endif
119 #else
120 #    if defined(ARCH_X86_64) && defined(PIC)
121 #        define MANGLE(a) #a"(%%rip)"
122 #    elif defined(CONFIG_DARWIN)
123 #        define MANGLE(a) "_" #a
124 #    else
125 #        define MANGLE(a) #a
126 #    endif
127 #endif
128
129 /* debug stuff */
130
131 #if !defined(DEBUG) && !defined(NDEBUG)
132 #    define NDEBUG
133 #endif
134 #include <assert.h>
135
136 /* dprintf macros */
137 #ifdef DEBUG
138 #    define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
139 #else
140 #    define dprintf(pctx, ...)
141 #endif
142
143 #define av_abort()      do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
144
145 /* math */
146
147 extern const uint32_t ff_inverse[256];
148
149 #if defined(ARCH_X86)
150 #    define FASTDIV(a,b) \
151     ({\
152         int ret,dmy;\
153         asm volatile(\
154             "mull %3"\
155             :"=d"(ret),"=a"(dmy)\
156             :"1"(a),"g"(ff_inverse[b])\
157             );\
158         ret;\
159     })
160 #elif defined(ARCH_ARMV4L)
161 #    define FASTDIV(a,b) \
162     ({\
163         int ret,dmy;\
164         asm volatile(\
165             "umull %1, %0, %2, %3"\
166             :"=&r"(ret),"=&r"(dmy)\
167             :"r"(a),"r"(ff_inverse[b])\
168             );\
169         ret;\
170     })
171 #elif defined(CONFIG_FASTDIV)
172 #    define FASTDIV(a,b)   ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32))
173 #else
174 #    define FASTDIV(a,b)   ((a)/(b))
175 #endif
176
177 extern const uint8_t ff_sqrt_tab[128];
178
179 static inline int ff_sqrt(int a)
180 {
181     int ret=0;
182     int s, b;
183
184     if(a<128) return ff_sqrt_tab[a];
185
186     for(s=30; s>=0; s-=2){
187         ret+=ret;
188         b= (1+2*ret)<<s;
189         if(b<=a){
190             a-=b;
191             ret++;
192         }
193     }
194     return ret;
195 }
196
197 #if defined(ARCH_X86)
198 #define MASK_ABS(mask, level)\
199             asm volatile(\
200                 "cdq                    \n\t"\
201                 "xorl %1, %0            \n\t"\
202                 "subl %1, %0            \n\t"\
203                 : "+a" (level), "=&d" (mask)\
204             );
205 #else
206 #define MASK_ABS(mask, level)\
207             mask= level>>31;\
208             level= (level^mask)-mask;
209 #endif
210
211 #ifdef HAVE_CMOV
212 #define COPY3_IF_LT(x,y,a,b,c,d)\
213 asm volatile (\
214     "cmpl %0, %3        \n\t"\
215     "cmovl %3, %0       \n\t"\
216     "cmovl %4, %1       \n\t"\
217     "cmovl %5, %2       \n\t"\
218     : "+&r" (x), "+&r" (a), "+r" (c)\
219     : "r" (y), "r" (b), "r" (d)\
220 );
221 #else
222 #define COPY3_IF_LT(x,y,a,b,c,d)\
223 if((y)<(x)){\
224      (x)=(y);\
225      (a)=(b);\
226      (c)=(d);\
227 }
228 #endif
229
230 /* avoid usage of various functions */
231 #undef  malloc
232 #define malloc please_use_av_malloc
233 #undef  free
234 #define free please_use_av_free
235 #undef  realloc
236 #define realloc please_use_av_realloc
237 #undef  time
238 #define time time_is_forbidden_due_to_security_issues
239 #undef  rand
240 #define rand rand_is_forbidden_due_to_state_trashing_use_av_random
241 #undef  srand
242 #define srand srand_is_forbidden_due_to_state_trashing_use_av_init_random
243 #undef  random
244 #define random random_is_forbidden_due_to_state_trashing_use_av_random
245 #undef  sprintf
246 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
247 #undef  strcat
248 #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
249 #undef  exit
250 #define exit exit_is_forbidden
251 #if !(defined(LIBAVFORMAT_BUILD) || defined(FRAMEHOOK_H))
252 #undef  printf
253 #define printf please_use_av_log
254 #undef  fprintf
255 #define fprintf please_use_av_log
256 #endif
257
258 #define CHECKED_ALLOCZ(p, size)\
259 {\
260     p= av_mallocz(size);\
261     if(p==NULL && (size)!=0){\
262         perror("malloc");\
263         goto fail;\
264     }\
265 }
266
267 #ifndef HAVE_LRINTF
268 /* XXX: add ISOC specific test to avoid specific BSD testing. */
269 /* better than nothing implementation. */
270 /* btw, rintf() is existing on fbsd too -- alex */
271 static av_always_inline long int lrintf(float x)
272 {
273     return (int)(rint(x));
274 }
275 #endif /* HAVE_LRINTF */
276
277 #endif /* INTERNAL_H */