X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Flpc.c;h=c27208823d87cc14222560061b1de6aa848f4ebb;hb=d2084402e6034e8d49ea50ebe212c4e8783d028a;hp=d041cafe859eae6da58802de5eb6976377c85ab0;hpb=f2db5602ba8e51436a0b491c85f8b309fccb59c8;p=ffmpeg diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index d041cafe859..c27208823d8 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -149,10 +149,8 @@ static int estimate_best_order(double *ref, int min_order, int max_order) /** * 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. + * @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,