summaryrefslogtreecommitdiff
path: root/libavcodec/alacenc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2009-10-05 21:33:50 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2009-10-05 21:33:50 +0000
commit9a9964c50ed85a0bf8d8ab384801d4ea07017f76 (patch)
treeb3d03054b4c516f3eec1fd0b10fd8d7f1b34ba06 /libavcodec/alacenc.c
parentd6eee9f3e9bb5a5b8833d28d68612a25758438f7 (diff)
cosmetics: reindent and line wrap after last commit
Originally committed as revision 20174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alacenc.c')
-rw-r--r--libavcodec/alacenc.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c
index 4f869ee230..7f3310bf2f 100644
--- a/libavcodec/alacenc.c
+++ b/libavcodec/alacenc.c
@@ -133,12 +133,16 @@ static void calc_predictor_params(AlacEncodeContext *s, int ch)
int opt_order;
if (s->avctx->compression_level > 1) {
- opt_order = ff_lpc_calc_coefs(&s->dspctx, s->sample_buf[ch], s->avctx->frame_size, s->min_prediction_order, s->max_prediction_order,
- ALAC_MAX_LPC_PRECISION, coefs, shift, 1, ORDER_METHOD_EST, ALAC_MAX_LPC_SHIFT, 1);
-
- s->lpc[ch].lpc_order = opt_order;
- s->lpc[ch].lpc_quant = shift[opt_order-1];
- memcpy(s->lpc[ch].lpc_coeff, coefs[opt_order-1], opt_order*sizeof(int));
+ opt_order = ff_lpc_calc_coefs(&s->dspctx, s->sample_buf[ch],
+ s->avctx->frame_size,
+ s->min_prediction_order,
+ s->max_prediction_order,
+ ALAC_MAX_LPC_PRECISION, coefs, shift, 1,
+ ORDER_METHOD_EST, ALAC_MAX_LPC_SHIFT, 1);
+
+ s->lpc[ch].lpc_order = opt_order;
+ s->lpc[ch].lpc_quant = shift[opt_order-1];
+ memcpy(s->lpc[ch].lpc_coeff, coefs[opt_order-1], opt_order*sizeof(int));
} else {
s->lpc[ch].lpc_order = 6;
s->lpc[ch].lpc_quant = 6;