[MPlayer-cvslog] CVS: main/postproc swscale.c,1.158,1.159

Richard Felker CVS syncmail at mplayerhq.hu
Mon Oct 17 07:05:54 CEST 2005


CVS change done by Richard Felker CVS

Update of /cvsroot/mplayer/main/postproc
In directory mail:/var2/tmp/cvs-serv24638/postproc

Modified Files:
	swscale.c 
Log Message:
100l -- mismatched type after changing sizes to type long!

Index: swscale.c
===================================================================
RCS file: /cvsroot/mplayer/main/postproc/swscale.c,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- swscale.c	6 Sep 2005 15:15:27 -0000	1.158
+++ swscale.c	17 Oct 2005 05:05:51 -0000	1.159
@@ -1475,7 +1475,7 @@
 	const int dstBpp= ((dstFormat&0xFF) + 7)>>3;
 	const int srcId= (srcFormat&0xFF)>>2; // 1:0, 4:1, 8:2, 15:3, 16:4, 24:6, 32:8 
 	const int dstId= (dstFormat&0xFF)>>2;
-	void (*conv)(const uint8_t *src, uint8_t *dst, unsigned src_size)=NULL;
+	void (*conv)(const uint8_t *src, uint8_t *dst, long src_size)=NULL;
 
 	/* BGR -> BGR */
 	if(   (isBGR(srcFormat) && isBGR(dstFormat))




More information about the MPlayer-cvslog mailing list