1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-29 22:00:58 +02:00

avcodec/mlpenc: allow smaller shift for LPC

This commit is contained in:
Paul B Mahol 2023-10-18 14:40:42 +02:00
parent b206056c82
commit c1053e2e35

View File

@ -45,7 +45,7 @@
#define MLP_MIN_LPC_ORDER 1
#define MLP_MAX_LPC_ORDER 8
#define MLP_MIN_LPC_SHIFT 8
#define MLP_MIN_LPC_SHIFT 0
#define MLP_MAX_LPC_SHIFT 15
typedef struct RestartHeader {
@ -1308,7 +1308,7 @@ static void set_filter_params(MLPEncodeContext *ctx,
ctx->lpc_coeff_precision,
coefs, shift, ctx->lpc_type, ctx->lpc_passes,
ctx->prediction_order, MLP_MIN_LPC_SHIFT,
MLP_MAX_LPC_SHIFT, MLP_MIN_LPC_SHIFT);
MLP_MAX_LPC_SHIFT, 0);
fp->order = order;
fp->shift = shift[order-1];