summaryrefslogtreecommitdiffstats
path: root/postproc/swscale.c
diff options
context:
space:
mode:
authoraurel <aurel@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-21 16:48:18 +0000
committeraurel <aurel@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-21 16:48:18 +0000
commit1f5ddaaa297d362387eea3b4ee6667125b326984 (patch)
tree6c91ba7d4a5eb5bc3280b12b7ffe341a9b78539b /postproc/swscale.c
parent4643b6100a1eb073f983d73a9c07598041321434 (diff)
downloadmpv-1f5ddaaa297d362387eea3b4ee6667125b326984.tar.bz2
mpv-1f5ddaaa297d362387eea3b4ee6667125b326984.tar.xz
fix few x86_64 registers handling
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14557 b3059339-0415-0410-9bf9-f77b7e298cf2
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"