[xiph-commits] r17467 - trunk/theora/lib/x86_vc
tterribe at svn.xiph.org
tterribe at svn.xiph.org
Fri Sep 24 16:01:08 PDT 2010
Author: tterribe
Date: 2010-09-24 16:01:08 -0700 (Fri, 24 Sep 2010)
New Revision: 17467
Modified:
trunk/theora/lib/x86_vc/mmxstate.c
Log:
Fix win32 bustage created by r17457.
Thanks to Cristian Adam for the report.
Modified: trunk/theora/lib/x86_vc/mmxstate.c
===================================================================
--- trunk/theora/lib/x86_vc/mmxstate.c 2010-09-24 14:27:20 UTC (rev 17466)
+++ trunk/theora/lib/x86_vc/mmxstate.c 2010-09-24 23:01:08 UTC (rev 17467)
@@ -81,7 +81,7 @@
refi=_state->frags[_fragi].refi;
ystride=_state->ref_ystride[_pli];
dst=_state->ref_frame_data[_state->ref_frame_idx[OC_FRAME_SELF]]+frag_buf_off;
- if(refi==OC_MODE_INTRA)oc_frag_recon_intra_mmx(dst,ystride,_dct_coeffs+64);
+ if(refi==OC_FRAME_SELF)oc_frag_recon_intra_mmx(dst,ystride,_dct_coeffs+64);
else{
const unsigned char *ref;
int mvoffsets[2];
More information about the commits
mailing list