You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
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
This commit is contained in:
@@ -102,7 +102,7 @@
|
|||||||
"mov (%%"REG_d"), %%"REG_S" \n\t"\
|
"mov (%%"REG_d"), %%"REG_S" \n\t"\
|
||||||
"jb 1b \n\t"\
|
"jb 1b \n\t"\
|
||||||
:: "r" (&c->redDither),\
|
:: "r" (&c->redDither),\
|
||||||
"r" (dest), "p" (width)\
|
"r" (dest), "g" (width)\
|
||||||
: "%"REG_a, "%"REG_d, "%"REG_S\
|
: "%"REG_a, "%"REG_d, "%"REG_S\
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -164,7 +164,7 @@
|
|||||||
"mov (%%"REG_d"), %%"REG_S" \n\t"\
|
"mov (%%"REG_d"), %%"REG_S" \n\t"\
|
||||||
"jb 1b \n\t"\
|
"jb 1b \n\t"\
|
||||||
:: "r" (&c->redDither),\
|
:: "r" (&c->redDither),\
|
||||||
"r" (dest), "p" (width)\
|
"r" (dest), "g" (width)\
|
||||||
: "%"REG_a, "%"REG_d, "%"REG_S\
|
: "%"REG_a, "%"REG_d, "%"REG_S\
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user