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
22 * @file libavutil/internal.h
23 * common internal API header
26 #ifndef AVUTIL_INTERNAL_H
27 #define AVUTIL_INTERNAL_H
29 #if !defined(DEBUG) && !defined(NDEBUG)
42 #ifndef attribute_align_arg
43 #if (!defined(__ICC) || __ICC > 1110) && AV_GCC_VERSION_AT_LEAST(4,2)
44 # define attribute_align_arg __attribute__((force_align_arg_pointer))
46 # define attribute_align_arg
50 #ifndef attribute_used
51 #if AV_GCC_VERSION_AT_LEAST(3,1)
52 # define attribute_used __attribute__((used))
54 # define attribute_used
59 #if HAVE_ATTRIBUTE_MAY_ALIAS && (!defined(__ICC) || __ICC > 1110) && AV_GCC_VERSION_AT_LEAST(3,3)
60 # define av_alias __attribute__((may_alias))
67 #define INT16_MIN (-0x7fff - 1)
71 #define INT16_MAX 0x7fff
75 #define INT32_MIN (-0x7fffffff - 1)
79 #define INT32_MAX 0x7fffffff
83 #define UINT32_MAX 0xffffffff
87 #define INT64_MIN (-0x7fffffffffffffffLL - 1)
91 #define INT64_MAX INT64_C(9223372036854775807)
95 #define UINT64_MAX UINT64_C(0xFFFFFFFFFFFFFFFF)
99 # define INT_BIT (CHAR_BIT * sizeof(int))
103 # define offsetof(T, F) ((unsigned int)((char *)&((T *)0)->F))
106 /* Use to export labels from asm. */
107 #define LABEL_MANGLE(a) EXTERN_PREFIX #a
109 // Use rip-relative addressing if compiling PIC code on x86-64.
110 #if ARCH_X86_64 && defined(PIC)
111 # define LOCAL_MANGLE(a) #a "(%%rip)"
113 # define LOCAL_MANGLE(a) #a
116 #define MANGLE(a) EXTERN_PREFIX LOCAL_MANGLE(a)
122 # define dprintf(pctx, ...) av_log(pctx, AV_LOG_DEBUG, __VA_ARGS__)
124 # define dprintf(pctx, ...)
127 #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0)
131 extern const uint8_t ff_sqrt_tab
[256];
133 static inline av_const
unsigned int ff_sqrt(unsigned int a
)
137 if (a
< 255) return (ff_sqrt_tab
[a
+ 1] - 1) >> 4;
138 else if (a
< (1 << 12)) b
= ff_sqrt_tab
[a
>> 4] >> 2;
140 else if (a
< (1 << 14)) b
= ff_sqrt_tab
[a
>> 6] >> 1;
141 else if (a
< (1 << 16)) b
= ff_sqrt_tab
[a
>> 8] ;
144 int s
= av_log2_16bit(a
>> 16) >> 1;
145 unsigned int c
= a
>> (s
+ 2);
146 b
= ff_sqrt_tab
[c
>> (s
+ 8)];
147 b
= FASTDIV(c
,b
) + (b
<< s
);
150 return b
- (a
< b
* b
);
154 #define MASK_ABS(mask, level)\
159 : "+a" (level), "=&d" (mask)\
162 #define MASK_ABS(mask, level)\
164 level = (level ^ mask) - mask;
167 /* avoid usage of dangerous/inappropriate system functions */
169 #define malloc please_use_av_malloc
171 #define free please_use_av_free
173 #define realloc please_use_av_realloc
175 #define time time_is_forbidden_due_to_security_issues
177 #define rand rand_is_forbidden_due_to_state_trashing_use_av_lfg_get
179 #define srand srand_is_forbidden_due_to_state_trashing_use_av_lfg_init
181 #define random random_is_forbidden_due_to_state_trashing_use_av_lfg_get
183 #define sprintf sprintf_is_forbidden_due_to_security_issues_use_snprintf
185 #define strcat strcat_is_forbidden_due_to_security_issues_use_av_strlcat
187 #define exit exit_is_forbidden
188 #ifndef LIBAVFORMAT_BUILD
190 #define printf please_use_av_log_instead_of_printf
192 #define fprintf please_use_av_log_instead_of_fprintf
194 #define puts please_use_av_log_instead_of_puts
196 #define perror please_use_av_log_instead_of_perror
199 #define FF_ALLOC_OR_GOTO(ctx, p, size, label)\
201 p = av_malloc(size);\
202 if (p == NULL && (size) != 0) {\
203 av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
208 #define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)\
210 p = av_mallocz(size);\
211 if (p == NULL && (size) != 0) {\
212 av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
219 #define exp2(x) exp((x) * 0.693147180559945)
220 #endif /* HAVE_EXP2 */
224 #define exp2f(x) exp2(x)
225 #endif /* HAVE_EXP2F */
229 #define llrint(x) rint(x)
230 #endif /* HAVE_LLRINT */
234 #define log2(x) (log(x) * 1.44269504088896340736)
235 #endif /* HAVE_LOG2 */
239 #define log2f(x) log2(x)
240 #endif /* HAVE_LOG2F */
243 static av_always_inline av_const
long int lrint(double x
)
247 #endif /* HAVE_LRINT */
250 static av_always_inline av_const
long int lrintf(float x
)
252 return (int)(rint(x
));
254 #endif /* HAVE_LRINTF */
257 static av_always_inline av_const
double round(double x
)
259 return (x
> 0) ?
floor(x
+ 0.5) : ceil(x
- 0.5);
261 #endif /* HAVE_ROUND */
264 static av_always_inline av_const
float roundf(float x
)
266 return (x
> 0) ?
floor(x
+ 0.5) : ceil(x
- 0.5);
268 #endif /* HAVE_ROUNDF */
271 static av_always_inline av_const
float truncf(float x
)
273 return (x
> 0) ?
floor(x
) : ceil(x
);
275 #endif /* HAVE_TRUNCF */
278 * Returns NULL if CONFIG_SMALL is true, otherwise the argument
279 * without modification. Used to disable the definition of strings
280 * (for example AVCodec long_names).
283 # define NULL_IF_CONFIG_SMALL(x) NULL
285 # define NULL_IF_CONFIG_SMALL(x) x
288 #endif /* AVUTIL_INTERNAL_H */