Commit 1154a790 authored by vitor's avatar vitor

Slighly faster operation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14091 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 95e861eb
...@@ -196,7 +196,7 @@ static void update(Real288_internal *glob) ...@@ -196,7 +196,7 @@ static void update(Real288_internal *glob)
y = glob->phase + 1; y = glob->phase + 1;
for (x=0; x < 8; x++) 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); co(10, 8, 20, buffer2, temp2, glob->st2a, glob->st2b, table2);
......
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