[MPlayer-cvslog] r26082 - trunk/libmpcodecs/vf_fspp.c

reimar subversion at mplayerhq.hu
Sun Feb 24 12:19:55 CET 2008


Author: reimar
Date: Sun Feb 24 12:19:55 2008
New Revision: 26082

Log:
Get rid of pointless and confusing comments


Modified:
   trunk/libmpcodecs/vf_fspp.c

Modified: trunk/libmpcodecs/vf_fspp.c
==============================================================================
--- trunk/libmpcodecs/vf_fspp.c	(original)
+++ trunk/libmpcodecs/vf_fspp.c	Sun Feb 24 12:19:55 2008
@@ -1589,7 +1589,7 @@ static void column_fidct_mmx(int16_t* th
 	"jnz 1b                \n\t"
 	"5:                      \n\t"
 
-	: "+S"(data), "+D"(output), "+c"(cnt)// input regs
+	: "+S"(data), "+D"(output), "+c"(cnt)
 	: "d"(thr_adr)
 	: "%"REG_a
 	);
@@ -1857,7 +1857,7 @@ static void row_idct_mmx (DCTELEM* works
 	"dec %%"REG_c"                   \n\t"
 	"jnz 1b                  \n\t"
 
-	: "+S"(workspace), "+D"(output_adr), "+c"(cnt) //input regs
+	: "+S"(workspace), "+D"(output_adr), "+c"(cnt)
 	: "a"(output_stride*sizeof(short))
 	: "%"REG_d
 	);
@@ -2101,7 +2101,7 @@ static void row_fdct_mmx(DCTELEM *data, 
 	"dec %%"REG_c"                   \n\t"
 	"jnz 6b                  \n\t"
 
-	: "+S"(pixels), "+D"(data), "+c"(cnt) //input regs
+	: "+S"(pixels), "+D"(data), "+c"(cnt)
 	: "a"(line_size)
 	: "%"REG_d);
 }



More information about the MPlayer-cvslog mailing list