summaryrefslogtreecommitdiff
path: root/libavcodec/lpc.h
diff options
context:
space:
mode:
authorJai Luthra <me@jailuthra.in>2016-08-23 02:32:04 +0530
committerMichael Niedermayer <michael@niedermayer.cc>2016-08-28 11:18:16 +0200
commit0c023d181e581a0299d96a5edf7a736bdc66dc43 (patch)
treef990de96906d8b42e527017c911e5d355b73c489 /libavcodec/lpc.h
parent88bcdf109a449d302bec977997af83e1462bca6c (diff)
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.h2
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);