--- portab.h 2002/12/14 09:39:42 1.26.2.3 +++ portab.h 2002/11/16 23:38:16 1.35 @@ -52,7 +52,7 @@ * exception also makes it possible to release a modified version which * carries forward this exception. * - * $Id: portab.h,v 1.26.2.3 2002/12/14 09:39:42 suxen_drol Exp $ + * $Id: portab.h,v 1.35 2002/11/16 23:38:16 edgomez Exp $ * ****************************************************************************/ @@ -71,15 +71,10 @@ #define DPRINTF_MB 0x00000010 #define DPRINTF_COEFF 0x00000020 #define DPRINTF_MV 0x00000040 -#define DPRINTF_RC 0x00000080 #define DPRINTF_DEBUG 0x80000000 /* debug level for this library */ -#ifdef _DEBUG -#define DPRINTF_LEVEL (DPRINTF_RC|0x0000000f) -#else -#define DPRINTF_LEVEL DPRINTF_RC -#endif +#define DPRINTF_LEVEL 0 /* Buffer size for non C99 compliant compilers (msvc) */ #define DPRINTF_BUF_SZ 1024 @@ -115,7 +110,7 @@ | Fallback when using gcc *---------------------------------------------------------------------------*/ -#elif defined(__GNUC__) || defined(__ICC) +#elif defined(__GNUC__) # define int8_t char # define uint8_t unsigned char @@ -145,9 +140,7 @@ # define CACHE_LINE 32 # define ptr_t uint64_t #else -/* todo: fix cache_line 0 operation */ -# define CACHE_LINE 16 -# define ptr_t uint32_t +# error Architecture not supported. #endif /***************************************************************************** @@ -217,14 +210,7 @@ | msvc unknown architecture *---------------------------------------------------------------------------*/ # else -/* ANSI C version of BSWAP */ -#define BSWAP(x) \ - x = ((((x) & 0xff000000) >> 24) | \ - (((x) & 0x00ff0000) >> 8) | \ - (((x) & 0x0000ff00) << 8) | \ - (((x) & 0x000000ff) << 24)) - -#define EMMS() +# error Architecture not supported. # endif @@ -234,7 +220,7 @@ * GNU CC compiler stuff ****************************************************************************/ -#elif defined(__GNUC__) || defined(__ICC) /* Compiler test */ +#elif defined(__GNUC__) /* Compiler test */ /*---------------------------------------------------------------------------- | Common gcc stuff @@ -360,14 +346,7 @@ | XviD + gcc unsupported Architecture *---------------------------------------------------------------------------*/ # else -/* ANSI C version of BSWAP */ -#define BSWAP(x) \ - x = ((((x) & 0xff000000) >> 24) | \ - (((x) & 0x00ff0000) >> 8) | \ - (((x) & 0x0000ff00) << 8) | \ - (((x) & 0x000000ff) << 24)) - -#define EMMS() +# error Architecture not supported. # endif /* Architecture checking */ /*****************************************************************************