Browse Source

Change "p" asm constraints to "g", since "p" was a no longer necessary hack to

make AMD64 compilation work and ICC can not handle "p".

Originally committed as revision 21341 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Reimar Döffinger 19 years ago
parent
commit
e96da13bc7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswscale/swscale_template.c

+ 2
- 2
libswscale/swscale_template.c View File

@@ -102,7 +102,7 @@
"mov (%%"REG_d"), %%"REG_S" \n\t"\
"jb 1b \n\t"\
:: "r" (&c->redDither),\
"r" (dest), "p" (width)\
"r" (dest), "g" (width)\
: "%"REG_a, "%"REG_d, "%"REG_S\
);

@@ -164,7 +164,7 @@
"mov (%%"REG_d"), %%"REG_S" \n\t"\
"jb 1b \n\t"\
:: "r" (&c->redDither),\
"r" (dest), "p" (width)\
"r" (dest), "g" (width)\
: "%"REG_a, "%"REG_d, "%"REG_S\
);



Loading…
Cancel
Save