Go to the documentation of this file.
26 #ifndef AVUTIL_INTERNAL_H
27 #define AVUTIL_INTERNAL_H
29 #if !defined(DEBUG) && !defined(NDEBUG)
53 # define emms_c() do {} while(0)
56 #ifndef attribute_align_arg
57 #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
58 # define attribute_align_arg __attribute__((force_align_arg_pointer))
60 # define attribute_align_arg
64 #if defined(_WIN32) && CONFIG_SHARED && !defined(BUILDING_avutil)
65 # define av_export_avutil __declspec(dllimport)
67 # define av_export_avutil
70 #if HAVE_PRAGMA_DEPRECATED
71 # if defined(__ICL) || defined (__INTEL_COMPILER)
72 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
73 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
74 # elif defined(_MSC_VER)
75 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996))
76 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
78 # define FF_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic push") _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
79 # define FF_ENABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic pop")
82 # define FF_DISABLE_DEPRECATION_WARNINGS
83 # define FF_ENABLE_DEPRECATION_WARNINGS
87 #define FF_MEMORY_POISON 0x2a
92 #define AV_CHECK_OFFSET(s, m, o) struct check_##o { \
93 int x_##o[offsetof(s, m) == o? 1: -1]; \
97 #define FF_ALLOC_TYPED_ARRAY(p, nelem) (p = av_malloc_array(nelem, sizeof(*p)))
98 #define FF_ALLOCZ_TYPED_ARRAY(p, nelem) (p = av_calloc(nelem, sizeof(*p)))
100 #define FF_PTR_ADD(ptr, off) ((off) ? (ptr) + (off) : (ptr))
105 #define FF_FIELD_AT(type, off, obj) (*(type *)((char *)&(obj) + (off)))
115 # define NULL_IF_CONFIG_SMALL(x) NULL
117 # define NULL_IF_CONFIG_SMALL(x) x
137 #if HAVE_SYMVER_ASM_LABEL
138 # define FF_SYMVER(type, name, args, ver) \
139 type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver); \
141 #elif HAVE_SYMVER_GNU_ASM
142 # define FF_SYMVER(type, name, args, ver) \
143 __asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver); \
144 type ff_##name args; \
154 # define ONLY_IF_THREADS_ENABLED(x) x
156 # define ONLY_IF_THREADS_ENABLED(x) NULL
181 #include <crtversion.h>
182 #if defined(_VC_CRT_MAJOR_VERSION) && _VC_CRT_MAJOR_VERSION < 14
183 #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_strtod")
184 #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_snprintf")
187 #define avpriv_fopen_utf8 ff_fopen_utf8
188 #define avpriv_open ff_open
189 #define avpriv_tempfile ff_tempfile
191 #define PTRDIFF_SPECIFIER "Id"
192 #define SIZE_SPECIFIER "Iu"
194 #define PTRDIFF_SPECIFIER "td"
195 #define SIZE_SPECIFIER "zu"
199 # define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__)
201 # define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
205 # define ff_tlog(ctx, ...) av_log(ctx, AV_LOG_TRACE, __VA_ARGS__)
207 # define ff_tlog(ctx, ...) do { } while(0)
214 #define SUINT32 int32_t
216 #define SUINT unsigned
217 #define SUINT32 uint32_t
237 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
238 if (amin > amax) abort();
242 if (
a >= 9223372036854775808.0)
244 if (
a <= -9223372036854775808.0)
278 int avpriv_tempfile(
const char *prefix,
char **filename,
int log_offset,
void *log_ctx);
287 while ((
unsigned)x > (
unsigned)
w) {
AVPixelFormat
Pixel format.
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt)
FILE * avpriv_fopen_utf8(const char *path, const char *mode)
Open a file using a UTF-8 filename.
int avpriv_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx)
Wrapper to work around the lack of mkstemp() on mingw.
static enum AVPixelFormat pix_fmt
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
#define av_printf_format(fmtpos, attrpos)
static av_always_inline av_const int avpriv_mirror(int x, int w)
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
int avpriv_dict_set_timestamp(AVDictionary **dict, const char *key, int64_t timestamp)
Set a dictionary value to an ISO-8601 compliant timestamp string.
void ff_check_pixfmt_descriptors(void)
#define av_warn_unused_result
#define flags(name, subs,...)
static av_always_inline av_const int64_t ff_rint64_clip(double a, int64_t amin, int64_t amax)
Clip and convert a double value into the long long amin-amax range.
av_warn_unused_result int avpriv_open(const char *filename, int flags,...)
A wrapper for open() setting O_CLOEXEC.