mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-26 13:00:33 +00:00
Slighly faster operation
Originally committed as revision 14091 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0bbab5671d
commit
eb73742d6e
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user