diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-09-05 10:10:16 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-09-05 10:10:16 +0000 |
commit | b1c32fb5e5e9f6d18077b4f4d6fb7e6fd946630c (patch) | |
tree | 78a47c210935a8441f1a9a96f669b1cbe6591d7e /libavcodec/x86/vc1dsp_yasm.asm | |
parent | 87db37356c3cf63372447d5b8e0fb95e4ed66c15 (diff) | |
download | ffmpeg-b1c32fb5e5e9f6d18077b4f4d6fb7e6fd946630c.tar.gz |
Use "d" suffix for general-purpose registers used with movd.
This increases compatibilty with nasm and is also more consistent,
e.g. with h264_intrapred.asm and h264_chromamc.asm that already
do it that way.
Originally committed as revision 25042 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/vc1dsp_yasm.asm')
-rw-r--r-- | libavcodec/x86/vc1dsp_yasm.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/vc1dsp_yasm.asm b/libavcodec/x86/vc1dsp_yasm.asm index 660ff11693..3ea9d8db47 100644 --- a/libavcodec/x86/vc1dsp_yasm.asm +++ b/libavcodec/x86/vc1dsp_yasm.asm @@ -36,7 +36,7 @@ section .text %endmacro %macro STORE_4_WORDS_MMX 6 - movd %6, %5 + movd %6d, %5 %if mmsize==16 psrldq %5, 4 %else @@ -45,7 +45,7 @@ section .text mov %1, %6w shr %6, 16 mov %2, %6w - movd %6, %5 + movd %6d, %5 mov %3, %6w shr %6, 16 mov %4, %6w @@ -88,7 +88,7 @@ section .text pxor m7, m3 ; d_sign ^= a0_sign pxor m5, m5 - movd m3, r2 + movd m3, r2d %if %1 > 4 punpcklbw m3, m3 %endif |