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.

370 lines
9.2KB

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