diff options
author | Jai Luthra <me@jailuthra.in> | 2016-08-23 02:32:04 +0530 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-08-28 11:18:16 +0200 |
commit | 0c023d181e581a0299d96a5edf7a736bdc66dc43 (patch) | |
tree | f990de96906d8b42e527017c911e5d355b73c489 /libavcodec/lpc.h | |
parent | 88bcdf109a449d302bec977997af83e1462bca6c (diff) | |
download | ffmpeg-0c023d181e581a0299d96a5edf7a736bdc66dc43.tar.gz |
lavc/lpc: Add min_shift parameter in LPC
The min_shift parameter is needed by the MLP encoder
Signed-off-by: Jai Luthra <me@jailuthra.in>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r-- | libavcodec/lpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h index edb1a6bc7d..182adfa8ca 100644 --- a/libavcodec/lpc.h +++ b/libavcodec/lpc.h @@ -95,7 +95,7 @@ int ff_lpc_calc_coefs(LPCContext *s, int max_order, int precision, int32_t coefs[][MAX_LPC_ORDER], int *shift, enum FFLPCType lpc_type, int lpc_passes, - int omethod, int max_shift, int zero_shift); + int omethod, int min_shift, int max_shift, int zero_shift); int ff_lpc_calc_ref_coefs(LPCContext *s, const int32_t *samples, int order, double *ref); |