[FFmpeg-cvslog] x86/hevc_idct: fix movd parameter size in DC_ADD_INIT

James Almer git at videolan.org
Thu Jun 19 13:24:23 CEST 2014


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Thu Jun 19 01:10:43 2014 -0300| [454c019cb536ba5bb2a80d47cfbd12168d1e1db4] | committer: Michael Niedermayer

x86/hevc_idct: fix movd parameter size in DC_ADD_INIT

Fixes compilation with NASM x86_64

Signed-off-by: James Almer <jamrial at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=454c019cb536ba5bb2a80d47cfbd12168d1e1db4
---

 libavcodec/x86/hevc_idct.asm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/x86/hevc_idct.asm b/libavcodec/x86/hevc_idct.asm
index 5d2f5b5..6963dc7 100644
--- a/libavcodec/x86/hevc_idct.asm
+++ b/libavcodec/x86/hevc_idct.asm
@@ -32,7 +32,7 @@ SECTION .text
 %macro DC_ADD_INIT 2
     add              %1w, ((1 << 14-8) + 1)
     sar              %1w, (15-8)
-    movd              m0, %1
+    movd              m0, %1d
     lea               %1, [%2*3]
     SPLATW            m0, m0, 0
     pxor              m1, m1



More information about the ffmpeg-cvslog mailing list