[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.21, Fri Jun 14 13:29:07 2002 UTC revision 1.25, Wed Jul 10 15:27:37 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    // debug level
16    #define DPRINTF_LEVEL           0
17    
18    
19    #define DPRINTF_BUF_SZ  1024
20    
21    
22  #if defined(WIN32)  #if defined(WIN32)
23    
24  #include <windows.h>  #include <windows.h>
25  #include <stdio.h>  #include <stdio.h>
26    
27    static __inline void
28  #define DPRINTF_BUF_SZ  1024  DPRINTF(int level, char *fmt,
 static void  
 dprintf(char *fmt,  
29                  ...)                  ...)
30  {  {
31            if ((DPRINTF_LEVEL & level))
32            {
33          va_list args;          va_list args;
34          char buf[DPRINTF_BUF_SZ];          char buf[DPRINTF_BUF_SZ];
35    
# Line 19  Line 37 
37          vsprintf(buf, fmt, args);          vsprintf(buf, fmt, args);
38          OutputDebugString(buf);          OutputDebugString(buf);
39          fprintf(stdout, "%s\n", buf);          fprintf(stdout, "%s\n", buf);
40                    fflush(stdout);
41            }
42  }  }
43    
44    
# Line 87  Line 107 
107    
108  #elif defined(LINUX) || defined(DJGPP) || defined(FREEBSD)  #elif defined(LINUX) || defined(DJGPP) || defined(FREEBSD)
109    
110    #include <stdio.h>
111    #include <stdarg.h>
112    
113    static __inline void
114    DPRINTF(int level, char *fmt,
115                    ...)
116    {
117            if ((DPRINTF_LEVEL & level)) {
118                    va_list args;
119                    char buf[DPRINTF_BUF_SZ];
120    
121                    va_start(args, fmt);
122                    vsprintf(buf, fmt, args);
123                    fprintf(stdout, "%s\n", buf);
124            }
125    }
126    
127  #ifdef _DEBUG  #ifdef _DEBUG
128    
129  #include <stdio.h>  #include <stdio.h>
# Line 177  Line 214 
214    
215  #define EMMS()  #define EMMS()
216    
217    #ifdef __GNUC__
218    
219    // needed for bitstream.h
220    #define BSWAP(a)  __asm__ __volatile__ ("mux1 %1 = %0, @rev" \
221                            ";;" \
222                            "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));
223    
224    // rdtsc replacement for ia64
225    static __inline int64_t read_counter() {
226            unsigned long result;
227    
228    //      __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
229    //      while (__builtin_expect ((int) result == -1, 0))
230                    __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
231            return result;
232    
233    }
234    
235    /* we are missing our ia64intrin.h file, but according to the
236       Intel's ecc manual, this should be the right way ...
237       this
238    
239    #elif defined(__INTEL_COMPILER)
240    
241    #include <ia64intrin.h>
242    
243    static __inline int64_t read_counter() {
244      return __getReg(44);
245    }
246    
247    #define BSWAP(a) ((unsigned int) (_m64_mux1(a, 0xb) >> 32))
248    */
249    
250    #else
251    
252  // needed for bitstream.h  // needed for bitstream.h
253  #define BSWAP(a) \  #define BSWAP(a) \
254           ((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))
255    
256  // rdtsc command most likely not supported,  // rdtsc command most likely not supported,
257  // so just dummy code here  // so just dummy code here
258  static __inline int64_t read_counter() {  static __inline int64_t
259    read_counter()
260    {
261          return 0;          return 0;
262  }  }
263    
264    #endif // gcc or ecc
265    
266  #else  #else
267  #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )  #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )
268  #define EMMS() __asm__("emms\n\t")  #define EMMS() __asm__("emms\n\t")
# Line 215  Line 291 
291    
292  #else                                                   // OTHER OS  #else                                                   // OTHER OS
293    
294    
295    #include <stdio.h>
296    #include <stdarg.h>
297    
298    static __inline void
299    DPRINTF(int level, char *fmt, ...)
300    {
301            if ((DPRINTF_LEVEL & level)) {
302    
303                    va_list args;
304                    char buf[DPRINTF_BUF_SZ];
305    
306                    va_start(args, fmt);
307                    vsprintf(buf, fmt, args);
308                    fprintf(stdout, "%s\n", buf);
309            }
310    }
311    
312    
313  #define DEBUG(S)  #define DEBUG(S)
314  #define DEBUG1(S,I)  #define DEBUG1(S,I)
315  #define DEBUG2(X,A,B)  #define DEBUG2(X,A,B)

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.25

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