# HG changeset patch # User ramiro # Date 1218907709 0 # Node ID d6126c8b57e99640b0569146777f9ec7fc0f1ea6 # Parent 8b695a99e8dfe0d2b5ee2176c169664465dc4c6f lpc: cosmetics: vertically align declarations and definitions. diff -r 8b695a99e8df -r d6126c8b57e9 lpc.c --- a/lpc.c Sat Aug 16 17:18:20 2008 +0000 +++ b/lpc.c Sat Aug 16 17:28:29 2008 +0000 @@ -135,9 +135,9 @@ * Calculate LPC coefficients for multiple orders */ int ff_lpc_calc_coefs(DSPContext *s, - const int32_t *samples, int blocksize, int max_order, - int precision, int32_t coefs[][MAX_LPC_ORDER], - int *shift, int use_lpc, int omethod, int max_shift, int zero_shift) + const int32_t *samples, int blocksize, int max_order, + int precision, int32_t coefs[][MAX_LPC_ORDER], + int *shift, int use_lpc, int omethod, int max_shift, int zero_shift) { double autoc[MAX_LPC_ORDER+1]; double ref[MAX_LPC_ORDER]; diff -r 8b695a99e8df -r d6126c8b57e9 lpc.h --- a/lpc.h Sat Aug 16 17:18:20 2008 +0000 +++ b/lpc.h Sat Aug 16 17:28:29 2008 +0000 @@ -31,16 +31,16 @@ #define ORDER_METHOD_SEARCH 4 #define ORDER_METHOD_LOG 5 -#define MIN_LPC_ORDER 1 -#define MAX_LPC_ORDER 32 +#define MIN_LPC_ORDER 1 +#define MAX_LPC_ORDER 32 /** * Calculate LPC coefficients for multiple orders */ int ff_lpc_calc_coefs(DSPContext *s, - const int32_t *samples, int blocksize, int max_order, - int precision, int32_t coefs[][MAX_LPC_ORDER], - int *shift, int use_lpc, int omethod, int max_shift, int zero_shift); + const int32_t *samples, int blocksize, int max_order, + int precision, int32_t coefs[][MAX_LPC_ORDER], + int *shift, int use_lpc, int omethod, int max_shift, int zero_shift); #endif /* FFMPEG_LPC_H */