From 04db372bf38308c3334619cf2efd50709ba60b31 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 2 Jan 2008 04:33:53 +0000 Subject: Don't make libresample print out debugging output git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95746 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/libresample/src/resample.c | 6 +++--- res/libresample/src/resample_defs.h | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'res') diff --git a/res/libresample/src/resample.c b/res/libresample/src/resample.c index 405bdd9d8..9dba5af96 100644 --- a/res/libresample/src/resample.c +++ b/res/libresample/src/resample.c @@ -87,7 +87,7 @@ void *resample_open(int highQuality, double minFactor, double maxFactor) /* Just exit if we get invalid factors */ if (minFactor <= 0.0 || maxFactor <= 0.0 || maxFactor < minFactor) { - #if DEBUG + #ifdef DEBUG fprintf(stderr, "libresample: " "minFactor and maxFactor must be positive real numbers,\n" @@ -187,7 +187,7 @@ int resample_process(void *handle, int Nx; int i, len; - #if DEBUG + #ifdef DEBUG fprintf(stderr, "resample_process: in=%d, out=%d lastFlag=%d\n", inBufferLen, outBufferLen, lastFlag); #endif @@ -197,7 +197,7 @@ int resample_process(void *handle, outSampleCount = 0; if (factor < hp->minFactor || factor > hp->maxFactor) { - #if DEBUG + #ifdef DEBUG fprintf(stderr, "libresample: factor %f is not between " "minFactor=%f and maxFactor=%f", diff --git a/res/libresample/src/resample_defs.h b/res/libresample/src/resample_defs.h index f1b10d432..a0e7afc37 100644 --- a/res/libresample/src/resample_defs.h +++ b/res/libresample/src/resample_defs.h @@ -20,8 +20,6 @@ #endif #endif -#define DEBUG 0 - #ifndef TRUE #define TRUE 1 #endif -- cgit v1.2.3