diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-10-07 19:18:18 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2010-10-07 19:18:18 +0000 |
commit | 6c2142809cc46e3801006ddf5f0adc85243a3a2b (patch) | |
tree | 93201fa00a7f9e4d85b85053a7707938581aab4f /libavcodec/x86 | |
parent | 82ae56b3fa94566cf109eca6977a72b3704cf0ce (diff) | |
download | ffmpeg-6c2142809cc46e3801006ddf5f0adc85243a3a2b.tar.gz |
Add d modifier to asm argument to fix nasm compilation.
Originally committed as revision 25397 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/h264_intrapred.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264_intrapred.asm b/libavcodec/x86/h264_intrapred.asm index e296244d21..7d3ef95557 100644 --- a/libavcodec/x86/h264_intrapred.asm +++ b/libavcodec/x86/h264_intrapred.asm @@ -345,7 +345,7 @@ cglobal pred16x16_plane_%3_%1, 2, 7, %2 pmullw m0, [pw_5] psraw m0, 6 %elifidn %3, svq3 - movd r3, m0 + movd r3d, m0 movsx r3, r3w test r3, r3 lea r4, [r3+3] |