# HG changeset patch # User jbr # Date 1218921846 0 # Node ID 7dfb28d3ccd12cfe7f7fb7055883b6497bf6bf03 # Parent d6126c8b57e99640b0569146777f9ec7fc0f1ea6 use limited range of lpc orders when quantizing coefficients diff -r d6126c8b57e9 -r 7dfb28d3ccd1 flacenc.c --- a/flacenc.c Sat Aug 16 17:28:29 2008 +0000 +++ b/flacenc.c Sat Aug 16 21:24:06 2008 +0000 @@ -855,7 +855,7 @@ } /* LPC */ - opt_order = ff_lpc_calc_coefs(&ctx->dsp, smp, n, max_order, precision, coefs, + 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 || diff -r d6126c8b57e9 -r 7dfb28d3ccd1 lpc.c --- a/lpc.c Sat Aug 16 17:28:29 2008 +0000 +++ b/lpc.c Sat Aug 16 21:24:06 2008 +0000 @@ -135,7 +135,7 @@ * Calculate LPC coefficients for multiple orders */ int ff_lpc_calc_coefs(DSPContext *s, - const int32_t *samples, int blocksize, int max_order, + 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) { @@ -195,7 +195,7 @@ i = opt_order-1; quantize_lpc_coefs(lpc[i], i+1, precision, coefs[i], &shift[i], max_shift, zero_shift); } else { - for(i=0; i