Mercurial > audlegacy
changeset 4758:8de129d08238
merge
author | Andrew O. Shadoura <bugzilla@tut.by> |
---|---|
date | Thu, 07 Aug 2008 12:34:14 +0300 |
parents | bb0638143fc8 (diff) f084f639e962 (current diff) |
children | 3cdee616c96d |
files | |
diffstat | 5 files changed, 8 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/libSAD/Makefile Thu Aug 07 12:17:14 2008 +0300 +++ b/src/libSAD/Makefile Thu Aug 07 12:34:14 2008 +0300 @@ -8,7 +8,8 @@ INCLUDES = libSAD.h \ common.h \ - dither.h + dither.h \ + debug.h include ../../buildsys.mk include ../../extra.mk
--- a/src/libSAD/common.h Thu Aug 07 12:17:14 2008 +0300 +++ b/src/libSAD/common.h Thu Aug 07 12:34:14 2008 +0300 @@ -130,12 +130,6 @@ #define SAD_ERROR_OK 0 #define SAD_ERROR_FAIL -1 -#ifdef DEBUG -#define DEBUG_MSG(f,x) {printf("debug: "f, x);} -#else -#define DEBUG_MSG(f,x) {} -#endif - typedef struct { int present; float track_gain; /* in dB !!! */
--- a/src/libSAD/dither.c Thu Aug 07 12:17:14 2008 +0300 +++ b/src/libSAD/dither.c Thu Aug 07 12:34:14 2008 +0300 @@ -25,6 +25,8 @@ #include "dither_ops.h" #include "noicegen.h" +#include "debug.h" + #include <assert.h> #include <math.h>
--- a/src/libSAD/dither_ops.c Thu Aug 07 12:17:14 2008 +0300 +++ b/src/libSAD/dither_ops.c Thu Aug 07 12:34:14 2008 +0300 @@ -23,6 +23,8 @@ #include "dither_ops.h" #include "dither.h" +#include "debug.h" + #define SAD_GET_LE16(a) ( (uint16_t)(((uint8_t*)(a))[0]) | (uint16_t)(((uint8_t*)(a))[1]) << 8 ) #define SAD_GET_BE16(a) ( (uint16_t)(((uint8_t*)(a))[0]) << 8 | (uint16_t)(((uint8_t*)(a))[1]) )