From 51f2a119cbc7965a62c8e9ec60da066805e8c236 Mon Sep 17 00:00:00 2001 From: Vladimir Voroshilov Date: Tue, 26 Aug 2008 18:06:07 +0000 Subject: (cosmetics) Remove incorrect comment. Originally committed as revision 14980 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/lsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/lsp.c') diff --git a/libavcodec/lsp.c b/libavcodec/lsp.c index e1b1d4139d..44b3a3f099 100644 --- a/libavcodec/lsp.c +++ b/libavcodec/lsp.c @@ -72,7 +72,7 @@ static void lsp2poly(int* f, const int16_t* lsp, int lp_half_order) { f[i] = f[i-2]; for(j=i; j>1; j--) - f[j] -= MULL(f[j-1], lsp[2*i-2]) - f[j-2]; // (3.22) * (0.15) * 2 -> (3.22) + f[j] -= MULL(f[j-1], lsp[2*i-2]) - f[j-2]; f[1] -= lsp[2*i-2] << 8; } -- cgit v1.2.3