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