summaryrefslogtreecommitdiff
path: root/libavcodec/flacenc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2008-08-16 21:32:03 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2008-08-16 21:32:03 +0000
commit9045f5e72d6916bd93e0a9b26a8e4a2598fee6f1 (patch)
tree79ef5d1e12617dca9437080c784ec5f4423a9b94 /libavcodec/flacenc.c
parent56c07e298914d0533a74bb4ba4be4abc8ea6b245 (diff)
cosmetics: adjust line breaks and vertical alignment
Originally committed as revision 14795 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flacenc.c')
-rw-r--r--libavcodec/flacenc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c
index ea104360c1..3e208dceb7 100644
--- a/libavcodec/flacenc.c
+++ b/libavcodec/flacenc.c
@@ -855,8 +855,9 @@ static int encode_residual(FlacEncodeContext *ctx, int ch)
}
/* 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 ||