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.

520 lines
15KB

  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 and external API header
  23. */
  24. #ifndef AVUTIL_COMMON_H
  25. #define AVUTIL_COMMON_H
  26. #if defined(__cplusplus) && !defined(__STDC_CONSTANT_MACROS) && !defined(UINT64_C)
  27. #error missing -D__STDC_CONSTANT_MACROS / #define __STDC_CONSTANT_MACROS
  28. #endif
  29. #include <errno.h>
  30. #include <inttypes.h>
  31. #include <limits.h>
  32. #include <math.h>
  33. #include <stdint.h>
  34. #include <stdio.h>
  35. #include <stdlib.h>
  36. #include <string.h>
  37. #include "attributes.h"
  38. #include "version.h"
  39. #include "libavutil/avconfig.h"
  40. #if AV_HAVE_BIGENDIAN
  41. # define AV_NE(be, le) (be)
  42. #else
  43. # define AV_NE(be, le) (le)
  44. #endif
  45. //rounded division & shift
  46. #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
  47. /* assume b>0 */
  48. #define ROUNDED_DIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b))
  49. /* assume a>0 and b>0 */
  50. #define FF_CEIL_RSHIFT(a,b) (!av_builtin_constant_p(b) ? -((-(a)) >> (b)) \
  51. : ((a) + (1<<(b)) - 1) >> (b))
  52. #define FFUDIV(a,b) (((a)>0 ?(a):(a)-(b)+1) / (b))
  53. #define FFUMOD(a,b) ((a)-(b)*FFUDIV(a,b))
  54. /**
  55. * Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they
  56. * are not representable as absolute values of their type. This is the same
  57. * as with *abs()
  58. * @see FFNABS()
  59. */
  60. #define FFABS(a) ((a) >= 0 ? (a) : (-(a)))
  61. #define FFSIGN(a) ((a) > 0 ? 1 : -1)
  62. /**
  63. * Negative Absolute value.
  64. * this works for all integers of all types.
  65. * As with many macros, this evaluates its argument twice, it thus must not have
  66. * a sideeffect, that is FFNABS(x++) has undefined behavior.
  67. */
  68. #define FFNABS(a) ((a) <= 0 ? (a) : (-(a)))
  69. /**
  70. * Comparator.
  71. * For two numerical expressions x and y, gives 1 if x > y, -1 if x < y, and 0
  72. * if x == y. This is useful for instance in a qsort comparator callback.
  73. * Furthermore, compilers are able to optimize this to branchless code, and
  74. * there is no risk of overflow with signed types.
  75. * As with many macros, this evaluates its argument multiple times, it thus
  76. * must not have a side-effect.
  77. */
  78. #define FFDIFFSIGN(x,y) (((x)>(y)) - ((x)<(y)))
  79. #define FFMAX(a,b) ((a) > (b) ? (a) : (b))
  80. #define FFMAX3(a,b,c) FFMAX(FFMAX(a,b),c)
  81. #define FFMIN(a,b) ((a) > (b) ? (b) : (a))
  82. #define FFMIN3(a,b,c) FFMIN(FFMIN(a,b),c)
  83. #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
  84. #define FF_ARRAY_ELEMS(a) (sizeof(a) / sizeof((a)[0]))
  85. #define FFALIGN(x, a) (((x)+(a)-1)&~((a)-1))
  86. /* misc math functions */
  87. #ifdef HAVE_AV_CONFIG_H
  88. # include "config.h"
  89. # include "intmath.h"
  90. #endif
  91. /* Pull in unguarded fallback defines at the end of this file. */
  92. #include "common.h"
  93. #ifndef av_log2
  94. av_const int av_log2(unsigned v);
  95. #endif
  96. #ifndef av_log2_16bit
  97. av_const int av_log2_16bit(unsigned v);
  98. #endif
  99. /**
  100. * Clip a signed integer value into the amin-amax range.
  101. * @param a value to clip
  102. * @param amin minimum value of the clip range
  103. * @param amax maximum value of the clip range
  104. * @return clipped value
  105. */
  106. static av_always_inline av_const int av_clip_c(int a, int amin, int amax)
  107. {
  108. #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
  109. if (amin > amax) abort();
  110. #endif
  111. if (a < amin) return amin;
  112. else if (a > amax) return amax;
  113. else return a;
  114. }
  115. /**
  116. * Clip a signed 64bit integer value into the amin-amax range.
  117. * @param a value to clip
  118. * @param amin minimum value of the clip range
  119. * @param amax maximum value of the clip range
  120. * @return clipped value
  121. */
  122. static av_always_inline av_const int64_t av_clip64_c(int64_t a, int64_t amin, int64_t amax)
  123. {
  124. #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
  125. if (amin > amax) abort();
  126. #endif
  127. if (a < amin) return amin;
  128. else if (a > amax) return amax;
  129. else return a;
  130. }
  131. /**
  132. * Clip a signed integer value into the 0-255 range.
  133. * @param a value to clip
  134. * @return clipped value
  135. */
  136. static av_always_inline av_const uint8_t av_clip_uint8_c(int a)
  137. {
  138. if (a&(~0xFF)) return (-a)>>31;
  139. else return a;
  140. }
  141. /**
  142. * Clip a signed integer value into the -128,127 range.
  143. * @param a value to clip
  144. * @return clipped value
  145. */
  146. static av_always_inline av_const int8_t av_clip_int8_c(int a)
  147. {
  148. if ((a+0x80U) & ~0xFF) return (a>>31) ^ 0x7F;
  149. else return a;
  150. }
  151. /**
  152. * Clip a signed integer value into the 0-65535 range.
  153. * @param a value to clip
  154. * @return clipped value
  155. */
  156. static av_always_inline av_const uint16_t av_clip_uint16_c(int a)
  157. {
  158. if (a&(~0xFFFF)) return (-a)>>31;
  159. else return a;
  160. }
  161. /**
  162. * Clip a signed integer value into the -32768,32767 range.
  163. * @param a value to clip
  164. * @return clipped value
  165. */
  166. static av_always_inline av_const int16_t av_clip_int16_c(int a)
  167. {
  168. if ((a+0x8000U) & ~0xFFFF) return (a>>31) ^ 0x7FFF;
  169. else return a;
  170. }
  171. /**
  172. * Clip a signed 64-bit integer value into the -2147483648,2147483647 range.
  173. * @param a value to clip
  174. * @return clipped value
  175. */
  176. static av_always_inline av_const int32_t av_clipl_int32_c(int64_t a)
  177. {
  178. if ((a+0x80000000u) & ~UINT64_C(0xFFFFFFFF)) return (int32_t)((a>>63) ^ 0x7FFFFFFF);
  179. else return (int32_t)a;
  180. }
  181. /**
  182. * Clip a signed integer into the -(2^p),(2^p-1) range.
  183. * @param a value to clip
  184. * @param p bit position to clip at
  185. * @return clipped value
  186. */
  187. static av_always_inline av_const int av_clip_intp2_c(int a, int p)
  188. {
  189. if ((a + (1 << p)) & ~((2 << p) - 1))
  190. return (a >> 31) ^ ((1 << p) - 1);
  191. else
  192. return a;
  193. }
  194. /**
  195. * Clip a signed integer to an unsigned power of two range.
  196. * @param a value to clip
  197. * @param p bit position to clip at
  198. * @return clipped value
  199. */
  200. static av_always_inline av_const unsigned av_clip_uintp2_c(int a, int p)
  201. {
  202. if (a & ~((1<<p) - 1)) return -a >> 31 & ((1<<p) - 1);
  203. else return a;
  204. }
  205. /**
  206. * Clear high bits from an unsigned integer starting with specific bit position
  207. * @param a value to clip
  208. * @param p bit position to clip at
  209. * @return clipped value
  210. */
  211. static av_always_inline av_const unsigned av_mod_uintp2_c(unsigned a, unsigned p)
  212. {
  213. return a & ((1 << p) - 1);
  214. }
  215. /**
  216. * Add two signed 32-bit values with saturation.
  217. *
  218. * @param a one value
  219. * @param b another value
  220. * @return sum with signed saturation
  221. */
  222. static av_always_inline int av_sat_add32_c(int a, int b)
  223. {
  224. return av_clipl_int32((int64_t)a + b);
  225. }
  226. /**
  227. * Add a doubled value to another value with saturation at both stages.
  228. *
  229. * @param a first value
  230. * @param b value doubled and added to a
  231. * @return sum with signed saturation
  232. */
  233. static av_always_inline int av_sat_dadd32_c(int a, int b)
  234. {
  235. return av_sat_add32(a, av_sat_add32(b, b));
  236. }
  237. /**
  238. * Clip a float value into the amin-amax range.
  239. * @param a value to clip
  240. * @param amin minimum value of the clip range
  241. * @param amax maximum value of the clip range
  242. * @return clipped value
  243. */
  244. static av_always_inline av_const float av_clipf_c(float a, float amin, float amax)
  245. {
  246. #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
  247. if (amin > amax) abort();
  248. #endif
  249. if (a < amin) return amin;
  250. else if (a > amax) return amax;
  251. else return a;
  252. }
  253. /**
  254. * Clip a double value into the amin-amax range.
  255. * @param a value to clip
  256. * @param amin minimum value of the clip range
  257. * @param amax maximum value of the clip range
  258. * @return clipped value
  259. */
  260. static av_always_inline av_const double av_clipd_c(double a, double amin, double amax)
  261. {
  262. #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
  263. if (amin > amax) abort();
  264. #endif
  265. if (a < amin) return amin;
  266. else if (a > amax) return amax;
  267. else return a;
  268. }
  269. /** Compute ceil(log2(x)).
  270. * @param x value used to compute ceil(log2(x))
  271. * @return computed ceiling of log2(x)
  272. */
  273. static av_always_inline av_const int av_ceil_log2_c(int x)
  274. {
  275. return av_log2((x - 1) << 1);
  276. }
  277. /**
  278. * Count number of bits set to one in x
  279. * @param x value to count bits of
  280. * @return the number of bits set to one in x
  281. */
  282. static av_always_inline av_const int av_popcount_c(uint32_t x)
  283. {
  284. x -= (x >> 1) & 0x55555555;
  285. x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
  286. x = (x + (x >> 4)) & 0x0F0F0F0F;
  287. x += x >> 8;
  288. return (x + (x >> 16)) & 0x3F;
  289. }
  290. /**
  291. * Count number of bits set to one in x
  292. * @param x value to count bits of
  293. * @return the number of bits set to one in x
  294. */
  295. static av_always_inline av_const int av_popcount64_c(uint64_t x)
  296. {
  297. return av_popcount((uint32_t)x) + av_popcount((uint32_t)(x >> 32));
  298. }
  299. #define MKTAG(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((unsigned)(d) << 24))
  300. #define MKBETAG(a,b,c,d) ((d) | ((c) << 8) | ((b) << 16) | ((unsigned)(a) << 24))
  301. /**
  302. * Convert a UTF-8 character (up to 4 bytes) to its 32-bit UCS-4 encoded form.
  303. *
  304. * @param val Output value, must be an lvalue of type uint32_t.
  305. * @param GET_BYTE Expression reading one byte from the input.
  306. * Evaluated up to 7 times (4 for the currently
  307. * assigned Unicode range). With a memory buffer
  308. * input, this could be *ptr++.
  309. * @param ERROR Expression to be evaluated on invalid input,
  310. * typically a goto statement.
  311. *
  312. * @warning ERROR should not contain a loop control statement which
  313. * could interact with the internal while loop, and should force an
  314. * exit from the macro code (e.g. through a goto or a return) in order
  315. * to prevent undefined results.
  316. */
  317. #define GET_UTF8(val, GET_BYTE, ERROR)\
  318. val= GET_BYTE;\
  319. {\
  320. uint32_t top = (val & 128) >> 1;\
  321. if ((val & 0xc0) == 0x80 || val >= 0xFE)\
  322. ERROR\
  323. while (val & top) {\
  324. int tmp= GET_BYTE - 128;\
  325. if(tmp>>6)\
  326. ERROR\
  327. val= (val<<6) + tmp;\
  328. top <<= 5;\
  329. }\
  330. val &= (top << 1) - 1;\
  331. }
  332. /**
  333. * Convert a UTF-16 character (2 or 4 bytes) to its 32-bit UCS-4 encoded form.
  334. *
  335. * @param val Output value, must be an lvalue of type uint32_t.
  336. * @param GET_16BIT Expression returning two bytes of UTF-16 data converted
  337. * to native byte order. Evaluated one or two times.
  338. * @param ERROR Expression to be evaluated on invalid input,
  339. * typically a goto statement.
  340. */
  341. #define GET_UTF16(val, GET_16BIT, ERROR)\
  342. val = GET_16BIT;\
  343. {\
  344. unsigned int hi = val - 0xD800;\
  345. if (hi < 0x800) {\
  346. val = GET_16BIT - 0xDC00;\
  347. if (val > 0x3FFU || hi > 0x3FFU)\
  348. ERROR\
  349. val += (hi<<10) + 0x10000;\
  350. }\
  351. }\
  352. /**
  353. * @def PUT_UTF8(val, tmp, PUT_BYTE)
  354. * Convert a 32-bit Unicode character to its UTF-8 encoded form (up to 4 bytes long).
  355. * @param val is an input-only argument and should be of type uint32_t. It holds
  356. * a UCS-4 encoded Unicode character that is to be converted to UTF-8. If
  357. * val is given as a function it is executed only once.
  358. * @param tmp is a temporary variable and should be of type uint8_t. It
  359. * represents an intermediate value during conversion that is to be
  360. * output by PUT_BYTE.
  361. * @param PUT_BYTE writes the converted UTF-8 bytes to any proper destination.
  362. * It could be a function or a statement, and uses tmp as the input byte.
  363. * For example, PUT_BYTE could be "*output++ = tmp;" PUT_BYTE will be
  364. * executed up to 4 times for values in the valid UTF-8 range and up to
  365. * 7 times in the general case, depending on the length of the converted
  366. * Unicode character.
  367. */
  368. #define PUT_UTF8(val, tmp, PUT_BYTE)\
  369. {\
  370. int bytes, shift;\
  371. uint32_t in = val;\
  372. if (in < 0x80) {\
  373. tmp = in;\
  374. PUT_BYTE\
  375. } else {\
  376. bytes = (av_log2(in) + 4) / 5;\
  377. shift = (bytes - 1) * 6;\
  378. tmp = (256 - (256 >> bytes)) | (in >> shift);\
  379. PUT_BYTE\
  380. while (shift >= 6) {\
  381. shift -= 6;\
  382. tmp = 0x80 | ((in >> shift) & 0x3f);\
  383. PUT_BYTE\
  384. }\
  385. }\
  386. }
  387. /**
  388. * @def PUT_UTF16(val, tmp, PUT_16BIT)
  389. * Convert a 32-bit Unicode character to its UTF-16 encoded form (2 or 4 bytes).
  390. * @param val is an input-only argument and should be of type uint32_t. It holds
  391. * a UCS-4 encoded Unicode character that is to be converted to UTF-16. If
  392. * val is given as a function it is executed only once.
  393. * @param tmp is a temporary variable and should be of type uint16_t. It
  394. * represents an intermediate value during conversion that is to be
  395. * output by PUT_16BIT.
  396. * @param PUT_16BIT writes the converted UTF-16 data to any proper destination
  397. * in desired endianness. It could be a function or a statement, and uses tmp
  398. * as the input byte. For example, PUT_BYTE could be "*output++ = tmp;"
  399. * PUT_BYTE will be executed 1 or 2 times depending on input character.
  400. */
  401. #define PUT_UTF16(val, tmp, PUT_16BIT)\
  402. {\
  403. uint32_t in = val;\
  404. if (in < 0x10000) {\
  405. tmp = in;\
  406. PUT_16BIT\
  407. } else {\
  408. tmp = 0xD800 | ((in - 0x10000) >> 10);\
  409. PUT_16BIT\
  410. tmp = 0xDC00 | ((in - 0x10000) & 0x3FF);\
  411. PUT_16BIT\
  412. }\
  413. }\
  414. #include "mem.h"
  415. #ifdef HAVE_AV_CONFIG_H
  416. # include "internal.h"
  417. #endif /* HAVE_AV_CONFIG_H */
  418. #endif /* AVUTIL_COMMON_H */
  419. /*
  420. * The following definitions are outside the multiple inclusion guard
  421. * to ensure they are immediately available in intmath.h.
  422. */
  423. #ifndef av_ceil_log2
  424. # define av_ceil_log2 av_ceil_log2_c
  425. #endif
  426. #ifndef av_clip
  427. # define av_clip av_clip_c
  428. #endif
  429. #ifndef av_clip64
  430. # define av_clip64 av_clip64_c
  431. #endif
  432. #ifndef av_clip_uint8
  433. # define av_clip_uint8 av_clip_uint8_c
  434. #endif
  435. #ifndef av_clip_int8
  436. # define av_clip_int8 av_clip_int8_c
  437. #endif
  438. #ifndef av_clip_uint16
  439. # define av_clip_uint16 av_clip_uint16_c
  440. #endif
  441. #ifndef av_clip_int16
  442. # define av_clip_int16 av_clip_int16_c
  443. #endif
  444. #ifndef av_clipl_int32
  445. # define av_clipl_int32 av_clipl_int32_c
  446. #endif
  447. #ifndef av_clip_intp2
  448. # define av_clip_intp2 av_clip_intp2_c
  449. #endif
  450. #ifndef av_clip_uintp2
  451. # define av_clip_uintp2 av_clip_uintp2_c
  452. #endif
  453. #ifndef av_mod_uintp2
  454. # define av_mod_uintp2 av_mod_uintp2_c
  455. #endif
  456. #ifndef av_sat_add32
  457. # define av_sat_add32 av_sat_add32_c
  458. #endif
  459. #ifndef av_sat_dadd32
  460. # define av_sat_dadd32 av_sat_dadd32_c
  461. #endif
  462. #ifndef av_clipf
  463. # define av_clipf av_clipf_c
  464. #endif
  465. #ifndef av_clipd
  466. # define av_clipd av_clipd_c
  467. #endif
  468. #ifndef av_popcount
  469. # define av_popcount av_popcount_c
  470. #endif
  471. #ifndef av_popcount64
  472. # define av_popcount64 av_popcount64_c
  473. #endif