Commit f5ee59d3 authored by voroshil's avatar voroshil

(cosmetics) Remove incorrect comment.



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14980 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1e715947
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment