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.

275 lines
7.4KB

  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 libavutil/common.h
  22. * common internal and external API header
  23. */
  24. #ifndef AVUTIL_COMMON_H
  25. #define AVUTIL_COMMON_H
  26. #include <ctype.h>
  27. #include <errno.h>
  28. #include <inttypes.h>
  29. #include <limits.h>
  30. #include <math.h>
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <string.h>
  34. #define AV_GCC_VERSION_AT_LEAST(x,y) (defined(__GNUC__) && (__GNUC__ > x || __GNUC__ == x && __GNUC_MINOR__ >= y))
  35. #ifndef av_always_inline
  36. #if AV_GCC_VERSION_AT_LEAST(3,1)
  37. # define av_always_inline __attribute__((always_inline)) inline
  38. #else
  39. # define av_always_inline inline
  40. #endif
  41. #endif
  42. #ifndef av_noinline
  43. #if AV_GCC_VERSION_AT_LEAST(3,1)
  44. # define av_noinline __attribute__((noinline))
  45. #else
  46. # define av_noinline
  47. #endif
  48. #endif
  49. #ifndef av_pure
  50. #if AV_GCC_VERSION_AT_LEAST(3,1)
  51. # define av_pure __attribute__((pure))
  52. #else
  53. # define av_pure
  54. #endif
  55. #endif
  56. #ifndef av_const
  57. #if AV_GCC_VERSION_AT_LEAST(2,6)
  58. # define av_const __attribute__((const))
  59. #else
  60. # define av_const
  61. #endif
  62. #endif
  63. #ifndef av_cold
  64. #if (!defined(__ICC) || __ICC > 1100) && AV_GCC_VERSION_AT_LEAST(4,3)
  65. # define av_cold __attribute__((cold))
  66. #else
  67. # define av_cold
  68. #endif
  69. #endif
  70. #ifndef attribute_deprecated
  71. #if AV_GCC_VERSION_AT_LEAST(3,1)
  72. # define attribute_deprecated __attribute__((deprecated))
  73. #else
  74. # define attribute_deprecated
  75. #endif
  76. #endif
  77. #ifndef av_unused
  78. #if defined(__GNUC__)
  79. # define av_unused __attribute__((unused))
  80. #else
  81. # define av_unused
  82. #endif
  83. #endif
  84. #ifndef av_uninit
  85. #if defined(__GNUC__)
  86. # define av_uninit(x) x=x
  87. #else
  88. # define av_uninit(x) x
  89. #endif
  90. #endif
  91. //rounded division & shift
  92. #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
  93. /* assume b>0 */
  94. #define ROUNDED_DIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b))
  95. #define FFABS(a) ((a) >= 0 ? (a) : (-(a)))
  96. #define FFSIGN(a) ((a) > 0 ? 1 : -1)
  97. #define FFMAX(a,b) ((a) > (b) ? (a) : (b))
  98. #define FFMAX3(a,b,c) FFMAX(FFMAX(a,b),c)
  99. #define FFMIN(a,b) ((a) > (b) ? (b) : (a))
  100. #define FFMIN3(a,b,c) FFMIN(FFMIN(a,b),c)
  101. #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
  102. #define FF_ARRAY_ELEMS(a) (sizeof(a) / sizeof((a)[0]))
  103. /* misc math functions */
  104. extern const uint8_t ff_log2_tab[256];
  105. static inline av_const int av_log2(unsigned int v)
  106. {
  107. int n = 0;
  108. if (v & 0xffff0000) {
  109. v >>= 16;
  110. n += 16;
  111. }
  112. if (v & 0xff00) {
  113. v >>= 8;
  114. n += 8;
  115. }
  116. n += ff_log2_tab[v];
  117. return n;
  118. }
  119. static inline av_const int av_log2_16bit(unsigned int v)
  120. {
  121. int n = 0;
  122. if (v & 0xff00) {
  123. v >>= 8;
  124. n += 8;
  125. }
  126. n += ff_log2_tab[v];
  127. return n;
  128. }
  129. /**
  130. * Clips a signed integer value into the amin-amax range.
  131. * @param a value to clip
  132. * @param amin minimum value of the clip range
  133. * @param amax maximum value of the clip range
  134. * @return clipped value
  135. */
  136. static inline av_const int av_clip(int a, int amin, int amax)
  137. {
  138. if (a < amin) return amin;
  139. else if (a > amax) return amax;
  140. else return a;
  141. }
  142. /**
  143. * Clips a signed integer value into the 0-255 range.
  144. * @param a value to clip
  145. * @return clipped value
  146. */
  147. static inline av_const uint8_t av_clip_uint8(int a)
  148. {
  149. if (a&(~255)) return (-a)>>31;
  150. else return a;
  151. }
  152. /**
  153. * Clips a signed integer value into the -32768,32767 range.
  154. * @param a value to clip
  155. * @return clipped value
  156. */
  157. static inline av_const int16_t av_clip_int16(int a)
  158. {
  159. if ((a+32768) & ~65535) return (a>>31) ^ 32767;
  160. else return a;
  161. }
  162. /**
  163. * Clips a float value into the amin-amax range.
  164. * @param a value to clip
  165. * @param amin minimum value of the clip range
  166. * @param amax maximum value of the clip range
  167. * @return clipped value
  168. */
  169. static inline av_const float av_clipf(float a, float amin, float amax)
  170. {
  171. if (a < amin) return amin;
  172. else if (a > amax) return amax;
  173. else return a;
  174. }
  175. #define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24))
  176. #define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24))
  177. /*!
  178. * \def GET_UTF8(val, GET_BYTE, ERROR)
  179. * Converts a UTF-8 character (up to 4 bytes long) to its 32-bit UCS-4 encoded form
  180. * \param val is the output and should be of type uint32_t. It holds the converted
  181. * UCS-4 character and should be a left value.
  182. * \param GET_BYTE gets UTF-8 encoded bytes from any proper source. It can be
  183. * a function or a statement whose return value or evaluated value is of type
  184. * uint8_t. It will be executed up to 4 times for values in the valid UTF-8 range,
  185. * and up to 7 times in the general case.
  186. * \param ERROR action that should be taken when an invalid UTF-8 byte is returned
  187. * from GET_BYTE. It should be a statement that jumps out of the macro,
  188. * like exit(), goto, return, break, or continue.
  189. */
  190. #define GET_UTF8(val, GET_BYTE, ERROR)\
  191. val= GET_BYTE;\
  192. {\
  193. int ones= 7 - av_log2(val ^ 255);\
  194. if(ones==1)\
  195. ERROR\
  196. val&= 127>>ones;\
  197. while(--ones > 0){\
  198. int tmp= GET_BYTE - 128;\
  199. if(tmp>>6)\
  200. ERROR\
  201. val= (val<<6) + tmp;\
  202. }\
  203. }
  204. /*!
  205. * \def PUT_UTF8(val, tmp, PUT_BYTE)
  206. * Converts a 32-bit Unicode character to its UTF-8 encoded form (up to 4 bytes long).
  207. * \param val is an input-only argument and should be of type uint32_t. It holds
  208. * a UCS-4 encoded Unicode character that is to be converted to UTF-8. If
  209. * val is given as a function it is executed only once.
  210. * \param tmp is a temporary variable and should be of type uint8_t. It
  211. * represents an intermediate value during conversion that is to be
  212. * output by PUT_BYTE.
  213. * \param PUT_BYTE writes the converted UTF-8 bytes to any proper destination.
  214. * It could be a function or a statement, and uses tmp as the input byte.
  215. * For example, PUT_BYTE could be "*output++ = tmp;" PUT_BYTE will be
  216. * executed up to 4 times for values in the valid UTF-8 range and up to
  217. * 7 times in the general case, depending on the length of the converted
  218. * Unicode character.
  219. */
  220. #define PUT_UTF8(val, tmp, PUT_BYTE)\
  221. {\
  222. int bytes, shift;\
  223. uint32_t in = val;\
  224. if (in < 0x80) {\
  225. tmp = in;\
  226. PUT_BYTE\
  227. } else {\
  228. bytes = (av_log2(in) + 4) / 5;\
  229. shift = (bytes - 1) * 6;\
  230. tmp = (256 - (256 >> bytes)) | (in >> shift);\
  231. PUT_BYTE\
  232. while (shift >= 6) {\
  233. shift -= 6;\
  234. tmp = 0x80 | ((in >> shift) & 0x3f);\
  235. PUT_BYTE\
  236. }\
  237. }\
  238. }
  239. #include "mem.h"
  240. #ifdef HAVE_AV_CONFIG_H
  241. # include "config.h"
  242. # include "internal.h"
  243. #endif /* HAVE_AV_CONFIG_H */
  244. #endif /* AVUTIL_COMMON_H */