From: Vladimir Voroshilov Date: Tue, 26 Aug 2008 18:06:07 +0000 (+0000) Subject: (cosmetics) Remove incorrect comment. X-Git-Tag: v0.5~2917 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51f2a119cbc7965a62c8e9ec60da066805e8c236;p=platform%2Fupstream%2Flibav.git (cosmetics) Remove incorrect comment. Originally committed as revision 14980 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/lsp.c b/libavcodec/lsp.c index e1b1d41..44b3a3f 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; }