FFmpeg  3.4.9
internal.h
Go to the documentation of this file.
1 /*
2  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of FFmpeg.
5  *
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.
10  *
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.
15  *
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
19  */
20 
21 /**
22  * @file
23  * common internal API header
24  */
25 
26 #ifndef AVUTIL_INTERNAL_H
27 #define AVUTIL_INTERNAL_H
28 
29 #if !defined(DEBUG) && !defined(NDEBUG)
30 # define NDEBUG
31 #endif
32 
33 // This can be enabled to allow detection of additional integer overflows with ubsan
34 //#define CHECKED
35 
36 #include <limits.h>
37 #include <stdint.h>
38 #include <stddef.h>
39 #include <assert.h>
40 #include "config.h"
41 #include "attributes.h"
42 #include "timer.h"
43 #include "cpu.h"
44 #include "dict.h"
45 #include "macros.h"
46 #include "pixfmt.h"
47 #include "version.h"
48 
49 #if ARCH_X86
50 # include "x86/emms.h"
51 #endif
52 
53 #ifndef emms_c
54 # define emms_c() while(0)
55 #endif
56 
57 #ifndef attribute_align_arg
58 #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
59 # define attribute_align_arg __attribute__((force_align_arg_pointer))
60 #else
61 # define attribute_align_arg
62 #endif
63 #endif
64 
65 #if defined(_MSC_VER) && CONFIG_SHARED
66 # define av_export __declspec(dllimport)
67 #else
68 # define av_export
69 #endif
70 
71 #if HAVE_PRAGMA_DEPRECATED
72 # if defined(__ICL) || defined (__INTEL_COMPILER)
73 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
74 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
75 # elif defined(_MSC_VER)
76 # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996))
77 # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
78 # else
79 # define FF_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
80 # define FF_ENABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
81 # endif
82 #else
83 # define FF_DISABLE_DEPRECATION_WARNINGS
84 # define FF_ENABLE_DEPRECATION_WARNINGS
85 #endif
86 
87 
88 #define FF_MEMORY_POISON 0x2a
89 
90 #define MAKE_ACCESSORS(str, name, type, field) \
91  type av_##name##_get_##field(const str *s) { return s->field; } \
92  void av_##name##_set_##field(str *s, type v) { s->field = v; }
93 
94 // Some broken preprocessors need a second expansion
95 // to be forced to tokenize __VA_ARGS__
96 #define E1(x) x
97 
98 /* Check if the hard coded offset of a struct member still matches reality.
99  * Induce a compilation failure if not.
100  */
101 #define AV_CHECK_OFFSET(s, m, o) struct check_##o { \
102  int x_##o[offsetof(s, m) == o? 1: -1]; \
103  }
104 
105 #define LOCAL_ALIGNED_A(a, t, v, s, o, ...) \
106  uint8_t la_##v[sizeof(t s o) + (a)]; \
107  t (*v) o = (void *)FFALIGN((uintptr_t)la_##v, a)
108 
109 #define LOCAL_ALIGNED_D(a, t, v, s, o, ...) \
110  DECLARE_ALIGNED(a, t, la_##v) s o; \
111  t (*v) o = la_##v
112 
113 #define LOCAL_ALIGNED(a, t, v, ...) E1(LOCAL_ALIGNED_A(a, t, v, __VA_ARGS__,,))
114 
115 #if HAVE_LOCAL_ALIGNED_8
116 # define LOCAL_ALIGNED_8(t, v, ...) E1(LOCAL_ALIGNED_D(8, t, v, __VA_ARGS__,,))
117 #else
118 # define LOCAL_ALIGNED_8(t, v, ...) LOCAL_ALIGNED(8, t, v, __VA_ARGS__)
119 #endif
120 
121 #if HAVE_LOCAL_ALIGNED_16
122 # define LOCAL_ALIGNED_16(t, v, ...) E1(LOCAL_ALIGNED_D(16, t, v, __VA_ARGS__,,))
123 #else
124 # define LOCAL_ALIGNED_16(t, v, ...) LOCAL_ALIGNED(16, t, v, __VA_ARGS__)
125 #endif
126 
127 #if HAVE_LOCAL_ALIGNED_32
128 # define LOCAL_ALIGNED_32(t, v, ...) E1(LOCAL_ALIGNED_D(32, t, v, __VA_ARGS__,,))
129 #else
130 # define LOCAL_ALIGNED_32(t, v, ...) LOCAL_ALIGNED(32, t, v, __VA_ARGS__)
131 #endif
132 
133 #define FF_ALLOC_OR_GOTO(ctx, p, size, label)\
134 {\
135  p = av_malloc(size);\
136  if (!(p) && (size) != 0) {\
137  av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
138  goto label;\
139  }\
140 }
141 
142 #define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)\
143 {\
144  p = av_mallocz(size);\
145  if (!(p) && (size) != 0) {\
146  av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
147  goto label;\
148  }\
149 }
150 
151 #define FF_ALLOC_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)\
152 {\
153  p = av_malloc_array(nelem, elsize);\
154  if (!p) {\
155  av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
156  goto label;\
157  }\
158 }
159 
160 #define FF_ALLOCZ_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)\
161 {\
162  p = av_mallocz_array(nelem, elsize);\
163  if (!p) {\
164  av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
165  goto label;\
166  }\
167 }
168 
169 #define FF_PTR_ADD(ptr, off) ((off) ? (ptr) + (off) : (ptr))
170 
171 #include "libm.h"
172 
173 /**
174  * Return NULL if CONFIG_SMALL is true, otherwise the argument
175  * without modification. Used to disable the definition of strings
176  * (for example AVCodec long_names).
177  */
178 #if CONFIG_SMALL
179 # define NULL_IF_CONFIG_SMALL(x) NULL
180 #else
181 # define NULL_IF_CONFIG_SMALL(x) x
182 #endif
183 
184 /**
185  * Define a function with only the non-default version specified.
186  *
187  * On systems with ELF shared libraries, all symbols exported from
188  * FFmpeg libraries are tagged with the name and major version of the
189  * library to which they belong. If a function is moved from one
190  * library to another, a wrapper must be retained in the original
191  * location to preserve binary compatibility.
192  *
193  * Functions defined with this macro will never be used to resolve
194  * symbols by the build-time linker.
195  *
196  * @param type return type of function
197  * @param name name of function
198  * @param args argument list of function
199  * @param ver version tag to assign function
200  */
201 #if HAVE_SYMVER_ASM_LABEL
202 # define FF_SYMVER(type, name, args, ver) \
203  type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver); \
204  type ff_##name args
205 #elif HAVE_SYMVER_GNU_ASM
206 # define FF_SYMVER(type, name, args, ver) \
207  __asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver); \
208  type ff_##name args; \
209  type ff_##name args
210 #endif
211 
212 /**
213  * Return NULL if a threading library has not been enabled.
214  * Used to disable threading functions in AVCodec definitions
215  * when not needed.
216  */
217 #if HAVE_THREADS
218 # define ONLY_IF_THREADS_ENABLED(x) x
219 #else
220 # define ONLY_IF_THREADS_ENABLED(x) NULL
221 #endif
222 
223 /**
224  * Log a generic warning message about a missing feature.
225  *
226  * @param[in] avc a pointer to an arbitrary struct of which the first
227  * field is a pointer to an AVClass struct
228  * @param[in] msg string containing the name of the missing feature
229  */
230 void avpriv_report_missing_feature(void *avc,
231  const char *msg, ...) av_printf_format(2, 3);
232 
233 /**
234  * Log a generic warning message about a missing feature.
235  * Additionally request that a sample showcasing the feature be uploaded.
236  *
237  * @param[in] avc a pointer to an arbitrary struct of which the first field is
238  * a pointer to an AVClass struct
239  * @param[in] msg string containing the name of the missing feature
240  */
241 void avpriv_request_sample(void *avc,
242  const char *msg, ...) av_printf_format(2, 3);
243 
244 #if HAVE_LIBC_MSVCRT
245 #include <crtversion.h>
246 #if defined(_VC_CRT_MAJOR_VERSION) && _VC_CRT_MAJOR_VERSION < 14
247 #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_strtod")
248 #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_snprintf")
249 #endif
250 
251 #define avpriv_open ff_open
252 #define avpriv_tempfile ff_tempfile
253 #define PTRDIFF_SPECIFIER "Id"
254 #define SIZE_SPECIFIER "Iu"
255 #else
256 #define PTRDIFF_SPECIFIER "td"
257 #define SIZE_SPECIFIER "zu"
258 #endif
259 
260 #ifdef DEBUG
261 # define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__)
262 #else
263 # define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
264 #endif
265 
266 // For debuging we use signed operations so overflows can be detected (by ubsan)
267 // For production we use unsigned so there are no undefined operations
268 #ifdef CHECKED
269 #define SUINT int
270 #define SUINT32 int32_t
271 #else
272 #define SUINT unsigned
273 #define SUINT32 uint32_t
274 #endif
275 
276 /**
277  * Clip and convert a double value into the long long amin-amax range.
278  * This function is needed because conversion of floating point to integers when
279  * it does not fit in the integer's representation does not necessarily saturate
280  * correctly (usually converted to a cvttsd2si on x86) which saturates numbers
281  * > INT64_MAX to INT64_MIN. The standard marks such conversions as undefined
282  * behavior, allowing this sort of mathematically bogus conversions. This provides
283  * a safe alternative that is slower obviously but assures safety and better
284  * mathematical behavior.
285  * @param a value to clip
286  * @param amin minimum value of the clip range
287  * @param amax maximum value of the clip range
288  * @return clipped value
289  */
290 static av_always_inline av_const int64_t ff_rint64_clip(double a, int64_t amin, int64_t amax)
291 {
292  int64_t res;
293 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
294  if (amin > amax) abort();
295 #endif
296  // INT64_MAX+1,INT64_MIN are exactly representable as IEEE doubles
297  // do range checks first
298  if (a >= 9223372036854775808.0)
299  return amax;
300  if (a <= -9223372036854775808.0)
301  return amin;
302 
303  // safe to call llrint and clip accordingly
304  res = llrint(a);
305  if (res > amax)
306  return amax;
307  if (res < amin)
308  return amin;
309  return res;
310 }
311 
312 /**
313  * A wrapper for open() setting O_CLOEXEC.
314  */
316 int avpriv_open(const char *filename, int flags, ...);
317 
318 /**
319  * Wrapper to work around the lack of mkstemp() on mingw.
320  * Also, tries to create file in /tmp first, if possible.
321  * *prefix can be a character constant; *filename will be allocated internally.
322  * @return file descriptor of opened file (or negative value corresponding to an
323  * AVERROR code on error)
324  * and opened file name in **filename.
325  * @note On very old libcs it is necessary to set a secure umask before
326  * calling this, av_tempfile() can't call umask itself as it is used in
327  * libraries and could interfere with the calling application.
328  */
329 int avpriv_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx);
330 
331 int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt);
332 
333 static av_always_inline av_const int avpriv_mirror(int x, int w)
334 {
335  if (!w)
336  return 0;
337 
338  while ((unsigned)x > (unsigned)w) {
339  x = -x;
340  if (x < 0)
341  x += 2 * w;
342  }
343  return x;
344 }
345 
346 void ff_check_pixfmt_descriptors(void);
347 
348 /**
349  * Set a dictionary value to an ISO-8601 compliant timestamp string.
350  *
351  * @param s AVFormatContext
352  * @param key metadata key
353  * @param timestamp unix timestamp in microseconds
354  * @return <0 on error
355  */
356 int avpriv_dict_set_timestamp(AVDictionary **dict, const char *key, int64_t timestamp);
357 
358 #endif /* AVUTIL_INTERNAL_H */
#define av_const
Definition: attributes.h:76
av_warn_unused_result int avpriv_open(const char *filename, int flags,...)
A wrapper for open() setting O_CLOEXEC.
Definition: file_open.c:66
static enum AVPixelFormat pix_fmt
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.
Definition: internal.h:290
Macro definitions for various function/variable attributes.
Public dictionary API.
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static int flags
Definition: log.c:57
high precision timer, useful to profile code
Utility Preprocessor macros.
int avpriv_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx)
Wrapper to work around the lack of mkstemp() on mingw.
Definition: file_open.c:106
Libavutil version macros.
#define av_printf_format(fmtpos, attrpos)
Definition: attributes.h:155
int avpriv_dict_set_timestamp(AVDictionary **dict, const char *key, int64_t timestamp)
Set a dictionary value to an ISO-8601 compliant timestamp string.
Definition: dict.c:258
static av_always_inline av_const int avpriv_mirror(int x, int w)
Definition: internal.h:333
#define llrint(x)
Definition: libm.h:394
Replacements for frequently missing libm functions.
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
#define av_warn_unused_result
Definition: attributes.h:56
void ff_check_pixfmt_descriptors(void)
Definition: pixdesc.c:2474
pixel format definitions
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt)
Definition: imgutils.c:152
#define av_always_inline
Definition: attributes.h:39
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64