[xiph-commits] r14736 - trunk/theora/lib/dec/x86_vc

sping at svn.xiph.org sping at svn.xiph.org
Mon Apr 14 14:54:44 PDT 2008


Author: sping
Date: 2008-04-14 14:54:44 -0700 (Mon, 14 Apr 2008)
New Revision: 14736

Modified:
   trunk/theora/lib/dec/x86_vc/mmxstate.c
Log:
Fix var name compile error

Modified: trunk/theora/lib/dec/x86_vc/mmxstate.c
===================================================================
--- trunk/theora/lib/dec/x86_vc/mmxstate.c	2008-04-14 21:28:13 UTC (rev 14735)
+++ trunk/theora/lib/dec/x86_vc/mmxstate.c	2008-04-14 21:54:44 UTC (rev 14736)
@@ -11,7 +11,7 @@
  ********************************************************************
 
   function:
-    last mod: $Id:$
+    last mod: $Id$
 
  ********************************************************************/
 
@@ -152,12 +152,12 @@
     if(oc_state_get_mv_offsets(_state,mvoffsets,_frag->mv[0],
      _frag->mv[1],ref_ystride,_pli)>1){
       oc_frag_recon_inter2_mmx(_frag->buffer[dst_framei],dst_ystride,
-       _frag->buffer[ref_framei]+mvoffset[0],ref_ystride,
-       _frag->buffer[ref_framei]+mvoffset[1],ref_ystride,res_buf);
+       _frag->buffer[ref_framei]+mvoffsets[0],ref_ystride,
+       _frag->buffer[ref_framei]+mvoffsets[1],ref_ystride,res_buf);
     }
     else{
 			oc_frag_recon_inter_mmx(_frag->buffer[dst_framei],dst_ystride,
-       _frag->buffer[ref_framei]+mvoffset[0],ref_ystride,res_buf);
+       _frag->buffer[ref_framei]+mvoffsets[0],ref_ystride,res_buf);
     }
   }
 



More information about the commits mailing list