comment fix

This commit is contained in:
Josh Coalson 2001-03-16 23:24:53 +00:00
parent 3d783d674e
commit b006493de7
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ void FLAC__lpc_compute_lp_coefficients(const real autoc[], unsigned max_order, r
/* save this order */
for(j = 0; j <= i; j++)
lp_coeff[i][j] = -lpc[j]; /* N.B. why do we have to negate here? */
lp_coeff[i][j] = -lpc[j]; /* negate to get FIR filter coeffs */
error[i] = err;
}
}