--- ldecod/Makefile (10.1) +++ ldecod/Makefile 2005-10-01 20:22:57.000000000 -0700 @@ -29,10 +29,15 @@ ifdef DBG SUFFIX= .dbg -FLAGS+= -g +FLAGS+= -g -DTRACE=1 +else +ifdef TRACE +SUFFIX= .trace +FLAGS+= -O3 -DTRACE=1 else SUFFIX= -FLAGS+= -O2 +FLAGS+= -O3 +endif endif OBJSUF= .o$(SUFFIX) --- ldecod/inc/defines.h (10.1) +++ ldecod/inc/defines.h 2005-10-01 20:24:03.000000000 -0700 @@ -18,8 +18,8 @@ #ifndef _DEFINES_H_ #define _DEFINES_H_ -#if defined _DEBUG -#define TRACE 0 //!< 0:Trace off 1:Trace on 2:detailed CABAC context information +#if defined TRACE +#define TRACE 1 //!< 0:Trace off 1:Trace on 2:detailed CABAC context information #else #define TRACE 0 //!< 0:Trace off 1:Trace on 2:detailed CABAC context information #endif