World of Might and Magic  0.2.0
Open reimplementation of Might and Magic 6 7 8 game engine
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 
26 #ifndef AVUTIL_COMMON_H
27 #define AVUTIL_COMMON_H
28 
29 #if defined(__cplusplus) && !defined(__STDC_CONSTANT_MACROS) && !defined(UINT64_C)
30 #error missing -D__STDC_CONSTANT_MACROS / #define __STDC_CONSTANT_MACROS
31 #endif
32 
33 #include <errno.h>
34 #include <inttypes.h>
35 #include <limits.h>
36 #include <math.h>
37 #include <stdint.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 
42 #include "attributes.h"
43 #include "macros.h"
44 #include "version.h"
45 #include "libavutil/avconfig.h"
46 
47 #if AV_HAVE_BIGENDIAN
48 # define AV_NE(be, le) (be)
49 #else
50 # define AV_NE(be, le) (le)
51 #endif
52 
53 //rounded division & shift
54 #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
55 /* assume b>0 */
56 #define ROUNDED_DIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b))
57 /* Fast a/(1<<b) rounded toward +inf. Assume a>=0 and b>=0 */
58 #define AV_CEIL_RSHIFT(a,b) (!av_builtin_constant_p(b) ? -((-(a)) >> (b)) \
59  : ((a) + (1<<(b)) - 1) >> (b))
60 /* Backwards compat. */
61 #define FF_CEIL_RSHIFT AV_CEIL_RSHIFT
62 
63 #define FFUDIV(a,b) (((a)>0 ?(a):(a)-(b)+1) / (b))
64 #define FFUMOD(a,b) ((a)-(b)*FFUDIV(a,b))
65 
72 #define FFABS(a) ((a) >= 0 ? (a) : (-(a)))
73 #define FFSIGN(a) ((a) > 0 ? 1 : -1)
74 
81 #define FFNABS(a) ((a) <= 0 ? (a) : (-(a)))
82 
92 #define FFDIFFSIGN(x,y) (((x)>(y)) - ((x)<(y)))
93 
94 #define FFMAX(a,b) ((a) > (b) ? (a) : (b))
95 #define FFMAX3(a,b,c) FFMAX(FFMAX(a,b),c)
96 #define FFMIN(a,b) ((a) > (b) ? (b) : (a))
97 #define FFMIN3(a,b,c) FFMIN(FFMIN(a,b),c)
98 
99 #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
100 #define FF_ARRAY_ELEMS(a) (sizeof(a) / sizeof((a)[0]))
101 
102 /* misc math functions */
103 
104 #ifdef HAVE_AV_CONFIG_H
105 # include "config.h"
106 # include "intmath.h"
107 #endif
108 
109 /* Pull in unguarded fallback defines at the end of this file. */
110 #include "common.h"
111 
112 #ifndef av_log2
113 av_const int av_log2(unsigned v);
114 #endif
115 
116 #ifndef av_log2_16bit
117 av_const int av_log2_16bit(unsigned v);
118 #endif
119 
127 static av_always_inline av_const int av_clip_c(int a, int amin, int amax)
128 {
129 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
130  if (amin > amax) abort();
131 #endif
132  if (a < amin) return amin;
133  else if (a > amax) return amax;
134  else return a;
135 }
136 
144 static av_always_inline av_const int64_t av_clip64_c(int64_t a, int64_t amin, int64_t amax)
145 {
146 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
147  if (amin > amax) abort();
148 #endif
149  if (a < amin) return amin;
150  else if (a > amax) return amax;
151  else return a;
152 }
153 
159 static av_always_inline av_const uint8_t av_clip_uint8_c(int a)
160 {
161  if (a&(~0xFF)) return (~a)>>31;
162  else return a;
163 }
164 
170 static av_always_inline av_const int8_t av_clip_int8_c(int a)
171 {
172  if ((a+0x80U) & ~0xFF) return (a>>31) ^ 0x7F;
173  else return a;
174 }
175 
181 static av_always_inline av_const uint16_t av_clip_uint16_c(int a)
182 {
183  if (a&(~0xFFFF)) return (~a)>>31;
184  else return a;
185 }
186 
192 static av_always_inline av_const int16_t av_clip_int16_c(int a)
193 {
194  if ((a+0x8000U) & ~0xFFFF) return (a>>31) ^ 0x7FFF;
195  else return a;
196 }
197 
203 static av_always_inline av_const int32_t av_clipl_int32_c(int64_t a)
204 {
205  if ((a+0x80000000u) & ~UINT64_C(0xFFFFFFFF)) return (int32_t)((a>>63) ^ 0x7FFFFFFF);
206  else return (int32_t)a;
207 }
208 
215 static av_always_inline av_const int av_clip_intp2_c(int a, int p)
216 {
217  if (((unsigned)a + (1 << p)) & ~((2 << p) - 1))
218  return (a >> 31) ^ ((1 << p) - 1);
219  else
220  return a;
221 }
222 
229 static av_always_inline av_const unsigned av_clip_uintp2_c(int a, int p)
230 {
231  if (a & ~((1<<p) - 1)) return (~a) >> 31 & ((1<<p) - 1);
232  else return a;
233 }
234 
241 static av_always_inline av_const unsigned av_mod_uintp2_c(unsigned a, unsigned p)
242 {
243  return a & ((1 << p) - 1);
244 }
245 
253 static av_always_inline int av_sat_add32_c(int a, int b)
254 {
255  return av_clipl_int32((int64_t)a + b);
256 }
257 
265 static av_always_inline int av_sat_dadd32_c(int a, int b)
266 {
267  return av_sat_add32(a, av_sat_add32(b, b));
268 }
269 
277 static av_always_inline int av_sat_sub32_c(int a, int b)
278 {
279  return av_clipl_int32((int64_t)a - b);
280 }
281 
289 static av_always_inline int av_sat_dsub32_c(int a, int b)
290 {
291  return av_sat_sub32(a, av_sat_add32(b, b));
292 }
293 
301 static av_always_inline av_const float av_clipf_c(float a, float amin, float amax)
302 {
303 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
304  if (amin > amax) abort();
305 #endif
306  if (a < amin) return amin;
307  else if (a > amax) return amax;
308  else return a;
309 }
310 
318 static av_always_inline av_const double av_clipd_c(double a, double amin, double amax)
319 {
320 #if defined(HAVE_AV_CONFIG_H) && defined(ASSERT_LEVEL) && ASSERT_LEVEL >= 2
321  if (amin > amax) abort();
322 #endif
323  if (a < amin) return amin;
324  else if (a > amax) return amax;
325  else return a;
326 }
327 
332 static av_always_inline av_const int av_ceil_log2_c(int x)
333 {
334  return av_log2((x - 1) << 1);
335 }
336 
342 static av_always_inline av_const int av_popcount_c(uint32_t x)
343 {
344  x -= (x >> 1) & 0x55555555;
345  x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
346  x = (x + (x >> 4)) & 0x0F0F0F0F;
347  x += x >> 8;
348  return (x + (x >> 16)) & 0x3F;
349 }
350 
356 static av_always_inline av_const int av_popcount64_c(uint64_t x)
357 {
358  return av_popcount((uint32_t)x) + av_popcount((uint32_t)(x >> 32));
359 }
360 
361 static av_always_inline av_const int av_parity_c(uint32_t v)
362 {
363  return av_popcount(v) & 1;
364 }
365 
366 #define MKTAG(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((unsigned)(d) << 24))
367 #define MKBETAG(a,b,c,d) ((d) | ((c) << 8) | ((b) << 16) | ((unsigned)(a) << 24))
368 
385 #define GET_UTF8(val, GET_BYTE, ERROR)\
386  val= (GET_BYTE);\
387  {\
388  uint32_t top = (val & 128) >> 1;\
389  if ((val & 0xc0) == 0x80 || val >= 0xFE)\
390  ERROR\
391  while (val & top) {\
392  int tmp= (GET_BYTE) - 128;\
393  if(tmp>>6)\
394  ERROR\
395  val= (val<<6) + tmp;\
396  top <<= 5;\
397  }\
398  val &= (top << 1) - 1;\
399  }
400 
410 #define GET_UTF16(val, GET_16BIT, ERROR)\
411  val = GET_16BIT;\
412  {\
413  unsigned int hi = val - 0xD800;\
414  if (hi < 0x800) {\
415  val = GET_16BIT - 0xDC00;\
416  if (val > 0x3FFU || hi > 0x3FFU)\
417  ERROR\
418  val += (hi<<10) + 0x10000;\
419  }\
420  }\
421 
422 
438 #define PUT_UTF8(val, tmp, PUT_BYTE)\
439  {\
440  int bytes, shift;\
441  uint32_t in = val;\
442  if (in < 0x80) {\
443  tmp = in;\
444  PUT_BYTE\
445  } else {\
446  bytes = (av_log2(in) + 4) / 5;\
447  shift = (bytes - 1) * 6;\
448  tmp = (256 - (256 >> bytes)) | (in >> shift);\
449  PUT_BYTE\
450  while (shift >= 6) {\
451  shift -= 6;\
452  tmp = 0x80 | ((in >> shift) & 0x3f);\
453  PUT_BYTE\
454  }\
455  }\
456  }
457 
472 #define PUT_UTF16(val, tmp, PUT_16BIT)\
473  {\
474  uint32_t in = val;\
475  if (in < 0x10000) {\
476  tmp = in;\
477  PUT_16BIT\
478  } else {\
479  tmp = 0xD800 | ((in - 0x10000) >> 10);\
480  PUT_16BIT\
481  tmp = 0xDC00 | ((in - 0x10000) & 0x3FF);\
482  PUT_16BIT\
483  }\
484  }\
485 
486 
487 
488 #include "mem.h"
489 
490 #ifdef HAVE_AV_CONFIG_H
491 # include "internal.h"
492 #endif /* HAVE_AV_CONFIG_H */
493 
494 #endif /* AVUTIL_COMMON_H */
495 
496 /*
497  * The following definitions are outside the multiple inclusion guard
498  * to ensure they are immediately available in intmath.h.
499  */
500 
501 #ifndef av_ceil_log2
502 # define av_ceil_log2 av_ceil_log2_c
503 #endif
504 #ifndef av_clip
505 # define av_clip av_clip_c
506 #endif
507 #ifndef av_clip64
508 # define av_clip64 av_clip64_c
509 #endif
510 #ifndef av_clip_uint8
511 # define av_clip_uint8 av_clip_uint8_c
512 #endif
513 #ifndef av_clip_int8
514 # define av_clip_int8 av_clip_int8_c
515 #endif
516 #ifndef av_clip_uint16
517 # define av_clip_uint16 av_clip_uint16_c
518 #endif
519 #ifndef av_clip_int16
520 # define av_clip_int16 av_clip_int16_c
521 #endif
522 #ifndef av_clipl_int32
523 # define av_clipl_int32 av_clipl_int32_c
524 #endif
525 #ifndef av_clip_intp2
526 # define av_clip_intp2 av_clip_intp2_c
527 #endif
528 #ifndef av_clip_uintp2
529 # define av_clip_uintp2 av_clip_uintp2_c
530 #endif
531 #ifndef av_mod_uintp2
532 # define av_mod_uintp2 av_mod_uintp2_c
533 #endif
534 #ifndef av_sat_add32
535 # define av_sat_add32 av_sat_add32_c
536 #endif
537 #ifndef av_sat_dadd32
538 # define av_sat_dadd32 av_sat_dadd32_c
539 #endif
540 #ifndef av_sat_sub32
541 # define av_sat_sub32 av_sat_sub32_c
542 #endif
543 #ifndef av_sat_dsub32
544 # define av_sat_dsub32 av_sat_dsub32_c
545 #endif
546 #ifndef av_clipf
547 # define av_clipf av_clipf_c
548 #endif
549 #ifndef av_clipd
550 # define av_clipd av_clipd_c
551 #endif
552 #ifndef av_popcount
553 # define av_popcount av_popcount_c
554 #endif
555 #ifndef av_popcount64
556 # define av_popcount64 av_popcount64_c
557 #endif
558 #ifndef av_parity
559 # define av_parity av_parity_c
560 #endif
uint16_t
unsigned __int16 uint16_t
Definition: SDL_config.h:37
int16_t
signed __int16 int16_t
Definition: SDL_config.h:36
v
const GLdouble * v
Definition: SDL_opengl.h:2064
av_mod_uintp2_c
static av_always_inline av_const unsigned av_mod_uintp2_c(unsigned a, unsigned p)
Definition: common.h:241
av_log2_16bit
av_const int av_log2_16bit(unsigned v)
av_clip_uintp2_c
static av_always_inline av_const unsigned av_clip_uintp2_c(int a, int p)
Definition: common.h:229
av_sat_sub32_c
static av_always_inline int av_sat_sub32_c(int a, int b)
Definition: common.h:277
av_clip_uint16_c
static av_always_inline av_const uint16_t av_clip_uint16_c(int a)
Definition: common.h:181
av_clip_uint8_c
static av_always_inline av_const uint8_t av_clip_uint8_c(int a)
Definition: common.h:159
av_sat_dadd32_c
static av_always_inline int av_sat_dadd32_c(int a, int b)
Definition: common.h:265
av_clip64_c
static av_always_inline av_const int64_t av_clip64_c(int64_t a, int64_t amin, int64_t amax)
Definition: common.h:144
avconfig.h
int64_t
__int64 int64_t
Definition: alext.h:31
macros.h
uint64_t
unsigned __int64 uint64_t
Definition: alext.h:32
p
GLfloat GLfloat p
Definition: SDL_opengl_glext.h:11093
av_clipf_c
static av_always_inline av_const float av_clipf_c(float a, float amin, float amax)
Definition: common.h:301
av_clipd_c
static av_always_inline av_const double av_clipd_c(double a, double amin, double amax)
Definition: common.h:318
x
EGLSurface EGLint x
Definition: SDL_egl.h:1596
av_clip_intp2_c
static av_always_inline av_const int av_clip_intp2_c(int a, int p)
Definition: common.h:215
av_clip_c
static av_always_inline av_const int av_clip_c(int a, int amin, int amax)
Definition: common.h:127
int32_t
signed __int32 int32_t
Definition: SDL_config.h:38
av_log2
av_const int av_log2(unsigned v)
attributes.h
uint8_t
unsigned __int8 uint8_t
Definition: SDL_config.h:35
common.h
av_clipl_int32_c
static av_always_inline av_const int32_t av_clipl_int32_c(int64_t a)
Definition: common.h:203
av_popcount_c
static av_always_inline av_const int av_popcount_c(uint32_t x)
Definition: common.h:342
b
GLboolean GLboolean GLboolean b
Definition: SDL_opengl_glext.h:1112
av_sat_add32_c
static av_always_inline int av_sat_add32_c(int a, int b)
Definition: common.h:253
av_popcount64_c
static av_always_inline av_const int av_popcount64_c(uint64_t x)
Definition: common.h:356
a
GLboolean GLboolean GLboolean GLboolean a
Definition: SDL_opengl_glext.h:1112
mem.h
av_clip_int16_c
static av_always_inline av_const int16_t av_clip_int16_c(int a)
Definition: common.h:192
av_sat_dsub32_c
static av_always_inline int av_sat_dsub32_c(int a, int b)
Definition: common.h:289
uint32_t
unsigned __int32 uint32_t
Definition: SDL_config.h:39
av_parity_c
static av_always_inline av_const int av_parity_c(uint32_t v)
Definition: common.h:361
int8_t
signed __int8 int8_t
Definition: SDL_config.h:34
av_ceil_log2_c
static av_always_inline av_const int av_ceil_log2_c(int x)
Definition: common.h:332
av_clip_int8_c
static av_always_inline av_const int8_t av_clip_int8_c(int a)
Definition: common.h:170