diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2008-08-19 16:12:05 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2008-08-19 16:12:05 +0000 |
commit | cc940caf4d98bce64defc48e33ff51a5cc9e985f (patch) | |
tree | ff705e75def4bac3fc3b6a105a78a9d37801811a | |
parent | 0d962ecb703be23fd4cf2894a4aba9b2eb13dfbf (diff) | |
download | ffmpeg-streaming-cc940caf4d98bce64defc48e33ff51a5cc9e985f.zip ffmpeg-streaming-cc940caf4d98bce64defc48e33ff51a5cc9e985f.tar.gz |
alacenc: Use user-specified min and max prediction order.
Originally committed as revision 14844 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/alacenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c index f18ab26..d6332bf 100644 --- a/libavcodec/alacenc.c +++ b/libavcodec/alacenc.c @@ -130,7 +130,7 @@ static void calc_predictor_params(AlacEncodeContext *s, int ch) int shift[MAX_LPC_ORDER]; int opt_order; - opt_order = ff_lpc_calc_coefs(&s->dspctx, s->sample_buf[ch], s->avctx->frame_size, DEFAULT_MIN_PRED_ORDER, DEFAULT_MAX_PRED_ORDER, + 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; |