diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-11-27 21:59:13 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2006-11-27 21:59:13 +0000 |
commit | e96da13bc753ef3081794d90fa0d9f6a777656d3 (patch) | |
tree | b24d8276da33614b70f4fea7f8c94749ac2b284f | |
parent | b0d7bc1eabf825abba6bfeebd4df138ac744ea49 (diff) | |
download | ffmpeg-e96da13bc753ef3081794d90fa0d9f6a777656d3.tar.gz |
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
-rw-r--r-- | libswscale/swscale_template.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index 3725979bd1..e725a3bb0a 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -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\ ); |