diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-09-26 09:15:18 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-09-26 09:15:18 +0000 |
commit | 02b424d9c87a8ecd851f38aaf52941b97926b0de (patch) | |
tree | aa7415fc316b62942af8cb2c8dfcc8ad2556d3e1 | |
parent | dc77e985b7f17ee1a8d332aea872de0f0e7b0e6d (diff) | |
download | ffmpeg-02b424d9c87a8ecd851f38aaf52941b97926b0de.tar.gz |
Add d suffix to movd target register to make it work with nasm.
Originally committed as revision 25206 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/x86/h264_idct.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/h264_idct.asm b/libavcodec/x86/h264_idct.asm index a1ccb13ac6..9c154f80b3 100644 --- a/libavcodec/x86/h264_idct.asm +++ b/libavcodec/x86/h264_idct.asm @@ -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 |