From 141d80ded77957eefababca52bee9dd05e3e1ba6 Mon Sep 17 00:00:00 2001 From: Rostislav Pehlivanov Date: Sat, 29 Aug 2015 19:29:18 +0100 Subject: lpc: rename ff_lpc_calc_levinsion to ff_lpc_calc_levinson Signed-off-by: Rostislav Pehlivanov --- libavcodec/lpc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/lpc.c') diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index 6699eb834f..02ab61cf1c 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -277,9 +277,9 @@ int ff_lpc_calc_coefs(LPCContext *s, * @param lpc_type LPC method for determining coefficients, * see #FFLPCType for details */ -int ff_lpc_calc_levinsion(LPCContext *s, const float *samples, int len, - double lpc[][MAX_LPC_ORDER], int min_order, - int max_order, int omethod) +int ff_lpc_calc_levinson(LPCContext *s, const float *samples, int len, + double lpc[][MAX_LPC_ORDER], int min_order, + int max_order, int omethod) { double ref[MAX_LPC_ORDER] = { 0 }; double autoc[MAX_LPC_ORDER+1]; -- cgit v1.2.3