# HG changeset patch # User jbr # Date 1234562506 0 # Node ID 9f929379bbca4d8b761398cacfc81884981fc054 # Parent 70ea65c175973062f8f5e69bdd30c014618c0c51 lpc: Document the use_lpc parameter to ff_lpc_calc_coefs(). Patch by Patrik Kullman (patrik A yes D nu). diff -r 70ea65c17597 -r 9f929379bbca lpc.c --- a/lpc.c Fri Feb 13 16:07:20 2009 +0000 +++ b/lpc.c Fri Feb 13 22:01:46 2009 +0000 @@ -94,6 +94,11 @@ /** * Calculate LPC coefficients for multiple orders + * + * @param use_lpc LPC method for determining coefficients + * 0 = LPC with fixed pre-defined coeffs + * 1 = LPC with coeffs determined by Levinson-Durbin recursion + * 2+ = LPC with coeffs determined by Cholesky factorization using (use_lpc-1) passes. */ int ff_lpc_calc_coefs(DSPContext *s, const int32_t *samples, int blocksize, int min_order,