re-enabled log message I disabled when I was messing around with DEBUG for external libraries (nw)

This commit is contained in:
Oliver Stöneberg 2014-03-06 09:17:14 +00:00
parent 1b0946ae88
commit 067a651421

View File

@ -238,7 +238,7 @@ int FLAC__lpc_quantize_coefficients(const FLAC__real lp_coeff[], unsigned order,
FLAC__double error = 0.0;
FLAC__int32 q;
#ifdef DEBUG
//fprintf(stderr,"FLAC__lpc_quantize_coefficients: negative shift=%d order=%u cmax=%f\n", *shift, order, cmax);
fprintf(stderr,"FLAC__lpc_quantize_coefficients: negative shift=%d order=%u cmax=%f\n", *shift, order, cmax);
#endif
for(i = 0; i < order; i++) {
error += lp_coeff[i] / (1 << nshift);