You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

304 lines
9.7KB

  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. * @file
  22. * common internal API header
  23. */
  24. #ifndef AVUTIL_INTERNAL_H
  25. #define AVUTIL_INTERNAL_H
  26. #if !defined(DEBUG) && !defined(NDEBUG)
  27. # define NDEBUG
  28. #endif
  29. // This can be enabled to allow detection of additional integer overflows with ubsan
  30. //#define CHECKED
  31. #include <limits.h>
  32. #include <stdint.h>
  33. #include <stddef.h>
  34. #include <assert.h>
  35. #include "config.h"
  36. #include "attributes.h"
  37. #include "timer.h"
  38. #include "cpu.h"
  39. #include "dict.h"
  40. #include "macros.h"
  41. #include "mem.h"
  42. #include "pixfmt.h"
  43. #include "version.h"
  44. #if ARCH_X86
  45. # include "x86/emms.h"
  46. #endif
  47. #ifndef emms_c
  48. # define emms_c() do {} while(0)
  49. #endif
  50. #ifndef attribute_align_arg
  51. #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
  52. # define attribute_align_arg __attribute__((force_align_arg_pointer))
  53. #else
  54. # define attribute_align_arg
  55. #endif
  56. #endif
  57. #if defined(_WIN32) && CONFIG_SHARED && !defined(BUILDING_avutil)
  58. # define av_export_avutil __declspec(dllimport)
  59. #else
  60. # define av_export_avutil
  61. #endif
  62. #if HAVE_PRAGMA_DEPRECATED
  63. # if defined(__ICL) || defined (__INTEL_COMPILER)
  64. # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
  65. # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
  66. # elif defined(_MSC_VER)
  67. # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996))
  68. # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
  69. # else
  70. # define FF_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic push") _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
  71. # define FF_ENABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic pop")
  72. # endif
  73. #else
  74. # define FF_DISABLE_DEPRECATION_WARNINGS
  75. # define FF_ENABLE_DEPRECATION_WARNINGS
  76. #endif
  77. #define FF_MEMORY_POISON 0x2a
  78. #define MAKE_ACCESSORS(str, name, type, field) \
  79. type av_##name##_get_##field(const str *s) { return s->field; } \
  80. void av_##name##_set_##field(str *s, type v) { s->field = v; }
  81. /* Check if the hard coded offset of a struct member still matches reality.
  82. * Induce a compilation failure if not.
  83. */
  84. #define AV_CHECK_OFFSET(s, m, o) struct check_##o { \
  85. int x_##o[offsetof(s, m) == o? 1: -1]; \
  86. }
  87. #define FF_ALLOC_TYPED_ARRAY(p, nelem) (p = av_malloc_array(nelem, sizeof(*p)))
  88. #define FF_ALLOCZ_TYPED_ARRAY(p, nelem) (p = av_mallocz_array(nelem, sizeof(*p)))
  89. #include "libm.h"
  90. /**
  91. * Return NULL if CONFIG_SMALL is true, otherwise the argument
  92. * without modification. Used to disable the definition of strings
  93. * (for example AVCodec long_names).
  94. */
  95. #if CONFIG_SMALL
  96. # define NULL_IF_CONFIG_SMALL(x) NULL
  97. #else
  98. # define NULL_IF_CONFIG_SMALL(x) x
  99. #endif
  100. /**
  101. * Define a function with only the non-default version specified.
  102. *
  103. * On systems with ELF shared libraries, all symbols exported from
  104. * FFmpeg libraries are tagged with the name and major version of the
  105. * library to which they belong. If a function is moved from one
  106. * library to another, a wrapper must be retained in the original
  107. * location to preserve binary compatibility.
  108. *
  109. * Functions defined with this macro will never be used to resolve
  110. * symbols by the build-time linker.
  111. *
  112. * @param type return type of function
  113. * @param name name of function
  114. * @param args argument list of function
  115. * @param ver version tag to assign function
  116. */
  117. #if HAVE_SYMVER_ASM_LABEL
  118. # define FF_SYMVER(type, name, args, ver) \
  119. type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver); \
  120. type ff_##name args
  121. #elif HAVE_SYMVER_GNU_ASM
  122. # define FF_SYMVER(type, name, args, ver) \
  123. __asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver); \
  124. type ff_##name args; \
  125. type ff_##name args
  126. #endif
  127. /**
  128. * Return NULL if a threading library has not been enabled.
  129. * Used to disable threading functions in AVCodec definitions
  130. * when not needed.
  131. */
  132. #if HAVE_THREADS
  133. # define ONLY_IF_THREADS_ENABLED(x) x
  134. #else
  135. # define ONLY_IF_THREADS_ENABLED(x) NULL
  136. #endif
  137. /**
  138. * Log a generic warning message about a missing feature.
  139. *
  140. * @param[in] avc a pointer to an arbitrary struct of which the first
  141. * field is a pointer to an AVClass struct
  142. * @param[in] msg string containing the name of the missing feature
  143. */
  144. void avpriv_report_missing_feature(void *avc,
  145. const char *msg, ...) av_printf_format(2, 3);
  146. /**
  147. * Log a generic warning message about a missing feature.
  148. * Additionally request that a sample showcasing the feature be uploaded.
  149. *
  150. * @param[in] avc a pointer to an arbitrary struct of which the first field is
  151. * a pointer to an AVClass struct
  152. * @param[in] msg string containing the name of the missing feature
  153. */
  154. void avpriv_request_sample(void *avc,
  155. const char *msg, ...) av_printf_format(2, 3);
  156. #if HAVE_LIBC_MSVCRT
  157. #include <crtversion.h>
  158. #if defined(_VC_CRT_MAJOR_VERSION) && _VC_CRT_MAJOR_VERSION < 14
  159. #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_strtod")
  160. #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_snprintf")
  161. #endif
  162. #define avpriv_open ff_open
  163. #define avpriv_tempfile ff_tempfile
  164. #define PTRDIFF_SPECIFIER "Id"
  165. #define SIZE_SPECIFIER "Iu"
  166. #else
  167. #define PTRDIFF_SPECIFIER "td"
  168. #define SIZE_SPECIFIER "zu"
  169. #endif
  170. #ifdef DEBUG
  171. # define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__)
  172. #else
  173. # define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
  174. #endif
  175. // For debuging we use signed operations so overflows can be detected (by ubsan)
  176. // For production we use unsigned so there are no undefined operations
  177. #ifdef CHECKED
  178. #define SUINT int
  179. #define SUINT32 int32_t
  180. #else
  181. #define SUINT unsigned
  182. #define SUINT32 uint32_t
  183. #endif
  184. /**
  185. * Clip and convert a double value into the long long amin-amax range.
  186. * This function is needed because conversion of floating point to integers when
  187. * it does not fit in the integer's representation does not necessarily saturate
  188. * correctly (usually converted to a cvttsd2si on x86) which saturates numbers
  189. * > INT64_MAX to INT64_MIN. The standard marks such conversions as undefined
  190. * behavior, allowing this sort of mathematically bogus conversions. This provides
  191. * a safe alternative that is slower obviously but assures safety and better
  192. * mathematical behavior.
  193. * @param a value to clip
  194. * @param amin minimum value of the clip range
  195. * @param amax maximum value of the clip range
  196. * @return clipped value
  197. */
  198. static av_always_inline av_const int64_t ff_rint64_clip(double a, int64_t amin, int64_t amax)
  199. {
  200. int64_t res;
  201. #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
  202. if (amin > amax) abort();
  203. #endif
  204. // INT64_MAX+1,INT64_MIN are exactly representable as IEEE doubles
  205. // do range checks first
  206. if (a >= 9223372036854775808.0)
  207. return amax;
  208. if (a <= -9223372036854775808.0)
  209. return amin;
  210. // safe to call llrint and clip accordingly
  211. res = llrint(a);
  212. if (res > amax)
  213. return amax;
  214. if (res < amin)
  215. return amin;
  216. return res;
  217. }
  218. /**
  219. * A wrapper for open() setting O_CLOEXEC.
  220. */
  221. av_warn_unused_result
  222. int avpriv_open(const char *filename, int flags, ...);
  223. /**
  224. * Wrapper to work around the lack of mkstemp() on mingw.
  225. * Also, tries to create file in /tmp first, if possible.
  226. * *prefix can be a character constant; *filename will be allocated internally.
  227. * @return file descriptor of opened file (or negative value corresponding to an
  228. * AVERROR code on error)
  229. * and opened file name in **filename.
  230. * @note On very old libcs it is necessary to set a secure umask before
  231. * calling this, av_tempfile() can't call umask itself as it is used in
  232. * libraries and could interfere with the calling application.
  233. */
  234. int avpriv_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx);
  235. int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt);
  236. static av_always_inline av_const int avpriv_mirror(int x, int w)
  237. {
  238. if (!w)
  239. return 0;
  240. while ((unsigned)x > (unsigned)w) {
  241. x = -x;
  242. if (x < 0)
  243. x += 2 * w;
  244. }
  245. return x;
  246. }
  247. void ff_check_pixfmt_descriptors(void);
  248. /**
  249. * Set a dictionary value to an ISO-8601 compliant timestamp string.
  250. *
  251. * @param dict pointer to a pointer to a dictionary struct. If *dict is NULL
  252. * a dictionary struct is allocated and put in *dict.
  253. * @param key metadata key
  254. * @param timestamp unix timestamp in microseconds
  255. * @return <0 on error
  256. */
  257. int avpriv_dict_set_timestamp(AVDictionary **dict, const char *key, int64_t timestamp);
  258. // Helper macro for AV_PIX_FMT_FLAG_PSEUDOPAL deprecation. Code inside FFmpeg
  259. // should always use FF_PSEUDOPAL. Once the public API flag gets removed, all
  260. // code using it is dead code.
  261. #if FF_API_PSEUDOPAL
  262. #define FF_PSEUDOPAL AV_PIX_FMT_FLAG_PSEUDOPAL
  263. #else
  264. #define FF_PSEUDOPAL 0
  265. #endif
  266. #endif /* AVUTIL_INTERNAL_H */