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.
26 #ifndef FFMPEG_INTERNAL_H
27 #define FFMPEG_INTERNAL_H
29 #if !defined(DEBUG) && !defined(NDEBUG)
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))
41 # define attribute_align_arg
45 #ifndef attribute_used
46 #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
47 # define attribute_used __attribute__((used))
49 # define attribute_used
53 /* Use Apple-specific AltiVec syntax for vector declarations when necessary. */
61 #define M_PI 3.14159265358979323846
65 #define INT16_MIN (-0x7fff-1)
69 #define INT16_MAX 0x7fff
73 #define INT32_MIN (-0x7fffffff-1)
77 #define INT32_MAX 0x7fffffff
81 #define UINT32_MAX 0xffffffff
85 #define INT64_MIN (-0x7fffffffffffffffLL-1)
89 #define INT64_MAX INT64_C(9223372036854775807)
93 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
97 # if INT_MAX != 2147483647
104 #if ( defined(__PIC__) || defined(__pic__) ) && ! defined(PIC)
108 #include "intreadwrite.h"
112 # define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
115 #ifdef USE_FASTMEMCPY
116 # include "libvo/fastmemcpy.h"
117 # define memcpy(a,b,c) fast_memcpy(a,b,c)
120 // Use rip-relative addressing if compiling PIC code on x86-64.
121 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__DJGPP__) || \
122 defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__))
123 # if defined(ARCH_X86_64) && defined(PIC)
124 # define MANGLE(a) "_" #a"(%%rip)"
126 # define MANGLE(a) "_" #a
129 # if defined(ARCH_X86_64) && defined(PIC)
130 # define MANGLE(a) #a"(%%rip)"
131 # elif defined(__APPLE__)
132 # define MANGLE(a) "_" #a
134 # define MANGLE(a) #a
142 # define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
144 # define dprintf(pctx, ...)
147 #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
151 extern const uint32_t ff_inverse
[256];
153 #if defined(ARCH_X86)
154 # define FASTDIV(a,b) \
159 :"=d"(ret),"=a"(dmy)\
160 :"1"(a),"g"(ff_inverse[b])\
164 #elif defined(ARCH_ARMV4L)
165 # define FASTDIV(a,b) \
169 "umull %1, %0, %2, %3"\
170 :"=&r"(ret),"=&r"(dmy)\
171 :"r"(a),"r"(ff_inverse[b])\
175 #elif defined(CONFIG_FASTDIV)
176 # define FASTDIV(a,b) ((uint32_t)((((uint64_t)a)*ff_inverse[b])>>32))
178 # define FASTDIV(a,b) ((a)/(b))
181 extern const uint8_t ff_sqrt_tab
[256];
183 static inline int av_log2_16bit(unsigned int v
);
185 static inline unsigned int ff_sqrt(unsigned int a
)
189 if(a
<255) return (ff_sqrt_tab
[a
+1]-1)>>4;
190 else if(a
<(1<<12)) b
= ff_sqrt_tab
[a
>>4 ]>>2;
192 else if(a
<(1<<14)) b
= ff_sqrt_tab
[a
>>6 ]>>1;
193 else if(a
<(1<<16)) b
= ff_sqrt_tab
[a
>>8 ] ;
196 int s
= av_log2_16bit(a
>>16)>>1;
197 unsigned int c
= a
>>(s
+2);
198 b
= ff_sqrt_tab
[c
>>(s
+8)];
199 b
= FASTDIV(c
,b
) + (b
<<s
);
205 #if defined(ARCH_X86)
206 #define MASK_ABS(mask, level)\
211 : "+a" (level), "=&d" (mask)\
214 #define MASK_ABS(mask, level)\
216 level= (level^mask)-mask;
220 #define COPY3_IF_LT(x,y,a,b,c,d)\
226 : "+&r" (x), "+&r" (a), "+r" (c)\
227 : "r" (y), "r" (b), "r" (d)\
230 #define COPY3_IF_LT(x,y,a,b,c,d)\
238 /* avoid usage of various functions */
240 #define malloc please_use_av_malloc
242 #define free please_use_av_free
244 #define realloc please_use_av_realloc
246 #define time time_is_forbidden_due_to_security_issues
248 #define rand rand_is_forbidden_due_to_state_trashing_use_av_random
250 #define srand srand_is_forbidden_due_to_state_trashing_use_av_init_random
252 #define random random_is_forbidden_due_to_state_trashing_use_av_random
254 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
256 #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
258 #define exit exit_is_forbidden
259 #if !(defined(LIBAVFORMAT_BUILD) || defined(FFMPEG_FRAMEHOOK_H))
261 #define printf please_use_av_log
263 #define fprintf please_use_av_log
265 #define puts please_use_av_log
267 #define perror please_use_av_log_instead_of_perror
270 #define CHECKED_ALLOCZ(p, size)\
272 p= av_mallocz(size);\
273 if(p==NULL && (size)!=0){\
274 av_log(NULL, AV_LOG_ERROR, "Cannot allocate memory.");\
280 static av_always_inline
long long llrint(double x
)
284 #endif /* HAVE_LLRINT */
287 static av_always_inline
long int lrint(double x
)
291 #endif /* HAVE_LRINT */
294 static av_always_inline
long int lrintf(float x
)
296 return (int)(rint(x
));
298 #endif /* HAVE_LRINTF */
301 static av_always_inline
double round(double x
)
303 return (x
> 0) ? floor(x
+ 0.5) : ceil(x
- 0.5);
305 #endif /* HAVE_ROUND */
308 static av_always_inline
float roundf(float x
)
310 return (x
> 0) ? floor(x
+ 0.5) : ceil(x
- 0.5);
312 #endif /* HAVE_ROUNDF */
314 #endif /* FFMPEG_INTERNAL_H */