#ifdef DEBUG some printouts

This commit is contained in:
Josh Coalson
2001-07-12 21:27:40 +00:00
parent 63d99579c4
commit 3dbbf940c3

View File

@@ -171,7 +171,9 @@ redo_it:
} }
else { /* (*shift < 0) */ else { /* (*shift < 0) */
const int nshift = -(*shift); const int nshift = -(*shift);
#ifdef DEBUG
fprintf(stderr,"FLAC__lpc_quantize_coefficients: negative shift = %d\n", *shift); fprintf(stderr,"FLAC__lpc_quantize_coefficients: negative shift = %d\n", *shift);
#endif
for(i = 0; i < order; i++) { for(i = 0; i < order; i++) {
qlp_coeff[i] = (FLAC__int32)floor((double)lp_coeff[i] / (double)(1 << nshift)); qlp_coeff[i] = (FLAC__int32)floor((double)lp_coeff[i] / (double)(1 << nshift));