summaryrefslogtreecommitdiff
path: root/postproc/swscale.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2005-01-21 16:48:18 +0000
committerAurelien Jacobs <aurel@gnuage.org>2005-01-21 16:48:18 +0000
commit6d606c4f5b68fa396d454a896d3223c2c13de2fb (patch)
tree13aa1623e71d49a1d12b1fa5667a00c5ebe4dba5 /postproc/swscale.c
parent45ce5ddb897ca14f18cc0bb26f1e457bf936c78c (diff)
fix few x86_64 registers handling
Originally committed as revision 14557 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.c')
-rw-r--r--postproc/swscale.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/postproc/swscale.c b/postproc/swscale.c
index 6e9419789f..5da32037e9 100644
--- a/postproc/swscale.c
+++ b/postproc/swscale.c
@@ -1175,7 +1175,7 @@ static void initMMX2HScaler(int dstW, int xInc, uint8_t *funnyCode, int16_t *fil
"pshufw $0xFF, %%mm0, %%mm0 \n\t"
"2: \n\t"
"psubw %%mm1, %%mm0 \n\t"
- "mov 8(%%"REG_b", %%"REG_a"), %%"REG_S"\n\t"
+ "movl 8(%%"REG_b", %%"REG_a"), %%esi\n\t"
"pmullw %%mm3, %%mm0 \n\t"
"psllw $7, %%mm1 \n\t"
"paddw %%mm1, %%mm0 \n\t"
@@ -1213,7 +1213,7 @@ static void initMMX2HScaler(int dstW, int xInc, uint8_t *funnyCode, int16_t *fil
"pshufw $0xFF, %%mm0, %%mm0 \n\t"
"2: \n\t"
"psubw %%mm1, %%mm0 \n\t"
- "mov 8(%%"REG_b", %%"REG_a"), %%"REG_S"\n\t"
+ "movl 8(%%"REG_b", %%"REG_a"), %%esi\n\t"
"pmullw %%mm3, %%mm0 \n\t"
"psllw $7, %%mm1 \n\t"
"paddw %%mm1, %%mm0 \n\t"