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
Slighly faster operation
Originally committed as revision 14091 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak
17 years ago
parent
0bbab5671d
commit
eb73742d6e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/ra288.c
+ 1
- 1
libavcodec/ra288.c
View File
@@ -196,7 +196,7 @@ static void update(Real288_internal *glob)
y = glob->phase + 1;
for (x=0; x < 8; x++)
buffer2[x] = glob->history[(y++)
% 8
];
buffer2[x] = glob->history[(y++)
& 7
];
co(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, table2);
Write
Preview
Loading…
Cancel
Save