comment fix
authorJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 16 Mar 2001 23:24:53 +0000 (23:24 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 16 Mar 2001 23:24:53 +0000 (23:24 +0000)
src/libFLAC/lpc.c

index c7eaaa0..3393a5a 100644 (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;
        }
 }