[FFmpeg-cvslog] avfilter/x86/vf_pullup: try to fix build on x64

Paul B Mahol git at videolan.org
Tue Sep 17 19:21:56 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Sep 17 17:15:43 2013 +0000| [112017e9908b7c9e01c1eaf0e0bb54346223edcf] | committer: Paul B Mahol

avfilter/x86/vf_pullup: try to fix build on x64

Signed-off-by: Paul B Mahol <onemda at gmail.com>

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

 libavfilter/x86/vf_pullup.asm |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavfilter/x86/vf_pullup.asm b/libavfilter/x86/vf_pullup.asm
index ca0806a..3689b04 100644
--- a/libavfilter/x86/vf_pullup.asm
+++ b/libavfilter/x86/vf_pullup.asm
@@ -57,7 +57,7 @@ cglobal pullup_filter_diff, 3, 5, 8, first, second, size
     movd      eax, m3
     psrlq      m3, 32
     movd       r4, m3
-    add       eax, r4
+    add       eax, r4d
     RET
 
 INIT_MMX mmx
@@ -136,7 +136,7 @@ cglobal pullup_filter_comb, 3, 5, 8, first, second, size
     movd      eax, m5
     psrlq      m5, 32
     movd       r4, m5
-    add       eax, r4
+    add       eax, r4d
     RET
 
 INIT_MMX mmx
@@ -173,6 +173,6 @@ cglobal pullup_filter_var, 3, 5, 8, first, second, size
     movd      eax, m3
     psrlq      m3, 32
     movd       r4, m3
-    add       eax, r4
+    add       eax, r4d
     shl       eax, 2
     RET



More information about the ffmpeg-cvslog mailing list