- replaced x86_reg with x86_native_reg in one place (64 bit mask)
- Indirect jumps and calls require a 64 bit target even on x32
  pointer arguments need to be zero-extended, this requires 2 casts:
  ptr -> uintptr_t -> x86_native_reg
- replaced harcoded register r8 with REG8
  (the clobber string remains %r8, apparently %r8d would be illegal)
- push/pop implicitly requires 64 bit arguments on x86_64
  replaced: REG_BP with REG_rBP
- replaced hardcoded rsp with REG_SP
  this is not strictly needed, but might make the code smaller by not
  requiring a rex prefix on x32

Signed-off-by: Matthias Räncker <[email protected]>
---
 libavcodec/x86/mlpdsp.c           |  4 +-
 libswscale/x86/swscale_template.c | 96 +++++++++++++++++++--------------------
 2 files changed, 50 insertions(+), 50 deletions(-)

diff --git a/libavcodec/x86/mlpdsp.c b/libavcodec/x86/mlpdsp.c
index a18e9fa..f9b98c3 100644
--- a/libavcodec/x86/mlpdsp.c
+++ b/libavcodec/x86/mlpdsp.c
@@ -157,8 +157,8 @@ static void mlp_filter_channel_x86(int32_t *state, const 
int32_t *coeff,
           /* 2*/"+r"(sample_buffer),
 #if ARCH_X86_64
           /* 3*/"+r"(blocksize)
-        : /* 4*/"r"((x86_reg)mask), /* 5*/"r"(firjump),
-          /* 6*/"r"(iirjump)      , /* 7*/"c"(filter_shift)
+        : /* 4*/"r"((x86_native_reg)mask), /* 
5*/"r"((x86_native_reg)(uintptr_t)firjump),
+          /* 6*/"r"((x86_native_reg)(uintptr_t)iirjump), /* 
7*/"c"(filter_shift)
         , /* 8*/"r"((int64_t)coeff[0])
         , /* 9*/"r"((int64_t)coeff[1])
         , /*10*/"r"((int64_t)coeff[2])
diff --git a/libswscale/x86/swscale_template.c 
b/libswscale/x86/swscale_template.c
index d89a26f..ef7236b 100644
--- a/libswscale/x86/swscale_template.c
+++ b/libswscale/x86/swscale_template.c
@@ -774,12 +774,12 @@ static void RENAME(yuv2rgb32_2)(SwsContext *c, const 
int16_t *buf[2],
         const int16_t *abuf0 = abuf[0], *abuf1 = abuf[1];
 #if ARCH_X86_64
         __asm__ volatile(
-            YSCALEYUV2RGB(%%r8, %5)
-            YSCALEYUV2RGB_YA(%%r8, %5, %6, %7)
+            YSCALEYUV2RGB(%%REG8, %5)
+            YSCALEYUV2RGB_YA(%%REG8, %5, %6, %7)
             "psraw                  $3, %%mm1       \n\t" /* abuf0[eax] - 
abuf1[eax] >>7*/
             "psraw                  $3, %%mm7       \n\t" /* abuf0[eax] - 
abuf1[eax] >>7*/
             "packuswb            %%mm7, %%mm1       \n\t"
-            WRITEBGR32(%4, 8280(%5), %%r8, %%mm2, %%mm4, %%mm5, %%mm1, %%mm0, 
%%mm7, %%mm3, %%mm6)
+            WRITEBGR32(%4, 8280(%5), %%REG8, %%mm2, %%mm4, %%mm5, %%mm1, 
%%mm0, %%mm7, %%mm3, %%mm6)
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "r" (dest),
                "a" (&c->redDither),
                "r" (abuf0), "r" (abuf1)
@@ -791,7 +791,7 @@ static void RENAME(yuv2rgb32_2)(SwsContext *c, const 
int16_t *buf[2],
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB(%%REGBP, %5)
             "push                   %0              \n\t"
             "push                   %1              \n\t"
@@ -804,7 +804,7 @@ static void RENAME(yuv2rgb32_2)(SwsContext *c, const 
int16_t *buf[2],
             "pop                    %1              \n\t"
             "pop                    %0              \n\t"
             WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm1, 
%%mm0, %%mm7, %%mm3, %%mm6)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -814,11 +814,11 @@ static void RENAME(yuv2rgb32_2)(SwsContext *c, const 
int16_t *buf[2],
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB(%%REGBP, %5)
             "pcmpeqd %%mm7, %%mm7                   \n\t"
             WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, %%mm7, 
%%mm0, %%mm1, %%mm3, %%mm6)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -838,11 +838,11 @@ static void RENAME(yuv2bgr24_2)(SwsContext *c, const 
int16_t *buf[2],
     __asm__ volatile(
         "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
         "mov        %4, %%"REG_b"               \n\t"
-        "push %%"REG_BP"                        \n\t"
+        "push %%"REG_rBP"                       \n\t"
         YSCALEYUV2RGB(%%REGBP, %5)
         "pxor    %%mm7, %%mm7                   \n\t"
         WRITEBGR24(%%REGb, 8280(%5), %%REGBP)
-        "pop %%"REG_BP"                         \n\t"
+        "pop %%"REG_rBP"                        \n\t"
         "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
         :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
            "a" (&c->redDither)
@@ -861,7 +861,7 @@ static void RENAME(yuv2rgb555_2)(SwsContext *c, const 
int16_t *buf[2],
     __asm__ volatile(
         "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
         "mov        %4, %%"REG_b"               \n\t"
-        "push %%"REG_BP"                        \n\t"
+        "push %%"REG_rBP"                       \n\t"
         YSCALEYUV2RGB(%%REGBP, %5)
         "pxor    %%mm7, %%mm7                   \n\t"
         /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
@@ -871,7 +871,7 @@ static void RENAME(yuv2rgb555_2)(SwsContext *c, const 
int16_t *buf[2],
         "paddusb "RED_DITHER"(%5), %%mm5      \n\t"
 #endif
         WRITERGB15(%%REGb, 8280(%5), %%REGBP)
-        "pop %%"REG_BP"                         \n\t"
+        "pop %%"REG_rBP"                        \n\t"
         "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
         :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
            "a" (&c->redDither)
@@ -890,7 +890,7 @@ static void RENAME(yuv2rgb565_2)(SwsContext *c, const 
int16_t *buf[2],
     __asm__ volatile(
         "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
         "mov        %4, %%"REG_b"               \n\t"
-        "push %%"REG_BP"                        \n\t"
+        "push %%"REG_rBP"                       \n\t"
         YSCALEYUV2RGB(%%REGBP, %5)
         "pxor    %%mm7, %%mm7                   \n\t"
         /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
@@ -900,7 +900,7 @@ static void RENAME(yuv2rgb565_2)(SwsContext *c, const 
int16_t *buf[2],
         "paddusb "RED_DITHER"(%5), %%mm5      \n\t"
 #endif
         WRITERGB16(%%REGb, 8280(%5), %%REGBP)
-        "pop %%"REG_BP"                         \n\t"
+        "pop %%"REG_rBP"                        \n\t"
         "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
         :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
            "a" (&c->redDither)
@@ -959,10 +959,10 @@ static void RENAME(yuv2yuyv422_2)(SwsContext *c, const 
int16_t *buf[2],
     __asm__ volatile(
         "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
         "mov %4, %%"REG_b"                        \n\t"
-        "push %%"REG_BP"                        \n\t"
+        "push %%"REG_rBP"                       \n\t"
         YSCALEYUV2PACKED(%%REGBP, %5)
         WRITEYUY2(%%REGb, 8280(%5), %%REGBP)
-        "pop %%"REG_BP"                         \n\t"
+        "pop %%"REG_rBP"                        \n\t"
         "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
         :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
            "a" (&c->redDither)
@@ -1101,11 +1101,11 @@ static void RENAME(yuv2rgb32_1)(SwsContext *c, const 
int16_t *buf0,
             __asm__ volatile(
                 "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
                 "mov        %4, %%"REG_b"               \n\t"
-                "push %%"REG_BP"                        \n\t"
+                "push %%"REG_rBP"                       \n\t"
                 YSCALEYUV2RGB1(%%REGBP, %5)
                 YSCALEYUV2RGB1_ALPHA(%%REGBP)
                 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, 
%%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
-                "pop %%"REG_BP"                         \n\t"
+                "pop %%"REG_rBP"                        \n\t"
                 "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
                 :: "c" (buf0), "d" (abuf0), "S" (ubuf0), "D" (ubuf1), "m" 
(dest),
                    "a" (&c->redDither)
@@ -1114,11 +1114,11 @@ static void RENAME(yuv2rgb32_1)(SwsContext *c, const 
int16_t *buf0,
             __asm__ volatile(
                 "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
                 "mov        %4, %%"REG_b"               \n\t"
-                "push %%"REG_BP"                        \n\t"
+                "push %%"REG_rBP"                       \n\t"
                 YSCALEYUV2RGB1(%%REGBP, %5)
                 "pcmpeqd %%mm7, %%mm7                   \n\t"
                 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, 
%%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
-                "pop %%"REG_BP"                         \n\t"
+                "pop %%"REG_rBP"                        \n\t"
                 "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
                 :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" 
(dest),
                    "a" (&c->redDither)
@@ -1130,11 +1130,11 @@ static void RENAME(yuv2rgb32_1)(SwsContext *c, const 
int16_t *buf0,
             __asm__ volatile(
                 "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
                 "mov        %4, %%"REG_b"               \n\t"
-                "push %%"REG_BP"                        \n\t"
+                "push %%"REG_rBP"                       \n\t"
                 YSCALEYUV2RGB1b(%%REGBP, %5)
                 YSCALEYUV2RGB1_ALPHA(%%REGBP)
                 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, 
%%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
-                "pop %%"REG_BP"                         \n\t"
+                "pop %%"REG_rBP"                        \n\t"
                 "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
                 :: "c" (buf0), "d" (abuf0), "S" (ubuf0), "D" (ubuf1), "m" 
(dest),
                    "a" (&c->redDither)
@@ -1143,11 +1143,11 @@ static void RENAME(yuv2rgb32_1)(SwsContext *c, const 
int16_t *buf0,
             __asm__ volatile(
                 "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
                 "mov        %4, %%"REG_b"               \n\t"
-                "push %%"REG_BP"                        \n\t"
+                "push %%"REG_rBP"                       \n\t"
                 YSCALEYUV2RGB1b(%%REGBP, %5)
                 "pcmpeqd %%mm7, %%mm7                   \n\t"
                 WRITEBGR32(%%REGb, 8280(%5), %%REGBP, %%mm2, %%mm4, %%mm5, 
%%mm7, %%mm0, %%mm1, %%mm3, %%mm6)
-                "pop %%"REG_BP"                         \n\t"
+                "pop %%"REG_rBP"                        \n\t"
                 "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
                 :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" 
(dest),
                    "a" (&c->redDither)
@@ -1169,11 +1169,11 @@ static void RENAME(yuv2bgr24_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB1(%%REGBP, %5)
             "pxor    %%mm7, %%mm7                   \n\t"
             WRITEBGR24(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1183,11 +1183,11 @@ static void RENAME(yuv2bgr24_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB1b(%%REGBP, %5)
             "pxor    %%mm7, %%mm7                   \n\t"
             WRITEBGR24(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1208,7 +1208,7 @@ static void RENAME(yuv2rgb555_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB1(%%REGBP, %5)
             "pxor    %%mm7, %%mm7                   \n\t"
             /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
@@ -1218,7 +1218,7 @@ static void RENAME(yuv2rgb555_1)(SwsContext *c, const 
int16_t *buf0,
             "paddusb "RED_DITHER"(%5), %%mm5      \n\t"
 #endif
             WRITERGB15(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1228,7 +1228,7 @@ static void RENAME(yuv2rgb555_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB1b(%%REGBP, %5)
             "pxor    %%mm7, %%mm7                   \n\t"
             /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
@@ -1238,7 +1238,7 @@ static void RENAME(yuv2rgb555_1)(SwsContext *c, const 
int16_t *buf0,
             "paddusb "RED_DITHER"(%5), %%mm5      \n\t"
 #endif
             WRITERGB15(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1259,7 +1259,7 @@ static void RENAME(yuv2rgb565_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB1(%%REGBP, %5)
             "pxor    %%mm7, %%mm7                   \n\t"
             /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
@@ -1269,7 +1269,7 @@ static void RENAME(yuv2rgb565_1)(SwsContext *c, const 
int16_t *buf0,
             "paddusb "RED_DITHER"(%5), %%mm5      \n\t"
 #endif
             WRITERGB16(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1279,7 +1279,7 @@ static void RENAME(yuv2rgb565_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2RGB1b(%%REGBP, %5)
             "pxor    %%mm7, %%mm7                   \n\t"
             /* mm2=B, %%mm4=G, %%mm5=R, %%mm7=0 */
@@ -1289,7 +1289,7 @@ static void RENAME(yuv2rgb565_1)(SwsContext *c, const 
int16_t *buf0,
             "paddusb "RED_DITHER"(%5), %%mm5      \n\t"
 #endif
             WRITERGB16(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1347,10 +1347,10 @@ static void RENAME(yuv2yuyv422_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2PACKED1(%%REGBP, %5)
             WRITEYUY2(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1360,10 +1360,10 @@ static void RENAME(yuv2yuyv422_1)(SwsContext *c, const 
int16_t *buf0,
         __asm__ volatile(
             "mov %%"REG_b", "ESP_OFFSET"(%5)        \n\t"
             "mov        %4, %%"REG_b"               \n\t"
-            "push %%"REG_BP"                        \n\t"
+            "push %%"REG_rBP"                       \n\t"
             YSCALEYUV2PACKED1b(%%REGBP, %5)
             WRITEYUY2(%%REGb, 8280(%5), %%REGBP)
-            "pop %%"REG_BP"                         \n\t"
+            "pop %%"REG_rBP"                        \n\t"
             "mov "ESP_OFFSET"(%5), %%"REG_b"        \n\t"
             :: "c" (buf0), "d" (buf1), "S" (ubuf0), "D" (ubuf1), "m" (dest),
                "a" (&c->redDither)
@@ -1378,7 +1378,7 @@ static void RENAME(hyscale_fast)(SwsContext *c, int16_t 
*dst,
 {
     int32_t *filterPos = c->hLumFilterPos;
     int16_t *filter    = c->hLumFilter;
-    void    *mmxextFilterCode = c->lumMmxextFilterCode;
+    x86_native_reg mmxextFilterCode = (uintptr_t)c->lumMmxextFilterCode;
     int i;
 #if defined(PIC)
     uint64_t ebxsave;
@@ -1391,12 +1391,12 @@ static void RENAME(hyscale_fast)(SwsContext *c, int16_t 
*dst,
 #if defined(PIC)
         "mov               %%"REG_b", %5        \n\t"
 #if ARCH_X86_64
-        "mov               -8(%%rsp), %%"REG_a" \n\t"
+        "mov          -8(%%"REG_SP"), %%"REG_a" \n\t"
         "mov               %%"REG_a", %6        \n\t"
 #endif
 #else
 #if ARCH_X86_64
-        "mov               -8(%%rsp), %%"REG_a" \n\t"
+        "mov          -8(%%"REG_SP"), %%"REG_a" \n\t"
         "mov               %%"REG_a", %5        \n\t"
 #endif
 #endif
@@ -1442,12 +1442,12 @@ static void RENAME(hyscale_fast)(SwsContext *c, int16_t 
*dst,
         "mov                      %5, %%"REG_b" \n\t"
 #if ARCH_X86_64
         "mov                      %6, %%"REG_a" \n\t"
-        "mov               %%"REG_a", -8(%%rsp) \n\t"
+        "mov               %%"REG_a", -8(%%"REG_SP") \n\t"
 #endif
 #else
 #if ARCH_X86_64
         "mov                      %5, %%"REG_a" \n\t"
-        "mov               %%"REG_a", -8(%%rsp) \n\t"
+        "mov               %%"REG_a", -8(%%"REG_SP") \n\t"
 #endif
 #endif
         :: "m" (src), "m" (dst), "m" (filter), "m" (filterPos),
@@ -1487,12 +1487,12 @@ static void RENAME(hcscale_fast)(SwsContext *c, int16_t 
*dst1, int16_t *dst2,
 #if defined(PIC)
         "mov          %%"REG_b", %7         \n\t"
 #if ARCH_X86_64
-        "mov          -8(%%rsp), %%"REG_a"  \n\t"
+        "mov     -8(%%"REG_SP"), %%"REG_a"  \n\t"
         "mov          %%"REG_a", %8         \n\t"
 #endif
 #else
 #if ARCH_X86_64
-        "mov          -8(%%rsp), %%"REG_a"  \n\t"
+        "mov     -8(%%"REG_SP"), %%"REG_a"  \n\t"
         "mov          %%"REG_a", %7         \n\t"
 #endif
 #endif
@@ -1526,12 +1526,12 @@ static void RENAME(hcscale_fast)(SwsContext *c, int16_t 
*dst1, int16_t *dst2,
         "mov %7, %%"REG_b"    \n\t"
 #if ARCH_X86_64
         "mov                 %8, %%"REG_a"  \n\t"
-        "mov          %%"REG_a", -8(%%rsp)  \n\t"
+        "mov          %%"REG_a", -8(%%"REG_SP") \n\t"
 #endif
 #else
 #if ARCH_X86_64
         "mov                 %7, %%"REG_a"  \n\t"
-        "mov          %%"REG_a", -8(%%rsp)  \n\t"
+        "mov          %%"REG_a", -8(%%"REG_SP") \n\t"
 #endif
 #endif
         :: "m" (src1), "m" (dst1), "m" (filter), "m" (filterPos),
-- 
1.8.1.1

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to