Mercurial > mplayer.hg
annotate tremor/os_types.h @ 34634:0ef7177a063b
Fix linking after FFmpeg merge.
Protocols that are available only when librtmp is present
are no longer disabled in the code, so we have to remove
them in our configure.
author | iive |
---|---|
date | Tue, 14 Feb 2012 16:50:42 +0000 |
parents | e83eef58b30a |
children |
rev | line source |
---|---|
14280 | 1 /******************************************************************** |
2 * * | |
3 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. * | |
4 * * | |
5 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * | |
6 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE * | |
7 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. * | |
8 * * | |
9 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 * | |
10 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ * | |
11 * * | |
12 ******************************************************************** | |
13 | |
14 function: #ifdef jail to whip a few platforms into the UNIX ideal. | |
15 | |
16 ********************************************************************/ | |
17 #ifndef _OS_TYPES_H | |
18 #define _OS_TYPES_H | |
19 | |
20 #ifdef _LOW_ACCURACY_ | |
21 # define X(n) (((((n)>>22)+1)>>1) - ((((n)>>22)+1)>>9)) | |
22 # define LOOKUP_T const unsigned char | |
23 #else | |
24 # define X(n) (n) | |
25 # define LOOKUP_T const ogg_int32_t | |
26 #endif | |
27 | |
28 /* make it easy on the folks that want to compile the libs with a | |
29 different malloc than stdlib */ | |
30 #define _ogg_malloc malloc | |
31 #define _ogg_calloc calloc | |
32 #define _ogg_realloc realloc | |
33 #define _ogg_free free | |
34 | |
26866 | 35 #include <inttypes.h> |
36 typedef int64_t ogg_int64_t; | |
37 typedef int32_t ogg_int32_t; | |
38 typedef int16_t ogg_int16_t; | |
39 typedef uint32_t ogg_uint32_t; | |
40 typedef uint16_t ogg_uint16_t; | |
14280 | 41 |
26867
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
42 #if 0 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
43 |
29264
e83eef58b30a
Remove all kind of trailing whitespaces from all MPlayer's files.
bircoph
parents:
26867
diff
changeset
|
44 #ifdef _WIN32 |
26867
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
45 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
46 # ifndef __GNUC__ |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
47 /* MSVC/Borland */ |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
48 typedef __int64 ogg_int64_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
49 typedef __int32 ogg_int32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
50 typedef unsigned __int32 ogg_uint32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
51 typedef __int16 ogg_int16_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
52 # else |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
53 /* Cygwin */ |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
54 #include <_G_config.h> |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
55 typedef _G_int64_t ogg_int64_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
56 typedef _G_int32_t ogg_int32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
57 typedef _G_uint32_t ogg_uint32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
58 typedef _G_int16_t ogg_int16_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
59 # endif |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
60 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
61 #elif defined(__MACOS__) |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
62 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
63 # include <sys/types.h> |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
64 typedef SInt16 ogg_int16_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
65 typedef SInt32 ogg_int32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
66 typedef UInt32 ogg_uint32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
67 typedef SInt64 ogg_int64_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
68 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
69 #elif defined(__MACOSX__) /* MacOS X Framework build */ |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
70 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
71 # include <sys/types.h> |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
72 typedef int16_t ogg_int16_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
73 typedef int32_t ogg_int32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
74 typedef u_int32_t ogg_uint32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
75 typedef int64_t ogg_int64_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
76 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
77 #elif defined(__BEOS__) |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
78 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
79 /* Be */ |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
80 # include <inttypes.h> |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
81 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
82 #elif defined (__EMX__) |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
83 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
84 /* OS/2 GCC */ |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
85 typedef short ogg_int16_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
86 typedef int ogg_int32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
87 typedef unsigned int ogg_uint32_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
88 typedef long long ogg_int64_t; |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
89 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
90 #else |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
91 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
92 # include <sys/types.h> |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
93 # include "config_types.h" |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
94 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
95 #endif |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
96 |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
97 #endif /* 0 */ |
e61b6352f32f
Instead of removing code from this imported library, place it under #if 0.
diego
parents:
26866
diff
changeset
|
98 |
14280 | 99 #endif /* _OS_TYPES_H */ |