common.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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 common.h
  22. * common internal and external API header
  23. */
  24. #ifndef AVUTIL_COMMON_H
  25. #define AVUTIL_COMMON_H
  26. #include <inttypes.h>
  27. #ifdef HAVE_AV_CONFIG_H
  28. /* only include the following when compiling package */
  29. # include "config.h"
  30. # include <stdlib.h>
  31. # include <stdio.h>
  32. # include <string.h>
  33. # include <ctype.h>
  34. # include <limits.h>
  35. # include <errno.h>
  36. # include <math.h>
  37. #endif /* HAVE_AV_CONFIG_H */
  38. #ifndef av_always_inline
  39. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  40. # define av_always_inline __attribute__((always_inline)) inline
  41. #else
  42. # define av_always_inline inline
  43. #endif
  44. #endif
  45. #ifndef av_noinline
  46. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  47. # define av_noinline __attribute__((noinline))
  48. #else
  49. # define av_noinline
  50. #endif
  51. #endif
  52. #ifndef av_pure
  53. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  54. # define av_pure __attribute__((pure))
  55. #else
  56. # define av_pure
  57. #endif
  58. #endif
  59. #ifndef av_const
  60. #if defined(__GNUC__) && (__GNUC__ > 2 || __GNUC__ == 2 && __GNUC_MINOR__ > 5)
  61. # define av_const __attribute__((const))
  62. #else
  63. # define av_const
  64. #endif
  65. #endif
  66. #ifndef av_cold
  67. #if defined(__GNUC__) && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ > 2)
  68. # define av_cold __attribute__((cold))
  69. #else
  70. # define av_cold
  71. #endif
  72. #endif
  73. #ifdef HAVE_AV_CONFIG_H
  74. # include "internal.h"
  75. #endif /* HAVE_AV_CONFIG_H */
  76. #ifndef attribute_deprecated
  77. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  78. # define attribute_deprecated __attribute__((deprecated))
  79. #else
  80. # define attribute_deprecated
  81. #endif
  82. #endif
  83. #ifndef av_unused
  84. #if defined(__GNUC__)
  85. # define av_unused __attribute__((unused))
  86. #else
  87. # define av_unused
  88. #endif
  89. #endif
  90. #include "mem.h"
  91. //rounded divison & 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. /* median of 3 */
  130. static inline av_const int mid_pred(int a, int b, int c)
  131. {
  132. #ifdef HAVE_CMOV
  133. int i=b;
  134. __asm__ volatile(
  135. "cmp %2, %1 \n\t"
  136. "cmovg %1, %0 \n\t"
  137. "cmovg %2, %1 \n\t"
  138. "cmp %3, %1 \n\t"
  139. "cmovl %3, %1 \n\t"
  140. "cmp %1, %0 \n\t"
  141. "cmovg %1, %0 \n\t"
  142. :"+&r"(i), "+&r"(a)
  143. :"r"(b), "r"(c)
  144. );
  145. return i;
  146. #elif 0
  147. int t= (a-b)&((a-b)>>31);
  148. a-=t;
  149. b+=t;
  150. b-= (b-c)&((b-c)>>31);
  151. b+= (a-b)&((a-b)>>31);
  152. return b;
  153. #else
  154. if(a>b){
  155. if(c>b){
  156. if(c>a) b=a;
  157. else b=c;
  158. }
  159. }else{
  160. if(b>c){
  161. if(c>a) b=c;
  162. else b=a;
  163. }
  164. }
  165. return b;
  166. #endif
  167. }
  168. /**
  169. * clip a signed integer value into the amin-amax range
  170. * @param a value to clip
  171. * @param amin minimum value of the clip range
  172. * @param amax maximum value of the clip range
  173. * @return clipped value
  174. */
  175. static inline av_const int av_clip(int a, int amin, int amax)
  176. {
  177. if (a < amin) return amin;
  178. else if (a > amax) return amax;
  179. else return a;
  180. }
  181. /**
  182. * clip a signed integer value into the 0-255 range
  183. * @param a value to clip
  184. * @return clipped value
  185. */
  186. static inline av_const uint8_t av_clip_uint8(int a)
  187. {
  188. if (a&(~255)) return (-a)>>31;
  189. else return a;
  190. }
  191. /**
  192. * clip a signed integer value into the -32768,32767 range
  193. * @param a value to clip
  194. * @return clipped value
  195. */
  196. static inline av_const int16_t av_clip_int16(int a)
  197. {
  198. if ((a+32768) & ~65535) return (a>>31) ^ 32767;
  199. else return a;
  200. }
  201. /**
  202. * clip a float value into the amin-amax range
  203. * @param a value to clip
  204. * @param amin minimum value of the clip range
  205. * @param amax maximum value of the clip range
  206. * @return clipped value
  207. */
  208. static inline av_const float av_clipf(float a, float amin, float amax)
  209. {
  210. if (a < amin) return amin;
  211. else if (a > amax) return amax;
  212. else return a;
  213. }
  214. /* math */
  215. int64_t av_const ff_gcd(int64_t a, int64_t b);
  216. /**
  217. * converts fourcc string to int
  218. */
  219. static inline av_pure int ff_get_fourcc(const char *s){
  220. #ifdef HAVE_AV_CONFIG_H
  221. assert( strlen(s)==4 );
  222. #endif
  223. return (s[0]) + (s[1]<<8) + (s[2]<<16) + (s[3]<<24);
  224. }
  225. #define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24))
  226. #define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24))
  227. /*!
  228. * \def GET_UTF8(val, GET_BYTE, ERROR)
  229. * converts a UTF-8 character (up to 4 bytes long) to its 32-bit UCS-4 encoded form
  230. * \param val is the output and should be of type uint32_t. It holds the converted
  231. * UCS-4 character and should be a left value.
  232. * \param GET_BYTE gets UTF-8 encoded bytes from any proper source. It can be
  233. * a function or a statement whose return value or evaluated value is of type
  234. * uint8_t. It will be executed up to 4 times for values in the valid UTF-8 range,
  235. * and up to 7 times in the general case.
  236. * \param ERROR action that should be taken when an invalid UTF-8 byte is returned
  237. * from GET_BYTE. It should be a statement that jumps out of the macro,
  238. * like exit(), goto, return, break, or continue.
  239. */
  240. #define GET_UTF8(val, GET_BYTE, ERROR)\
  241. val= GET_BYTE;\
  242. {\
  243. int ones= 7 - av_log2(val ^ 255);\
  244. if(ones==1)\
  245. ERROR\
  246. val&= 127>>ones;\
  247. while(--ones > 0){\
  248. int tmp= GET_BYTE - 128;\
  249. if(tmp>>6)\
  250. ERROR\
  251. val= (val<<6) + tmp;\
  252. }\
  253. }
  254. /*!
  255. * \def PUT_UTF8(val, tmp, PUT_BYTE)
  256. * converts a 32-bit unicode character to its UTF-8 encoded form (up to 4 bytes long).
  257. * \param val is an input only argument and should be of type uint32_t. It holds
  258. * a ucs4 encoded unicode character that is to be converted to UTF-8. If
  259. * val is given as a function it's executed only once.
  260. * \param tmp is a temporary variable and should be of type uint8_t. It
  261. * represents an intermediate value during conversion that is to be
  262. * outputted by PUT_BYTE.
  263. * \param PUT_BYTE writes the converted UTF-8 bytes to any proper destination.
  264. * It could be a function or a statement, and uses tmp as the input byte.
  265. * For example, PUT_BYTE could be "*output++ = tmp;" PUT_BYTE will be
  266. * executed up to 4 times for values in the valid UTF-8 range and up to
  267. * 7 times in the general case, depending on the length of the converted
  268. * unicode character.
  269. */
  270. #define PUT_UTF8(val, tmp, PUT_BYTE)\
  271. {\
  272. int bytes, shift;\
  273. uint32_t in = val;\
  274. if (in < 0x80) {\
  275. tmp = in;\
  276. PUT_BYTE\
  277. } else {\
  278. bytes = (av_log2(in) + 4) / 5;\
  279. shift = (bytes - 1) * 6;\
  280. tmp = (256 - (256 >> bytes)) | (in >> shift);\
  281. PUT_BYTE\
  282. while (shift >= 6) {\
  283. shift -= 6;\
  284. tmp = 0x80 | ((in >> shift) & 0x3f);\
  285. PUT_BYTE\
  286. }\
  287. }\
  288. }
  289. #if defined(ARCH_X86) || defined(ARCH_POWERPC) || defined(ARCH_BFIN)
  290. #define AV_READ_TIME read_time
  291. #if defined(ARCH_X86)
  292. static inline uint64_t read_time(void)
  293. {
  294. uint32_t a, d;
  295. __asm__ volatile("rdtsc\n\t"
  296. : "=a" (a), "=d" (d));
  297. return ((uint64_t)d << 32) + a;
  298. }
  299. #elif ARCH_BFIN
  300. static inline uint64_t read_time(void)
  301. {
  302. union {
  303. struct {
  304. unsigned lo;
  305. unsigned hi;
  306. } p;
  307. unsigned long long c;
  308. } t;
  309. __asm__ volatile ("%0=cycles; %1=cycles2;" : "=d" (t.p.lo), "=d" (t.p.hi));
  310. return t.c;
  311. }
  312. #else //FIXME check ppc64
  313. static inline uint64_t read_time(void)
  314. {
  315. uint32_t tbu, tbl, temp;
  316. /* from section 2.2.1 of the 32-bit PowerPC PEM */
  317. __asm__ volatile(
  318. "1:\n"
  319. "mftbu %2\n"
  320. "mftb %0\n"
  321. "mftbu %1\n"
  322. "cmpw %2,%1\n"
  323. "bne 1b\n"
  324. : "=r"(tbl), "=r"(tbu), "=r"(temp)
  325. :
  326. : "cc");
  327. return (((uint64_t)tbu)<<32) | (uint64_t)tbl;
  328. }
  329. #endif
  330. #elif defined(HAVE_GETHRTIME)
  331. #define AV_READ_TIME gethrtime
  332. #endif
  333. #ifdef AV_READ_TIME
  334. #define START_TIMER \
  335. uint64_t tend;\
  336. uint64_t tstart= AV_READ_TIME();\
  337. #define STOP_TIMER(id) \
  338. tend= AV_READ_TIME();\
  339. {\
  340. static uint64_t tsum=0;\
  341. static int tcount=0;\
  342. static int tskip_count=0;\
  343. if(tcount<2 || tend - tstart < FFMAX(8*tsum/tcount, 2000)){\
  344. tsum+= tend - tstart;\
  345. tcount++;\
  346. }else\
  347. tskip_count++;\
  348. if(((tcount+tskip_count)&(tcount+tskip_count-1))==0){\
  349. av_log(NULL, AV_LOG_ERROR, "%"PRIu64" dezicycles in %s, %d runs, %d skips\n",\
  350. tsum*10/tcount, id, tcount, tskip_count);\
  351. }\
  352. }
  353. #else
  354. #define START_TIMER
  355. #define STOP_TIMER(id) {}
  356. #endif
  357. /**
  358. * Returns NULL if CONFIG_SMALL is defined otherwise the argument
  359. * without modifications, used to disable the definition of strings
  360. * (for example AVCodec long_names).
  361. */
  362. #ifdef CONFIG_SMALL
  363. # define NULL_IF_CONFIG_SMALL(x) NULL
  364. #else
  365. # define NULL_IF_CONFIG_SMALL(x) x
  366. #endif
  367. #endif /* AVUTIL_COMMON_H */