Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-09-17 21:15:43 +0400
committerPaul B Mahol <onemda@gmail.com>2013-09-17 21:20:58 +0400
commit112017e9908b7c9e01c1eaf0e0bb54346223edcf (patch)
treea9111b70f172c33b53f1568ae00fbfd60ce024d4 /libavfilter/x86
parent9c774459a95833014163ebfdf216860bc7fa14b0 (diff)
avfilter/x86/vf_pullup: try to fix build on x64
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/x86')
-rw-r--r--libavfilter/x86/vf_pullup.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/x86/vf_pullup.asm b/libavfilter/x86/vf_pullup.asm
index ca0806a77c..3689b04ef2 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