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