From: Paul Brossier Date: Mon, 6 Aug 2018 14:09:48 +0000 (+0200) Subject: src/pitch/pitchyinfft.c: comment out debug output X-Git-Tag: 0.4.7~30^2 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=802e8abf5ce7152952bcf8c767b7a5433177c421;p=aubio.git src/pitch/pitchyinfft.c: comment out debug output --- diff --git a/src/pitch/pitchyinfft.c b/src/pitch/pitchyinfft.c index 493ca08d..b613f60e 100644 --- a/src/pitch/pitchyinfft.c +++ b/src/pitch/pitchyinfft.c @@ -73,7 +73,9 @@ new_aubio_pitchyinfft (uint_t samplerate, uint_t bufsize) for (i = 0; i < p->weight->length; i++) { freq = (smpl_t) i / (smpl_t) bufsize *(smpl_t) samplerate; while (freq > freqs[j] && freqs[j] > 0) { - AUBIO_DBG("freq %3.5f > %3.5f \tsamplerate %d (Hz) \t(weight length %d, bufsize %d) %d %d\n", freq, freqs[j], samplerate, p->weight->length, bufsize, i, j); + //AUBIO_DBG("freq %3.5f > %3.5f \tsamplerate %d (Hz) \t" + // "(weight length %d, bufsize %d) %d %d\n", freq, freqs[j], + // samplerate, p->weight->length, bufsize, i, j); j += 1; } a0 = weight[j - 1];