]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/lpc.c
cmdutils: move exit_program() declaration to cmdutils from avconv
[ffmpeg] / libavcodec / lpc.c
index 31fa3242161d983d24af0806e73dc8a742d2436d..874af0513e8e7eefaa38406b9a9a25edd722b758 100644 (file)
@@ -149,10 +149,8 @@ static int estimate_best_order(double *ref, int min_order, int max_order)
 /**
  * Calculate LPC coefficients for multiple orders
  *
- * @param lpc_type 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.
+ * @param lpc_type LPC method for determining coefficients,
+ *                 see #FFLPCType for details
  */
 int ff_lpc_calc_coefs(LPCContext *s,
                       const int32_t *samples, int blocksize, int min_order,