[MPlayer-cvslog] CVS: main/libmpcodecs vf_fspp.c,1.1,1.2

Jindrich Makovicka CVS syncmail at mplayerhq.hu
Sat Jun 4 09:58:42 CEST 2005


CVS change done by Jindrich Makovicka CVS

Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv28707

Modified Files:
	vf_fspp.c 
Log Message:
move unchanged registers back to input spec

Index: vf_fspp.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_fspp.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vf_fspp.c	4 Jun 2005 07:05:02 -0000	1.1
+++ vf_fspp.c	4 Jun 2005 07:58:40 -0000	1.2
@@ -1591,8 +1591,8 @@
 	"jnz 1b                \n\t"
 	"5:                      \n\t"
 
-	: "+S"(data), "+D"(output), "+c"(cnt), "+d"(thr_adr)// input regs
-	: 
+	: "+S"(data), "+D"(output), "+c"(cnt)// input regs
+	: "d"(thr_adr)
 	: "%eax"
 	);
 }
@@ -2103,8 +2103,8 @@
 	"decl %%ecx                   \n\t"
 	"jnz 6b                  \n\t"
 
-	: "+S"(pixels), "+D"(data), "+a"(line_size), "+c"(cnt) //input regs
-	:
+	: "+S"(pixels), "+D"(data), "+c"(cnt) //input regs
+	: "a"(line_size)
 	: "%edx");
 }
 




More information about the MPlayer-cvslog mailing list