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.

335 lines
8.5KB

  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. # define av_noinline __attribute__((noinline))
  42. #else
  43. # define av_always_inline inline
  44. # define av_noinline
  45. #endif
  46. #endif
  47. #ifdef HAVE_AV_CONFIG_H
  48. # include "internal.h"
  49. #endif /* HAVE_AV_CONFIG_H */
  50. #ifndef attribute_deprecated
  51. #if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
  52. # define attribute_deprecated __attribute__((deprecated))
  53. #else
  54. # define attribute_deprecated
  55. #endif
  56. #endif
  57. #ifndef av_unused
  58. #if defined(__GNUC__)
  59. # define av_unused __attribute__((unused))
  60. #else
  61. # define av_unused
  62. #endif
  63. #endif
  64. #include "mem.h"
  65. //rounded divison & shift
  66. #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
  67. /* assume b>0 */
  68. #define ROUNDED_DIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b))
  69. #define FFABS(a) ((a) >= 0 ? (a) : (-(a)))
  70. #define FFSIGN(a) ((a) > 0 ? 1 : -1)
  71. #define FFMAX(a,b) ((a) > (b) ? (a) : (b))
  72. #define FFMIN(a,b) ((a) > (b) ? (b) : (a))
  73. #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
  74. /* misc math functions */
  75. extern const uint8_t ff_log2_tab[256];
  76. static inline int av_log2(unsigned int v)
  77. {
  78. int n;
  79. n = 0;
  80. if (v & 0xffff0000) {
  81. v >>= 16;
  82. n += 16;
  83. }
  84. if (v & 0xff00) {
  85. v >>= 8;
  86. n += 8;
  87. }
  88. n += ff_log2_tab[v];
  89. return n;
  90. }
  91. static inline int av_log2_16bit(unsigned int v)
  92. {
  93. int n;
  94. n = 0;
  95. if (v & 0xff00) {
  96. v >>= 8;
  97. n += 8;
  98. }
  99. n += ff_log2_tab[v];
  100. return n;
  101. }
  102. /* median of 3 */
  103. static inline int mid_pred(int a, int b, int c)
  104. {
  105. #ifdef HAVE_CMOV
  106. int i=b;
  107. asm volatile(
  108. "cmp %2, %1 \n\t"
  109. "cmovg %1, %0 \n\t"
  110. "cmovg %2, %1 \n\t"
  111. "cmp %3, %1 \n\t"
  112. "cmovl %3, %1 \n\t"
  113. "cmp %1, %0 \n\t"
  114. "cmovg %1, %0 \n\t"
  115. :"+&r"(i), "+&r"(a)
  116. :"r"(b), "r"(c)
  117. );
  118. return i;
  119. #elif 0
  120. int t= (a-b)&((a-b)>>31);
  121. a-=t;
  122. b+=t;
  123. b-= (b-c)&((b-c)>>31);
  124. b+= (a-b)&((a-b)>>31);
  125. return b;
  126. #else
  127. if(a>b){
  128. if(c>b){
  129. if(c>a) b=a;
  130. else b=c;
  131. }
  132. }else{
  133. if(b>c){
  134. if(c>a) b=c;
  135. else b=a;
  136. }
  137. }
  138. return b;
  139. #endif
  140. }
  141. /**
  142. * clip a signed integer value into the amin-amax range
  143. * @param a value to clip
  144. * @param amin minimum value of the clip range
  145. * @param amax maximum value of the clip range
  146. * @return clipped value
  147. */
  148. static inline int av_clip(int a, int amin, int amax)
  149. {
  150. if (a < amin) return amin;
  151. else if (a > amax) return amax;
  152. else return a;
  153. }
  154. /**
  155. * clip a signed integer value into the 0-255 range
  156. * @param a value to clip
  157. * @return clipped value
  158. */
  159. static inline uint8_t av_clip_uint8(int a)
  160. {
  161. if (a&(~255)) return (-a)>>31;
  162. else return a;
  163. }
  164. /* math */
  165. int64_t ff_gcd(int64_t a, int64_t b);
  166. /**
  167. * converts fourcc string to int
  168. */
  169. static inline int ff_get_fourcc(const char *s){
  170. #ifdef HAVE_AV_CONFIG_H
  171. assert( strlen(s)==4 );
  172. #endif
  173. return (s[0]) + (s[1]<<8) + (s[2]<<16) + (s[3]<<24);
  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 ucs4 encoded unicode character that is to be converted to UTF-8. If
  209. * val is given as a function it's 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. * outputted 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. #if defined(ARCH_X86) || defined(ARCH_POWERPC)
  240. #if defined(ARCH_X86_64)
  241. static inline uint64_t read_time(void)
  242. {
  243. uint64_t a, d;
  244. asm volatile( "rdtsc\n\t"
  245. : "=a" (a), "=d" (d)
  246. );
  247. return (d << 32) | (a & 0xffffffff);
  248. }
  249. #elif defined(ARCH_X86_32)
  250. static inline long long read_time(void)
  251. {
  252. long long l;
  253. asm volatile( "rdtsc\n\t"
  254. : "=A" (l)
  255. );
  256. return l;
  257. }
  258. #else //FIXME check ppc64
  259. static inline uint64_t read_time(void)
  260. {
  261. uint32_t tbu, tbl, temp;
  262. /* from section 2.2.1 of the 32-bit PowerPC PEM */
  263. __asm__ __volatile__(
  264. "1:\n"
  265. "mftbu %2\n"
  266. "mftb %0\n"
  267. "mftbu %1\n"
  268. "cmpw %2,%1\n"
  269. "bne 1b\n"
  270. : "=r"(tbl), "=r"(tbu), "=r"(temp)
  271. :
  272. : "cc");
  273. return (((uint64_t)tbu)<<32) | (uint64_t)tbl;
  274. }
  275. #endif
  276. #define START_TIMER \
  277. uint64_t tend;\
  278. uint64_t tstart= read_time();\
  279. #define STOP_TIMER(id) \
  280. tend= read_time();\
  281. {\
  282. static uint64_t tsum=0;\
  283. static int tcount=0;\
  284. static int tskip_count=0;\
  285. if(tcount<2 || tend - tstart < FFMAX(8*tsum/tcount, 2000)){\
  286. tsum+= tend - tstart;\
  287. tcount++;\
  288. }else\
  289. tskip_count++;\
  290. if(((tcount+tskip_count)&(tcount+tskip_count-1))==0){\
  291. av_log(NULL, AV_LOG_DEBUG, "%"PRIu64" dezicycles in %s, %d runs, %d skips\n", tsum*10/tcount, id, tcount, tskip_count);\
  292. }\
  293. }
  294. #else
  295. #define START_TIMER
  296. #define STOP_TIMER(id) {}
  297. #endif
  298. #endif /* COMMON_H */