# HG changeset patch # User jbr # Date 1218922323 0 # Node ID 377fddcc6288395e6210c94ec0b491bfafef7c71 # Parent 7dfb28d3ccd12cfe7f7fb7055883b6497bf6bf03 cosmetics: adjust line breaks and vertical alignment diff -r 7dfb28d3ccd1 -r 377fddcc6288 flacenc.c --- a/flacenc.c Sat Aug 16 21:24:06 2008 +0000 +++ b/flacenc.c Sat Aug 16 21:32:03 2008 +0000 @@ -855,8 +855,9 @@ } /* LPC */ - opt_order = ff_lpc_calc_coefs(&ctx->dsp, smp, n, min_order, max_order, precision, coefs, - shift, ctx->options.use_lpc, omethod, MAX_LPC_SHIFT, 0); + opt_order = ff_lpc_calc_coefs(&ctx->dsp, smp, n, min_order, max_order, + precision, coefs, shift, ctx->options.use_lpc, + omethod, MAX_LPC_SHIFT, 0); if(omethod == ORDER_METHOD_2LEVEL || omethod == ORDER_METHOD_4LEVEL || diff -r 7dfb28d3ccd1 -r 377fddcc6288 lpc.c --- a/lpc.c Sat Aug 16 21:24:06 2008 +0000 +++ b/lpc.c Sat Aug 16 21:32:03 2008 +0000 @@ -135,9 +135,10 @@ * Calculate LPC coefficients for multiple orders */ int ff_lpc_calc_coefs(DSPContext *s, - const int32_t *samples, int blocksize, int min_order, 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 min_order, + 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 7dfb28d3ccd1 -r 377fddcc6288 lpc.h --- a/lpc.h Sat Aug 16 21:24:06 2008 +0000 +++ b/lpc.h Sat Aug 16 21:32:03 2008 +0000 @@ -39,8 +39,9 @@ * Calculate LPC coefficients for multiple orders */ int ff_lpc_calc_coefs(DSPContext *s, - const int32_t *samples, int blocksize, int min_order, 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 min_order, + 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 */