From a70ee2bdcd88e34ab9c82cb78262248b95757122 Mon Sep 17 00:00:00 2001 From: Rostislav Pehlivanov Date: Tue, 1 Sep 2015 06:32:35 +0100 Subject: [PATCH] lpc: remove unused ff_lpc_calc_levinson() function Not needed anymore, it was only used by the AAC TNS encoder and was replaced with a more suitable function in the following commit. Signed-off-by: Rostislav Pehlivanov --- libavcodec/lpc.c | 56 ------------------------------------------------ libavcodec/lpc.h | 3 --- 2 files changed, 59 deletions(-) diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index 02ab61cf1c..07fc29265a 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -271,62 +271,6 @@ int ff_lpc_calc_coefs(LPCContext *s, return opt_order; } -/** - * Simplified Levinson LPC accepting float samples - * - * @param lpc_type LPC method for determining coefficients, - * see #FFLPCType for details - */ -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]; - double *w_data = s->windowed_samples; - int i, n2 = (len >> 1); - double w, c = 2.0 / (len - 1.0); - - av_assert2(max_order >= MIN_LPC_ORDER && max_order <= MAX_LPC_ORDER); - - /* reinit LPC context if parameters have changed */ - if (len > s->blocksize || max_order > s->max_order) { - ff_lpc_end(s); - ff_lpc_init(s, len, max_order, FF_LPC_TYPE_LEVINSON); - } - - /* Apply welch window */ - if (len & 1) { - for(i=0; ilpc_compute_autocorr(w_data, len, max_order, autoc); - - compute_lpc_coefs(autoc, max_order, &lpc[0][0], max_order, 0, 1); - - if(omethod == ORDER_METHOD_EST) { - for(i=0; i