This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
(cosmetics) Remove incorrect comment.
Originally committed as revision 14980 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vladimir Voroshilov
17 years ago
parent
f5e177f852
commit
51f2a119cb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/lsp.c
+ 1
- 1
libavcodec/lsp.c
View File
@@ -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;
}
Write
Preview
Loading…
Cancel
Save