comparison lpc.c @ 7590:d6126c8b57e9 libavcodec

lpc: cosmetics: vertically align declarations and definitions.
author ramiro
date Sat, 16 Aug 2008 17:28:29 +0000
parents 8b695a99e8df
children 7dfb28d3ccd1
comparison
equal deleted inserted replaced
7589:8b695a99e8df 7590:d6126c8b57e9
133 133
134 /** 134 /**
135 * Calculate LPC coefficients for multiple orders 135 * Calculate LPC coefficients for multiple orders
136 */ 136 */
137 int ff_lpc_calc_coefs(DSPContext *s, 137 int ff_lpc_calc_coefs(DSPContext *s,
138 const int32_t *samples, int blocksize, int max_order, 138 const int32_t *samples, int blocksize, int max_order,
139 int precision, int32_t coefs[][MAX_LPC_ORDER], 139 int precision, int32_t coefs[][MAX_LPC_ORDER],
140 int *shift, int use_lpc, int omethod, int max_shift, int zero_shift) 140 int *shift, int use_lpc, int omethod, int max_shift, int zero_shift)
141 { 141 {
142 double autoc[MAX_LPC_ORDER+1]; 142 double autoc[MAX_LPC_ORDER+1];
143 double ref[MAX_LPC_ORDER]; 143 double ref[MAX_LPC_ORDER];
144 double lpc[MAX_LPC_ORDER][MAX_LPC_ORDER]; 144 double lpc[MAX_LPC_ORDER][MAX_LPC_ORDER];
145 int i, j, pass; 145 int i, j, pass;