Go to the documentation of this file.
26 #ifndef AVUTIL_INTERNAL_H
27 #define AVUTIL_INTERNAL_H
29 #if !defined(DEBUG) && !defined(NDEBUG)
51 #ifndef attribute_align_arg
52 #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
53 # define attribute_align_arg __attribute__((force_align_arg_pointer))
55 # define attribute_align_arg
59 #if defined(_MSC_VER) && CONFIG_SHARED
60 # define av_export __declspec(dllimport)
66 # define INT_BIT (CHAR_BIT * sizeof(int))
69 #define FF_MEMORY_POISON 0x2a
75 #define LOCAL_ALIGNED_A(a, t, v, s, o, ...) \
76 uint8_t la_##v[sizeof(t s o) + (a)]; \
77 t (*v) o = (void *)FFALIGN((uintptr_t)la_##v, a)
79 #define LOCAL_ALIGNED_D(a, t, v, s, o, ...) \
80 DECLARE_ALIGNED(a, t, la_##v) s o; \
83 #define LOCAL_ALIGNED(a, t, v, ...) E1(LOCAL_ALIGNED_A(a, t, v, __VA_ARGS__,,))
85 #if HAVE_LOCAL_ALIGNED_8
86 # define LOCAL_ALIGNED_8(t, v, ...) E1(LOCAL_ALIGNED_D(8, t, v, __VA_ARGS__,,))
88 # define LOCAL_ALIGNED_8(t, v, ...) LOCAL_ALIGNED(8, t, v, __VA_ARGS__)
91 #if HAVE_LOCAL_ALIGNED_16
92 # define LOCAL_ALIGNED_16(t, v, ...) E1(LOCAL_ALIGNED_D(16, t, v, __VA_ARGS__,,))
94 # define LOCAL_ALIGNED_16(t, v, ...) LOCAL_ALIGNED(16, t, v, __VA_ARGS__)
97 #define FF_ALLOC_OR_GOTO(ctx, p, size, label)\
100 if (p == NULL && (size) != 0) {\
101 av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
106 #define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)\
108 p = av_mallocz(size);\
109 if (p == NULL && (size) != 0) {\
110 av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
117 #if defined(_MSC_VER) && !CONFIG_SHARED
118 #pragma comment(linker, "/include:"EXTERN_PREFIX"avpriv_strtod")
119 #pragma comment(linker, "/include:"EXTERN_PREFIX"avpriv_snprintf")
128 # define NULL_IF_CONFIG_SMALL(x) NULL
130 # define NULL_IF_CONFIG_SMALL(x) x
150 #if HAVE_SYMVER_ASM_LABEL
151 # define FF_SYMVER(type, name, args, ver) \
152 type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver); \
154 #elif HAVE_SYMVER_GNU_ASM
155 # define FF_SYMVER(type, name, args, ver) \
156 __asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver); \
157 type ff_##name args; \
167 # define ONLY_IF_THREADS_ENABLED(x) x
169 # define ONLY_IF_THREADS_ENABLED(x) NULL