From 1a8a7ff064aedd55b2774a5246f775cb845f03d5 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Fri, 14 Jan 2005 21:11:21 +0000 Subject: [PATCH] Fix unused debug code (bug #3342) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4793 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- dsp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dsp.c b/dsp.c index ff091a65ec..8288f01a99 100755 --- a/dsp.c +++ b/dsp.c @@ -1023,8 +1023,9 @@ static int __ast_dsp_call_progress(struct ast_dsp *dsp, short *s, int len) for (y=0;y<7;y++) hz[y] = goertzel_result(&dsp->freqs[y]); #if 0 - printf("Got whole dsp state: 350: %e, 440: %e, 480: %e, 620: %e, 950: %e, 1400: %e, 1800: %e, Energy: %e\n", - hz_350, hz_440, hz_480, hz_620, hz_950, hz_1400, hz_1800, dsp->genergy); + printf("\n350: 425: 440: 480: 620: 950: 1400: 1800: Energy: \n"); + printf("%.2e %.2e %.2e %.2e %.2e %.2e %.2e %.2e %.2e\n", + hz[HZ_350], hz[HZ_425], hz[HZ_440], hz[HZ_480], hz[HZ_620], hz[HZ_950], hz[HZ_1400], hz[HZ_1800], dsp->genergy); #endif switch(dsp->progmode) { case PROG_MODE_NA: