diff options
author | Vladimir Voroshilov <voroshil@gmail.com> | 2008-08-26 18:06:07 +0000 |
---|---|---|
committer | Vladimir Voroshilov <voroshil@gmail.com> | 2008-08-26 18:06:07 +0000 |
commit | 51f2a119cbc7965a62c8e9ec60da066805e8c236 (patch) | |
tree | cde9fbd3f79f8ea5d1dddeb85ba16c21fbb2cd1d /libavcodec/lsp.c | |
parent | f5e177f8521c585a101eafc171be06de1a3d5b60 (diff) | |
download | ffmpeg-51f2a119cbc7965a62c8e9ec60da066805e8c236.tar.gz |
(cosmetics) Remove incorrect comment.
Originally committed as revision 14980 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lsp.c')
-rw-r--r-- | libavcodec/lsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |