comparison lpc.h @ 7592:377fddcc6288 libavcodec

cosmetics: adjust line breaks and vertical alignment
author jbr
date Sat, 16 Aug 2008 21:32:03 +0000
parents 7dfb28d3ccd1
children cd6217c9ce92
comparison
equal deleted inserted replaced
7591:7dfb28d3ccd1 7592:377fddcc6288
37 37
38 /** 38 /**
39 * Calculate LPC coefficients for multiple orders 39 * Calculate LPC coefficients for multiple orders
40 */ 40 */
41 int ff_lpc_calc_coefs(DSPContext *s, 41 int ff_lpc_calc_coefs(DSPContext *s,
42 const int32_t *samples, int blocksize, int min_order, int max_order, 42 const int32_t *samples, int blocksize, int min_order,
43 int precision, int32_t coefs[][MAX_LPC_ORDER], 43 int max_order, int precision,
44 int *shift, int use_lpc, int omethod, int max_shift, int zero_shift); 44 int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc,
45 int omethod, int max_shift, int zero_shift);
45 46
46 #endif /* FFMPEG_LPC_H */ 47 #endif /* FFMPEG_LPC_H */