comparison lpc.h @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 84963c795459
children e59926e2c50c
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
54 #define LPC_TYPE float 54 #define LPC_TYPE float
55 #endif 55 #endif
56 56
57 /** 57 /**
58 * Levinson-Durbin recursion. 58 * Levinson-Durbin recursion.
59 * Produces LPC coefficients from autocorrelation data. 59 * Produce LPC coefficients from autocorrelation data.
60 */ 60 */
61 static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order, 61 static inline int compute_lpc_coefs(const LPC_TYPE *autoc, int max_order,
62 LPC_TYPE *lpc, int lpc_stride, int fail, 62 LPC_TYPE *lpc, int lpc_stride, int fail,
63 int normalize) 63 int normalize)
64 { 64 {