[FFmpeg-cvslog] r14091 - trunk/libavcodec/ra288.c

vitor subversion
Sun Jul 6 14:01:59 CEST 2008


Author: vitor
Date: Sun Jul  6 14:01:59 2008
New Revision: 14091

Log:
Slighly faster operation

Modified:
   trunk/libavcodec/ra288.c

Modified: trunk/libavcodec/ra288.c
==============================================================================
--- trunk/libavcodec/ra288.c	(original)
+++ trunk/libavcodec/ra288.c	Sun Jul  6 14:01:59 2008
@@ -196,7 +196,7 @@ static void update(Real288_internal *glo
 
     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);
 




More information about the ffmpeg-cvslog mailing list