794d9dc3519c1c8d0156a22568ca0fb07f7625c0
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
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.
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.
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
23 * common internal api header.
29 #ifndef attribute_used
30 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
31 # define attribute_used __attribute__((used))
33 # define attribute_used
37 #ifndef attribute_unused
39 # define attribute_unused __attribute__((unused))
41 # define attribute_unused
46 #define M_PI 3.14159265358979323846
70 #define PRIdFAST16 PRId32
74 #define PRIdFAST32 PRId32
78 #define INT16_MIN (-0x7fff-1)
82 #define INT16_MAX 0x7fff
86 #define INT32_MIN (-0x7fffffff-1)
90 #define INT32_MAX 0x7fffffff
94 #define UINT32_MAX 0xffffffff
98 #define INT64_MIN (-0x7fffffffffffffffLL-1)
102 #define INT64_MAX INT64_C(9223372036854775807)
106 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
110 # if INT_MAX != 2147483647
117 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
121 #include "intreadwrite.h"
126 # define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
134 # define snprintf _snprintf
135 # define vsnprintf _vsnprintf
142 /* __MINGW32__ end */
143 #elif defined (CONFIG_OS2)
148 #endif /* !__MINGW32__ && CONFIG_OS2 */
150 #ifdef USE_FASTMEMCPY
151 # include "libvo/fastmemcpy.h"
154 // Use rip-relative addressing if compiling PIC code on x86-64.
155 #if defined(__MINGW32__) || defined(__CYGWIN__) || \
156 defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__))
157 # if defined(ARCH_X86_64) && defined(PIC)
158 # define MANGLE(a) "_" #a"(%%rip)"
160 # define MANGLE(a) "_" #a
163 # if defined(ARCH_X86_64) && defined(PIC)
164 # define MANGLE(a) #a"(%%rip)"
165 # elif defined(CONFIG_DARWIN)
166 # define MANGLE(a) "_" #a
168 # define MANGLE(a) #a
174 #if !defined(DEBUG) && !defined(NDEBUG)
181 # define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__)
183 # define dprintf(fmt,...)
186 #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
190 extern const uint32_t ff_inverse
[256];
192 #if defined(ARCH_X86)
193 # define FASTDIV(a,b) \
198 :"=d"(ret),"=a"(dmy)\
199 :"1"(a),"g"(ff_inverse[b])\
203 #elif defined(ARCH_ARMV4L)
204 # define FASTDIV(a,b) \
208 "umull %1, %0, %2, %3"\
209 :"=&r"(ret),"=&r"(dmy)\
210 :"r"(a),"r"(ff_inverse[b])\
214 #elif defined(CONFIG_FASTDIV)
215 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32))
217 # define FASTDIV(a,b) ((a)/(b))
220 extern const uint8_t ff_sqrt_tab
[128];
222 static inline int ff_sqrt(int a
)
228 if(a
<128) return ff_sqrt_tab
[a
];
230 for(s
=15; s
>=0; s
--){
231 int b
= ret_sq
+ (1<<(s
*2)) + (ret
<<s
)*2;
240 #if defined(ARCH_X86)
241 #define MASK_ABS(mask, level)\
246 : "+a" (level), "=&d" (mask)\
249 #define MASK_ABS(mask, level)\
251 level= (level^mask)-mask;
255 #define COPY3_IF_LT(x,y,a,b,c,d)\
261 : "+r" (x), "+r" (a), "+r" (c)\
262 : "r" (y), "r" (b), "r" (d)\
265 #define COPY3_IF_LT(x,y,a,b,c,d)\
273 /* avoid usage of various functions */
274 #define malloc please_use_av_malloc
275 #define free please_use_av_free
276 #define realloc please_use_av_realloc
277 #define time time_is_forbidden_due_to_security_issues
278 #define rand rand_is_forbidden_due_to_state_trashing
279 #define srand srand_is_forbidden_due_to_state_trashing
280 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
281 #define strcat strcat_is_forbidden_due_to_security_issues_use_pstrcat
282 #if !(defined(LIBAVFORMAT_BUILD) || defined(_FRAMEHOOK_H))
283 #define printf please_use_av_log
284 #define fprintf please_use_av_log
287 #define CHECKED_ALLOCZ(p, size)\
289 p= av_mallocz(size);\
290 if(p==NULL && (size)!=0){\
297 /* XXX: add ISOC specific test to avoid specific BSD testing. */
298 /* better than nothing implementation. */
299 /* btw, rintf() is existing on fbsd too -- alex */
300 static av_always_inline
long int lrintf(float x
)
307 : "=m" (i
) : "t" (x
) : "st"
311 /* XXX: incorrect, but make it compile */
312 return (int)(x
+ (x
< 0 ?
-0.5 : 0.5));
313 # endif /* ARCH_X86_32 */
315 return (int)(rint(x
));
316 #endif /* __MINGW32__ */
318 #endif /* HAVE_LRINTF */
320 #endif /* INTERNAL_H */