[cvs] / xvidcore / src / portab.h Repository:
ViewVC logotype

Diff of /xvidcore/src/portab.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.22, Thu Jun 20 14:05:57 2002 UTC revision 1.26.2.2, Thu Nov 7 10:28:15 2002 UTC
# Line 1  Line 1 
1  #ifndef _PORTAB_H_  #ifndef _PORTAB_H_
2  #define _PORTAB_H_  #define _PORTAB_H_
3    
4    
5    // debug level masks
6    #define DPRINTF_ERROR           0x00000001
7    #define DPRINTF_STARTCODE       0x00000002
8    #define DPRINTF_HEADER          0x00000004
9    #define DPRINTF_TIMECODE        0x00000008
10    #define DPRINTF_MB                      0x00000010
11    #define DPRINTF_COEFF           0x00000020
12    #define DPRINTF_MV                      0x00000040
13    #define DPRINTF_DEBUG           0x80000000
14    
15    
16    #ifdef _DEBUG
17    // debug level
18    #define DPRINTF_LEVEL           0x0000000f
19    #else
20    #define DPRINTF_LEVEL           0x0
21    #endif
22    
23    
24    #define DPRINTF_BUF_SZ  1024
25    
26    
27  #if defined(WIN32)  #if defined(WIN32)
28    
29  #include <windows.h>  #include <windows.h>
30  #include <stdio.h>  #include <stdio.h>
31    
32    static __inline void
33  #define DPRINTF_BUF_SZ  1024  DPRINTF(int level, char *fmt,
 static void  
 DPRINTF(char *fmt,  
34                  ...)                  ...)
35  {  {
36            if ((DPRINTF_LEVEL & level))
37            {
38          va_list args;          va_list args;
39          char buf[DPRINTF_BUF_SZ];          char buf[DPRINTF_BUF_SZ];
40    
# Line 19  Line 42 
42          vsprintf(buf, fmt, args);          vsprintf(buf, fmt, args);
43          OutputDebugString(buf);          OutputDebugString(buf);
44          fprintf(stdout, "%s\n", buf);          fprintf(stdout, "%s\n", buf);
45                    fflush(stdout);
46            }
47  }  }
48    
49    
# Line 85  Line 110 
110          return ts;          return ts;
111  }  }
112    
113  #elif defined(LINUX) || defined(DJGPP) || defined(FREEBSD)  #elif defined(LINUX) || defined(DJGPP) || defined(FREEBSD) || defined(BEOS)
114    
115  #include <stdio.h>  #include <stdio.h>
116  #include <stdarg.h>  #include <stdarg.h>
117  #define DPRINTF_BUF_SZ  1024  
118  static void  static __inline void
119  DPRINTF(char *fmt,  DPRINTF(int level, char *fmt,
120                  ...)                  ...)
121  {  {
122            if ((DPRINTF_LEVEL & level)) {
123          va_list args;          va_list args;
124          char buf[DPRINTF_BUF_SZ];          char buf[DPRINTF_BUF_SZ];
125    
# Line 101  Line 127 
127          vsprintf(buf, fmt, args);          vsprintf(buf, fmt, args);
128          fprintf(stdout, "%s\n", buf);          fprintf(stdout, "%s\n", buf);
129  }  }
130    }
131    
132  #ifdef _DEBUG  #ifdef _DEBUG
133    
# Line 121  Line 148 
148  #define DEBUGCBR(A,B,C)  #define DEBUGCBR(A,B,C)
149  #endif  #endif
150    
151  #if defined(LINUX)  #if defined(LINUX) || defined(BEOS)
152    
153    #if defined(BEOS)
154    #include <inttypes.h>
155    #else
156  #include <stdint.h>  #include <stdint.h>
157    #endif
158    
159  #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \  #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
160          type name##_storage[(sizex)*(sizey)+(alignment)-1]; \          type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
# Line 192  Line 223 
223    
224  #define EMMS()  #define EMMS()
225    
226    #ifdef __GNUC__
227    
228    // needed for bitstream.h
229    #define BSWAP(a)  __asm__ __volatile__ ("mux1 %1 = %0, @rev" \
230                            ";;" \
231                            "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));
232    
233    // rdtsc replacement for ia64
234    static __inline int64_t read_counter() {
235            unsigned long result;
236    
237    //      __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
238    //      while (__builtin_expect ((int) result == -1, 0))
239                    __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
240            return result;
241    
242    }
243    
244    /* we are missing our ia64intrin.h file, but according to the
245       Intel's ecc manual, this should be the right way ...
246       this
247    
248    #elif defined(__INTEL_COMPILER)
249    
250    #include <ia64intrin.h>
251    
252    static __inline int64_t read_counter() {
253      return __getReg(44);
254    }
255    
256    #define BSWAP(a) ((unsigned int) (_m64_mux1(a, 0xb) >> 32))
257    */
258    
259    #else
260    
261  // needed for bitstream.h  // needed for bitstream.h
262  #define BSWAP(a) \  #define BSWAP(a) \
263           ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))           ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))
264    
265  // rdtsc command most likely not supported,  // rdtsc command most likely not supported,
266  // so just dummy code here  // so just dummy code here
267  static __inline int64_t read_counter() {  static __inline int64_t
268    read_counter()
269    {
270          return 0;          return 0;
271  }  }
272    
273    #endif // gcc or ecc
274    
275  #else  #else
276  #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )  #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )
277  #define EMMS() __asm__("emms\n\t")  #define EMMS() __asm__("emms\n\t")
# Line 230  Line 300 
300    
301  #else                                                   // OTHER OS  #else                                                   // OTHER OS
302    
303    #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
304            __declspec(align(alignment)) type name[(sizex)*(sizey)]
305    
306  #include <stdio.h>  #include <stdio.h>
307  #include <stdarg.h>  #include <stdarg.h>
308  #define DPRINTF_BUF_SZ  1024  
309  static void  static __inline void
310  DPRINTF(char *fmt,  DPRINTF(int level, char *fmt, ...)
                 ...)  
311  {  {
312            if ((DPRINTF_LEVEL & level)) {
313    
314          va_list args;          va_list args;
315          char buf[DPRINTF_BUF_SZ];          char buf[DPRINTF_BUF_SZ];
316    
# Line 245  Line 318 
318          vsprintf(buf, fmt, args);          vsprintf(buf, fmt, args);
319          fprintf(stdout, "%s\n", buf);          fprintf(stdout, "%s\n", buf);
320  }  }
321    }
322    
323    
324  #define DEBUG(S)  #define DEBUG(S)

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.26.2.2

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4