Commit | Line | Data |
---|---|---|
04d7f601 DB |
1 | /* |
2 | * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> | |
3 | * | |
b78e7197 DB |
4 | * This file is part of FFmpeg. |
5 | * | |
6 | * FFmpeg is free software; you can redistribute it and/or | |
04d7f601 DB |
7 | * modify it under the terms of the GNU Lesser General Public |
8 | * License as published by the Free Software Foundation; either | |
b78e7197 | 9 | * version 2.1 of the License, or (at your option) any later version. |
04d7f601 | 10 | * |
b78e7197 | 11 | * FFmpeg is distributed in the hope that it will be useful, |
04d7f601 DB |
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 | |
b78e7197 | 17 | * License along with FFmpeg; if not, write to the Free Software |
04d7f601 DB |
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
19 | */ | |
20 | ||
05020c89 RD |
21 | /** |
22 | * @file internal.h | |
23 | * common internal api header. | |
24 | */ | |
25 | ||
5b21bdab DB |
26 | #ifndef FFMPEG_INTERNAL_H |
27 | #define FFMPEG_INTERNAL_H | |
05020c89 | 28 | |
318049b8 MR |
29 | #if !defined(DEBUG) && !defined(NDEBUG) |
30 | # define NDEBUG | |
31 | #endif | |
32 | ||
99545457 | 33 | #include <stdint.h> |
318049b8 MR |
34 | #include <stddef.h> |
35 | #include <assert.h> | |
99545457 | 36 | |
5e4c7ca2 RP |
37 | #ifndef attribute_align_arg |
38 | #if defined(__GNUC__) && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__>1) | |
39 | # define attribute_align_arg __attribute__((force_align_arg_pointer)) | |
40 | #else | |
41 | # define attribute_align_arg | |
42 | #endif | |
43 | #endif | |
44 | ||
5403f857 MR |
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 | ||
8008a043 DB |
53 | /* Use Apple-specific AltiVec syntax for vector declarations when necessary. */ |
54 | #ifdef __APPLE_CC__ | |
55 | #define AVV(x...) (x) | |
56 | #else | |
57 | #define AVV(x...) {x} | |
58 | #endif | |
59 | ||
cd107896 MR |
60 | #ifndef M_PI |
61 | #define M_PI 3.14159265358979323846 | |
62 | #endif | |
63 | ||
cd107896 MR |
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 | |
8da9266c | 89 | #define INT64_MAX INT64_C(9223372036854775807) |
cd107896 MR |
90 | #endif |
91 | ||
92 | #ifndef UINT64_MAX | |
8da9266c | 93 | #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF) |
cd107896 MR |
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 | ||
05020c89 RD |
104 | #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC) |
105 | # define PIC | |
106 | #endif | |
107 | ||
a087028a | 108 | #include "config.h" |
cf1e119b | 109 | #include "intreadwrite.h" |
aab77159 RD |
110 | #include "bswap.h" |
111 | ||
05020c89 | 112 | #ifndef offsetof |
635eb0cc | 113 | # define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F)) |
05020c89 RD |
114 | #endif |
115 | ||
635eb0cc MR |
116 | #ifdef USE_FASTMEMCPY |
117 | # include "libvo/fastmemcpy.h" | |
6f74b71e | 118 | # define memcpy(a,b,c) fast_memcpy(a,b,c) |
635eb0cc | 119 | #endif |
05020c89 RD |
120 | |
121 | // Use rip-relative addressing if compiling PIC code on x86-64. | |
b4d96ba2 MR |
122 | #if defined(ARCH_X86_64) && defined(PIC) |
123 | # define MANGLE(a) EXTERN_PREFIX #a"(%%rip)" | |
edfd6975 | 124 | #else |
b4d96ba2 | 125 | # define MANGLE(a) EXTERN_PREFIX #a |
635eb0cc | 126 | #endif |
05020c89 RD |
127 | |
128 | /* debug stuff */ | |
129 | ||
05020c89 | 130 | /* dprintf macros */ |
635eb0cc | 131 | #ifdef DEBUG |
318c5e05 | 132 | # define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__) |
635eb0cc | 133 | #else |
318c5e05 | 134 | # define dprintf(pctx, ...) |
635eb0cc | 135 | #endif |
05020c89 | 136 | |
635eb0cc | 137 | #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0) |
05020c89 | 138 | |
7e5f82dc MR |
139 | /* math */ |
140 | ||
36cd3069 | 141 | extern const uint32_t ff_inverse[256]; |
05020c89 | 142 | |
3cd52279 | 143 | #if defined(ARCH_X86) |
05020c89 RD |
144 | # define FASTDIV(a,b) \ |
145 | ({\ | |
146 | int ret,dmy;\ | |
147 | asm volatile(\ | |
148 | "mull %3"\ | |
149 | :"=d"(ret),"=a"(dmy)\ | |
36cd3069 | 150 | :"1"(a),"g"(ff_inverse[b])\ |
05020c89 RD |
151 | );\ |
152 | ret;\ | |
153 | }) | |
eeebe6ad SS |
154 | #elif defined(ARCH_ARMV4L) |
155 | # define FASTDIV(a,b) \ | |
156 | ({\ | |
157 | int ret,dmy;\ | |
158 | asm volatile(\ | |
159 | "umull %1, %0, %2, %3"\ | |
160 | :"=&r"(ret),"=&r"(dmy)\ | |
36cd3069 | 161 | :"r"(a),"r"(ff_inverse[b])\ |
eeebe6ad SS |
162 | );\ |
163 | ret;\ | |
164 | }) | |
05020c89 | 165 | #elif defined(CONFIG_FASTDIV) |
36cd3069 | 166 | # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32)) |
05020c89 RD |
167 | #else |
168 | # define FASTDIV(a,b) ((a)/(b)) | |
169 | #endif | |
170 | ||
c448a096 | 171 | extern const uint8_t ff_sqrt_tab[256]; |
05020c89 | 172 | |
c448a096 MN |
173 | static inline int av_log2_16bit(unsigned int v); |
174 | ||
2119bb8f | 175 | static inline unsigned int ff_sqrt(unsigned int a) |
05020c89 | 176 | { |
c448a096 MN |
177 | unsigned int b; |
178 | ||
179 | if(a<255) return (ff_sqrt_tab[a+1]-1)>>4; | |
180 | else if(a<(1<<12)) b= ff_sqrt_tab[a>>4 ]>>2; | |
181 | #ifndef CONFIG_SMALL | |
182 | else if(a<(1<<14)) b= ff_sqrt_tab[a>>6 ]>>1; | |
183 | else if(a<(1<<16)) b= ff_sqrt_tab[a>>8 ] ; | |
184 | #endif | |
185 | else{ | |
186 | int s= av_log2_16bit(a>>16)>>1; | |
187 | unsigned int c= a>>(s+2); | |
188 | b= ff_sqrt_tab[c>>(s+8)]; | |
189 | b= FASTDIV(c,b) + (b<<s); | |
05020c89 | 190 | } |
c448a096 MN |
191 | |
192 | return b - (a<b*b); | |
05020c89 RD |
193 | } |
194 | ||
3cd52279 | 195 | #if defined(ARCH_X86) |
05020c89 RD |
196 | #define MASK_ABS(mask, level)\ |
197 | asm volatile(\ | |
7e14b808 | 198 | "cltd \n\t"\ |
05020c89 RD |
199 | "xorl %1, %0 \n\t"\ |
200 | "subl %1, %0 \n\t"\ | |
201 | : "+a" (level), "=&d" (mask)\ | |
202 | ); | |
203 | #else | |
204 | #define MASK_ABS(mask, level)\ | |
205 | mask= level>>31;\ | |
206 | level= (level^mask)-mask; | |
207 | #endif | |
208 | ||
94e4c3a3 | 209 | #ifdef HAVE_CMOV |
05020c89 RD |
210 | #define COPY3_IF_LT(x,y,a,b,c,d)\ |
211 | asm volatile (\ | |
212 | "cmpl %0, %3 \n\t"\ | |
213 | "cmovl %3, %0 \n\t"\ | |
214 | "cmovl %4, %1 \n\t"\ | |
215 | "cmovl %5, %2 \n\t"\ | |
8c2e2040 | 216 | : "+&r" (x), "+&r" (a), "+r" (c)\ |
05020c89 RD |
217 | : "r" (y), "r" (b), "r" (d)\ |
218 | ); | |
219 | #else | |
220 | #define COPY3_IF_LT(x,y,a,b,c,d)\ | |
221 | if((y)<(x)){\ | |
222 | (x)=(y);\ | |
223 | (a)=(b);\ | |
224 | (c)=(d);\ | |
225 | } | |
226 | #endif | |
227 | ||
228 | /* avoid usage of various functions */ | |
84662c01 | 229 | #undef malloc |
05020c89 | 230 | #define malloc please_use_av_malloc |
84662c01 | 231 | #undef free |
05020c89 | 232 | #define free please_use_av_free |
84662c01 | 233 | #undef realloc |
05020c89 | 234 | #define realloc please_use_av_realloc |
84662c01 | 235 | #undef time |
05020c89 | 236 | #define time time_is_forbidden_due_to_security_issues |
84662c01 | 237 | #undef rand |
3299fb45 | 238 | #define rand rand_is_forbidden_due_to_state_trashing_use_av_random |
84662c01 | 239 | #undef srand |
3299fb45 | 240 | #define srand srand_is_forbidden_due_to_state_trashing_use_av_init_random |
84662c01 | 241 | #undef random |
3299fb45 | 242 | #define random random_is_forbidden_due_to_state_trashing_use_av_random |
84662c01 | 243 | #undef sprintf |
05020c89 | 244 | #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf |
84662c01 | 245 | #undef strcat |
272605c7 | 246 | #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat |
84662c01 | 247 | #undef exit |
c367d067 | 248 | #define exit exit_is_forbidden |
4f9c008c | 249 | #if !(defined(LIBAVFORMAT_BUILD) || defined(FFMPEG_FRAMEHOOK_H)) |
84662c01 | 250 | #undef printf |
05020c89 | 251 | #define printf please_use_av_log |
84662c01 | 252 | #undef fprintf |
05020c89 | 253 | #define fprintf please_use_av_log |
59ec6991 DB |
254 | #undef puts |
255 | #define puts please_use_av_log | |
c5a2fe8f LA |
256 | #undef perror |
257 | #define perror please_use_av_log_instead_of_perror | |
05020c89 RD |
258 | #endif |
259 | ||
260 | #define CHECKED_ALLOCZ(p, size)\ | |
261 | {\ | |
262 | p= av_mallocz(size);\ | |
263 | if(p==NULL && (size)!=0){\ | |
7f0cd6a5 | 264 | av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\ |
05020c89 RD |
265 | goto fail;\ |
266 | }\ | |
267 | } | |
268 | ||
a33cab3a | 269 | #ifndef HAVE_LLRINT |
2119bb8f | 270 | static av_always_inline long long llrint(double x) |
a33cab3a MK |
271 | { |
272 | return rint(x); | |
273 | } | |
274 | #endif /* HAVE_LLRINT */ | |
275 | ||
276 | #ifndef HAVE_LRINT | |
2119bb8f | 277 | static av_always_inline long int lrint(double x) |
a33cab3a MK |
278 | { |
279 | return rint(x); | |
280 | } | |
281 | #endif /* HAVE_LRINT */ | |
282 | ||
05020c89 | 283 | #ifndef HAVE_LRINTF |
2119bb8f | 284 | static av_always_inline long int lrintf(float x) |
05020c89 | 285 | { |
05020c89 | 286 | return (int)(rint(x)); |
05020c89 RD |
287 | } |
288 | #endif /* HAVE_LRINTF */ | |
289 | ||
a33cab3a | 290 | #ifndef HAVE_ROUND |
2119bb8f | 291 | static av_always_inline double round(double x) |
a33cab3a MK |
292 | { |
293 | return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5); | |
294 | } | |
295 | #endif /* HAVE_ROUND */ | |
296 | ||
297 | #ifndef HAVE_ROUNDF | |
2119bb8f | 298 | static av_always_inline float roundf(float x) |
a33cab3a MK |
299 | { |
300 | return (x > 0) ? floor(x + 0.5) : ceil(x - 0.5); | |
301 | } | |
302 | #endif /* HAVE_ROUNDF */ | |
303 | ||
5b21bdab | 304 | #endif /* FFMPEG_INTERNAL_H */ |