From f6a1ca1dad1cf14e712b469c20b635b5c9c9f5c2 Mon Sep 17 00:00:00 2001 From: Vitor Sessak <vitor1001@gmail.com> Date: Sun, 31 Aug 2008 02:39:55 +0000 Subject: [PATCH] Misc cosmetics in compute_lpc_coefs(): braces removal and empty lines Originally committed as revision 15093 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/lpc.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index 5c5d417706d..253267c5aa7 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -37,9 +37,10 @@ static void compute_lpc_coefs(const double *autoc, int max_order, for(i=0; i<max_order; i++) { double r = -autoc[i+1]; - for(j=0; j<i; j++) { + + for(j=0; j<i; j++) r -= lpc_tmp[j] * autoc[i-j]; - } + r /= err; ref[i] = fabs(r); @@ -51,13 +52,12 @@ static void compute_lpc_coefs(const double *autoc, int max_order, lpc_tmp[j] += r * lpc_tmp[i-1-j]; lpc_tmp[i-1-j] += r * tmp; } - if(i & 1) { + + if(i & 1) lpc_tmp[j] += lpc_tmp[j] * r; - } - for(j=0; j<=i; j++) { + for(j=0; j<=i; j++) lpc[i][j] = -lpc_tmp[j]; - } } } -- GitLab