disabled pointless (at least in terms of MAME/MESS) DEBUG message in libflac (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-01 22:04:39 +00:00
parent ddbeff96cd
commit 1612cb612a

View File

@ -231,7 +231,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);