comparison lpc.c @ 12024:fdafbcef52f5 libavcodec

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents 94595d0e617c
children e59926e2c50c
comparison
equal deleted inserted replaced
12023:c7455450364d 12024:fdafbcef52f5
50 w_data[+i ] = data[+i ] * w; 50 w_data[+i ] = data[+i ] * w;
51 } 51 }
52 } 52 }
53 53
54 /** 54 /**
55 * Calculates autocorrelation data from audio samples 55 * Calculate autocorrelation data from audio samples
56 * A Welch window function is applied before calculation. 56 * A Welch window function is applied before calculation.
57 */ 57 */
58 void ff_lpc_compute_autocorr(const int32_t *data, int len, int lag, 58 void ff_lpc_compute_autocorr(const int32_t *data, int len, int lag,
59 double *autoc) 59 double *autoc)
60 { 60 {