common.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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 FFMPEG_COMMON_H
  25. #define FFMPEG_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. #ifdef HAVE_AV_CONFIG_H
  53. # include "internal.h"
  54. #endif /* HAVE_AV_CONFIG_H */
  55. #ifndef attribute_deprecated
  56. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  57. # define attribute_deprecated __attribute__((deprecated))
  58. #else
  59. # define attribute_deprecated
  60. #endif
  61. #endif
  62. #ifndef av_unused
  63. #if defined(__GNUC__)
  64. # define av_unused __attribute__((unused))
  65. #else
  66. # define av_unused
  67. #endif
  68. #endif
  69. #include "mem.h"
  70. //rounded divison & shift
  71. #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
  72. /* assume b>0 */
  73. #define ROUNDED_DIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b))
  74. #define FFABS(a) ((a) >= 0 ? (a) : (-(a)))
  75. #define FFSIGN(a) ((a) > 0 ? 1 : -1)
  76. #define FFMAX(a,b) ((a) > (b) ? (a) : (b))
  77. #define FFMIN(a,b) ((a) > (b) ? (b) : (a))
  78. #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
  79. /* misc math functions */
  80. extern const uint8_t ff_log2_tab[256];
  81. static inline int av_log2(unsigned int v)
  82. {
  83. int n = 0;
  84. if (v & 0xffff0000) {
  85. v >>= 16;
  86. n += 16;
  87. }
  88. if (v & 0xff00) {
  89. v >>= 8;
  90. n += 8;
  91. }
  92. n += ff_log2_tab[v];
  93. return n;
  94. }
  95. static inline int av_log2_16bit(unsigned int v)
  96. {
  97. int n = 0;
  98. if (v & 0xff00) {
  99. v >>= 8;
  100. n += 8;
  101. }
  102. n += ff_log2_tab[v];
  103. return n;
  104. }
  105. /* median of 3 */
  106. static inline int mid_pred(int a, int b, int c)
  107. {
  108. #ifdef HAVE_CMOV
  109. int i=b;
  110. asm volatile(
  111. "cmp %2, %1 \n\t"
  112. "cmovg %1, %0 \n\t"
  113. "cmovg %2, %1 \n\t"
  114. "cmp %3, %1 \n\t"
  115. "cmovl %3, %1 \n\t"
  116. "cmp %1, %0 \n\t"
  117. "cmovg %1, %0 \n\t"
  118. :"+&r"(i), "+&r"(a)
  119. :"r"(b), "r"(c)
  120. );
  121. return i;
  122. #elif 0
  123. int t= (a-b)&((a-b)>>31);
  124. a-=t;
  125. b+=t;
  126. b-= (b-c)&((b-c)>>31);
  127. b+= (a-b)&((a-b)>>31);
  128. return b;
  129. #else
  130. if(a>b){
  131. if(c>b){
  132. if(c>a) b=a;
  133. else b=c;
  134. }
  135. }else{
  136. if(b>c){
  137. if(c>a) b=c;
  138. else b=a;
  139. }
  140. }
  141. return b;
  142. #endif
  143. }
  144. /**
  145. * clip a signed integer value into the amin-amax range
  146. * @param a value to clip
  147. * @param amin minimum value of the clip range
  148. * @param amax maximum value of the clip range
  149. * @return clipped value
  150. */
  151. static inline int av_clip(int a, int amin, int amax)
  152. {
  153. if (a < amin) return amin;
  154. else if (a > amax) return amax;
  155. else return a;
  156. }
  157. /**
  158. * clip a signed integer value into the 0-255 range
  159. * @param a value to clip
  160. * @return clipped value
  161. */
  162. static inline uint8_t av_clip_uint8(int a)
  163. {
  164. if (a&(~255)) return (-a)>>31;
  165. else return a;
  166. }
  167. /**
  168. * clip a signed integer value into the -32768,32767 range
  169. * @param a value to clip
  170. * @return clipped value
  171. */
  172. static inline int16_t av_clip_int16(int a)
  173. {
  174. if ((a+32768) & ~65535) return (a>>31) ^ 32767;
  175. else return a;
  176. }
  177. /* math */
  178. int64_t ff_gcd(int64_t a, int64_t b);
  179. /**
  180. * converts fourcc string to int
  181. */
  182. static inline int ff_get_fourcc(const char *s){
  183. #ifdef HAVE_AV_CONFIG_H
  184. assert( strlen(s)==4 );
  185. #endif
  186. return (s[0]) + (s[1]<<8) + (s[2]<<16) + (s[3]<<24);
  187. }
  188. #define MKTAG(a,b,c,d) (a | (b << 8) | (c << 16) | (d << 24))
  189. #define MKBETAG(a,b,c,d) (d | (c << 8) | (b << 16) | (a << 24))
  190. /*!
  191. * \def GET_UTF8(val, GET_BYTE, ERROR)
  192. * converts a UTF-8 character (up to 4 bytes long) to its 32-bit UCS-4 encoded form
  193. * \param val is the output and should be of type uint32_t. It holds the converted
  194. * UCS-4 character and should be a left value.
  195. * \param GET_BYTE gets UTF-8 encoded bytes from any proper source. It can be
  196. * a function or a statement whose return value or evaluated value is of type
  197. * uint8_t. It will be executed up to 4 times for values in the valid UTF-8 range,
  198. * and up to 7 times in the general case.
  199. * \param ERROR action that should be taken when an invalid UTF-8 byte is returned
  200. * from GET_BYTE. It should be a statement that jumps out of the macro,
  201. * like exit(), goto, return, break, or continue.
  202. */
  203. #define GET_UTF8(val, GET_BYTE, ERROR)\
  204. val= GET_BYTE;\
  205. {\
  206. int ones= 7 - av_log2(val ^ 255);\
  207. if(ones==1)\
  208. ERROR\
  209. val&= 127>>ones;\
  210. while(--ones > 0){\
  211. int tmp= GET_BYTE - 128;\
  212. if(tmp>>6)\
  213. ERROR\
  214. val= (val<<6) + tmp;\
  215. }\
  216. }
  217. /*!
  218. * \def PUT_UTF8(val, tmp, PUT_BYTE)
  219. * converts a 32-bit unicode character to its UTF-8 encoded form (up to 4 bytes long).
  220. * \param val is an input only argument and should be of type uint32_t. It holds
  221. * a ucs4 encoded unicode character that is to be converted to UTF-8. If
  222. * val is given as a function it's executed only once.
  223. * \param tmp is a temporary variable and should be of type uint8_t. It
  224. * represents an intermediate value during conversion that is to be
  225. * outputted by PUT_BYTE.
  226. * \param PUT_BYTE writes the converted UTF-8 bytes to any proper destination.
  227. * It could be a function or a statement, and uses tmp as the input byte.
  228. * For example, PUT_BYTE could be "*output++ = tmp;" PUT_BYTE will be
  229. * executed up to 4 times for values in the valid UTF-8 range and up to
  230. * 7 times in the general case, depending on the length of the converted
  231. * unicode character.
  232. */
  233. #define PUT_UTF8(val, tmp, PUT_BYTE)\
  234. {\
  235. int bytes, shift;\
  236. uint32_t in = val;\
  237. if (in < 0x80) {\
  238. tmp = in;\
  239. PUT_BYTE\
  240. } else {\
  241. bytes = (av_log2(in) + 4) / 5;\
  242. shift = (bytes - 1) * 6;\
  243. tmp = (256 - (256 >> bytes)) | (in >> shift);\
  244. PUT_BYTE\
  245. while (shift >= 6) {\
  246. shift -= 6;\
  247. tmp = 0x80 | ((in >> shift) & 0x3f);\
  248. PUT_BYTE\
  249. }\
  250. }\
  251. }
  252. #if defined(ARCH_X86) || defined(ARCH_POWERPC) || defined(ARCH_BFIN)
  253. #define AV_READ_TIME read_time
  254. #if defined(ARCH_X86_64)
  255. static inline uint64_t read_time(void)
  256. {
  257. uint64_t a, d;
  258. asm volatile("rdtsc\n\t"
  259. : "=a" (a), "=d" (d));
  260. return (d << 32) | (a & 0xffffffff);
  261. }
  262. #elif defined(ARCH_X86_32)
  263. static inline long long read_time(void)
  264. {
  265. long long l;
  266. asm volatile("rdtsc\n\t"
  267. : "=A" (l));
  268. return l;
  269. }
  270. #elif ARCH_BFIN
  271. static inline uint64_t read_time(void)
  272. {
  273. union {
  274. struct {
  275. unsigned lo;
  276. unsigned hi;
  277. } p;
  278. unsigned long long c;
  279. } t;
  280. asm volatile ("%0=cycles; %1=cycles2;" : "=d" (t.p.lo), "=d" (t.p.hi));
  281. return t.c;
  282. }
  283. #else //FIXME check ppc64
  284. static inline uint64_t read_time(void)
  285. {
  286. uint32_t tbu, tbl, temp;
  287. /* from section 2.2.1 of the 32-bit PowerPC PEM */
  288. __asm__ __volatile__(
  289. "1:\n"
  290. "mftbu %2\n"
  291. "mftb %0\n"
  292. "mftbu %1\n"
  293. "cmpw %2,%1\n"
  294. "bne 1b\n"
  295. : "=r"(tbl), "=r"(tbu), "=r"(temp)
  296. :
  297. : "cc");
  298. return (((uint64_t)tbu)<<32) | (uint64_t)tbl;
  299. }
  300. #endif
  301. #elif defined(HAVE_GETHRTIME)
  302. #define AV_READ_TIME gethrtime
  303. #endif
  304. #ifdef AV_READ_TIME
  305. #define START_TIMER \
  306. uint64_t tend;\
  307. uint64_t tstart= AV_READ_TIME();\
  308. #define STOP_TIMER(id) \
  309. tend= AV_READ_TIME();\
  310. {\
  311. static uint64_t tsum=0;\
  312. static int tcount=0;\
  313. static int tskip_count=0;\
  314. if(tcount<2 || tend - tstart < FFMAX(8*tsum/tcount, 2000)){\
  315. tsum+= tend - tstart;\
  316. tcount++;\
  317. }else\
  318. tskip_count++;\
  319. if(((tcount+tskip_count)&(tcount+tskip_count-1))==0){\
  320. av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" dezicycles in %s, %d runs, %d skips\n",\
  321. tsum*10/tcount, id, tcount, tskip_count);\
  322. }\
  323. }
  324. #else
  325. #define START_TIMER
  326. #define STOP_TIMER(id) {}
  327. #endif
  328. #endif /* FFMPEG_COMMON_H */