Commit eb73742d authored by Vitor Sessak's avatar Vitor Sessak

Slighly faster operation

Originally committed as revision 14091 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0bbab567
......@@ -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);
......
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