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.

336 lines
10KB

  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. #include <limits.h>
  30. #include <stdint.h>
  31. #include <stddef.h>
  32. #include <assert.h>
  33. #include "config.h"
  34. #include "attributes.h"
  35. #include "timer.h"
  36. #include "cpu.h"
  37. #include "dict.h"
  38. #include "macros.h"
  39. #include "pixfmt.h"
  40. #include "version.h"
  41. #if ARCH_X86
  42. # include "x86/emms.h"
  43. #endif
  44. #ifndef emms_c
  45. # define emms_c() while(0)
  46. #endif
  47. #ifndef attribute_align_arg
  48. #if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
  49. # define attribute_align_arg __attribute__((force_align_arg_pointer))
  50. #else
  51. # define attribute_align_arg
  52. #endif
  53. #endif
  54. #if defined(_MSC_VER) && CONFIG_SHARED
  55. # define av_export __declspec(dllimport)
  56. #else
  57. # define av_export
  58. #endif
  59. #if HAVE_PRAGMA_DEPRECATED
  60. # if defined(__ICL) || defined (__INTEL_COMPILER)
  61. # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
  62. # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
  63. # elif defined(_MSC_VER)
  64. # define FF_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996))
  65. # define FF_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
  66. # else
  67. # define FF_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
  68. # define FF_ENABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
  69. # endif
  70. #else
  71. # define FF_DISABLE_DEPRECATION_WARNINGS
  72. # define FF_ENABLE_DEPRECATION_WARNINGS
  73. #endif
  74. #define FF_MEMORY_POISON 0x2a
  75. #define MAKE_ACCESSORS(str, name, type, field) \
  76. type av_##name##_get_##field(const str *s) { return s->field; } \
  77. void av_##name##_set_##field(str *s, type v) { s->field = v; }
  78. // Some broken preprocessors need a second expansion
  79. // to be forced to tokenize __VA_ARGS__
  80. #define E1(x) x
  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 LOCAL_ALIGNED_A(a, t, v, s, o, ...) \
  88. uint8_t la_##v[sizeof(t s o) + (a)]; \
  89. t (*v) o = (void *)FFALIGN((uintptr_t)la_##v, a)
  90. #define LOCAL_ALIGNED_D(a, t, v, s, o, ...) \
  91. DECLARE_ALIGNED(a, t, la_##v) s o; \
  92. t (*v) o = la_##v
  93. #define LOCAL_ALIGNED(a, t, v, ...) E1(LOCAL_ALIGNED_A(a, t, v, __VA_ARGS__,,))
  94. #if HAVE_LOCAL_ALIGNED_8
  95. # define LOCAL_ALIGNED_8(t, v, ...) E1(LOCAL_ALIGNED_D(8, t, v, __VA_ARGS__,,))
  96. #else
  97. # define LOCAL_ALIGNED_8(t, v, ...) LOCAL_ALIGNED(8, t, v, __VA_ARGS__)
  98. #endif
  99. #if HAVE_LOCAL_ALIGNED_16
  100. # define LOCAL_ALIGNED_16(t, v, ...) E1(LOCAL_ALIGNED_D(16, t, v, __VA_ARGS__,,))
  101. #else
  102. # define LOCAL_ALIGNED_16(t, v, ...) LOCAL_ALIGNED(16, t, v, __VA_ARGS__)
  103. #endif
  104. #if HAVE_LOCAL_ALIGNED_32
  105. # define LOCAL_ALIGNED_32(t, v, ...) E1(LOCAL_ALIGNED_D(32, t, v, __VA_ARGS__,,))
  106. #else
  107. # define LOCAL_ALIGNED_32(t, v, ...) LOCAL_ALIGNED(32, t, v, __VA_ARGS__)
  108. #endif
  109. #define FF_ALLOC_OR_GOTO(ctx, p, size, label)\
  110. {\
  111. p = av_malloc(size);\
  112. if (!(p) && (size) != 0) {\
  113. av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
  114. goto label;\
  115. }\
  116. }
  117. #define FF_ALLOCZ_OR_GOTO(ctx, p, size, label)\
  118. {\
  119. p = av_mallocz(size);\
  120. if (!(p) && (size) != 0) {\
  121. av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
  122. goto label;\
  123. }\
  124. }
  125. #define FF_ALLOC_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)\
  126. {\
  127. p = av_malloc_array(nelem, elsize);\
  128. if (!p) {\
  129. av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
  130. goto label;\
  131. }\
  132. }
  133. #define FF_ALLOCZ_ARRAY_OR_GOTO(ctx, p, nelem, elsize, label)\
  134. {\
  135. p = av_mallocz_array(nelem, elsize);\
  136. if (!p) {\
  137. av_log(ctx, AV_LOG_ERROR, "Cannot allocate memory.\n");\
  138. goto label;\
  139. }\
  140. }
  141. #include "libm.h"
  142. /**
  143. * Return NULL if CONFIG_SMALL is true, otherwise the argument
  144. * without modification. Used to disable the definition of strings
  145. * (for example AVCodec long_names).
  146. */
  147. #if CONFIG_SMALL
  148. # define NULL_IF_CONFIG_SMALL(x) NULL
  149. #else
  150. # define NULL_IF_CONFIG_SMALL(x) x
  151. #endif
  152. /**
  153. * Define a function with only the non-default version specified.
  154. *
  155. * On systems with ELF shared libraries, all symbols exported from
  156. * FFmpeg libraries are tagged with the name and major version of the
  157. * library to which they belong. If a function is moved from one
  158. * library to another, a wrapper must be retained in the original
  159. * location to preserve binary compatibility.
  160. *
  161. * Functions defined with this macro will never be used to resolve
  162. * symbols by the build-time linker.
  163. *
  164. * @param type return type of function
  165. * @param name name of function
  166. * @param args argument list of function
  167. * @param ver version tag to assign function
  168. */
  169. #if HAVE_SYMVER_ASM_LABEL
  170. # define FF_SYMVER(type, name, args, ver) \
  171. type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver); \
  172. type ff_##name args
  173. #elif HAVE_SYMVER_GNU_ASM
  174. # define FF_SYMVER(type, name, args, ver) \
  175. __asm__ (".symver ff_" #name "," EXTERN_PREFIX #name "@" ver); \
  176. type ff_##name args; \
  177. type ff_##name args
  178. #endif
  179. /**
  180. * Return NULL if a threading library has not been enabled.
  181. * Used to disable threading functions in AVCodec definitions
  182. * when not needed.
  183. */
  184. #if HAVE_THREADS
  185. # define ONLY_IF_THREADS_ENABLED(x) x
  186. #else
  187. # define ONLY_IF_THREADS_ENABLED(x) NULL
  188. #endif
  189. /**
  190. * Log a generic warning message about a missing feature.
  191. *
  192. * @param[in] avc a pointer to an arbitrary struct of which the first
  193. * field is a pointer to an AVClass struct
  194. * @param[in] msg string containing the name of the missing feature
  195. */
  196. void avpriv_report_missing_feature(void *avc,
  197. const char *msg, ...) av_printf_format(2, 3);
  198. /**
  199. * Log a generic warning message about a missing feature.
  200. * Additionally request that a sample showcasing the feature be uploaded.
  201. *
  202. * @param[in] avc a pointer to an arbitrary struct of which the first field is
  203. * a pointer to an AVClass struct
  204. * @param[in] msg string containing the name of the missing feature
  205. */
  206. void avpriv_request_sample(void *avc,
  207. const char *msg, ...) av_printf_format(2, 3);
  208. #if HAVE_LIBC_MSVCRT
  209. #include <crtversion.h>
  210. #if defined(_VC_CRT_MAJOR_VERSION) && _VC_CRT_MAJOR_VERSION < 14
  211. #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_strtod")
  212. #pragma comment(linker, "/include:" EXTERN_PREFIX "avpriv_snprintf")
  213. #endif
  214. #define avpriv_open ff_open
  215. #define avpriv_tempfile ff_tempfile
  216. #define PTRDIFF_SPECIFIER "Id"
  217. #define SIZE_SPECIFIER "Iu"
  218. #else
  219. #define PTRDIFF_SPECIFIER "td"
  220. #define SIZE_SPECIFIER "zu"
  221. #endif
  222. #ifdef DEBUG
  223. # define ff_dlog(ctx, ...) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__)
  224. #else
  225. # define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0)
  226. #endif
  227. /**
  228. * Clip and convert a double value into the long long amin-amax range.
  229. * This function is needed because conversion of floating point to integers when
  230. * it does not fit in the integer's representation does not necessarily saturate
  231. * correctly (usually converted to a cvttsd2si on x86) which saturates numbers
  232. * > INT64_MAX to INT64_MIN. The standard marks such conversions as undefined
  233. * behavior, allowing this sort of mathematically bogus conversions. This provides
  234. * a safe alternative that is slower obviously but assures safety and better
  235. * mathematical behavior.
  236. * @param a value to clip
  237. * @param amin minimum value of the clip range
  238. * @param amax maximum value of the clip range
  239. * @return clipped value
  240. */
  241. static av_always_inline av_const int64_t ff_rint64_clip(double a, int64_t amin, int64_t amax)
  242. {
  243. int64_t res;
  244. #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
  245. if (amin > amax) abort();
  246. #endif
  247. // INT64_MAX+1,INT64_MIN are exactly representable as IEEE doubles
  248. // do range checks first
  249. if (a >= 9223372036854775808.0)
  250. return amax;
  251. if (a <= -9223372036854775808.0)
  252. return amin;
  253. // safe to call llrint and clip accordingly
  254. res = llrint(a);
  255. if (res > amax)
  256. return amax;
  257. if (res < amin)
  258. return amin;
  259. return res;
  260. }
  261. /**
  262. * A wrapper for open() setting O_CLOEXEC.
  263. */
  264. av_warn_unused_result
  265. int avpriv_open(const char *filename, int flags, ...);
  266. /**
  267. * Wrapper to work around the lack of mkstemp() on mingw.
  268. * Also, tries to create file in /tmp first, if possible.
  269. * *prefix can be a character constant; *filename will be allocated internally.
  270. * @return file descriptor of opened file (or negative value corresponding to an
  271. * AVERROR code on error)
  272. * and opened file name in **filename.
  273. * @note On very old libcs it is necessary to set a secure umask before
  274. * calling this, av_tempfile() can't call umask itself as it is used in
  275. * libraries and could interfere with the calling application.
  276. */
  277. int avpriv_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx);
  278. int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt);
  279. static av_always_inline av_const int avpriv_mirror(int x, int w)
  280. {
  281. if (!w)
  282. return 0;
  283. while ((unsigned)x > (unsigned)w) {
  284. x = -x;
  285. if (x < 0)
  286. x += 2 * w;
  287. }
  288. return x;
  289. }
  290. void ff_check_pixfmt_descriptors(void);
  291. extern const uint8_t ff_reverse[256];
  292. #endif /* AVUTIL_INTERNAL_H */