[FFmpeg-cvslog] r25206 - trunk/libavcodec/x86/h264_idct.asm

reimar subversion
Sun Sep 26 11:15:19 CEST 2010


Author: reimar
Date: Sun Sep 26 11:15:18 2010
New Revision: 25206

Log:
Add d suffix to movd target register to make it work with nasm.

Modified:
   trunk/libavcodec/x86/h264_idct.asm

Modified: trunk/libavcodec/x86/h264_idct.asm
==============================================================================
--- trunk/libavcodec/x86/h264_idct.asm	Sun Sep 26 11:08:11 2010	(r25205)
+++ trunk/libavcodec/x86/h264_idct.asm	Sun Sep 26 11:15:18 2010	(r25206)
@@ -245,12 +245,12 @@ cglobal h264_idct8_add_sse2, 3, 4, 10
     movsx        %1, word [%1]
     add          %1, 32
     sar          %1, 6
-    movd         m0, %1
+    movd         m0, %1d
     lea          %1, [%2*3]
 %else
     add          %3, 32
     sar          %3, 6
-    movd         m0, %3
+    movd         m0, %3d
     lea          %3, [%2*3]
 %endif
     pshufw       m0, m0, 0



More information about the ffmpeg-cvslog mailing list