changeset 16783:3ea7f6ab11b1

100l -- mismatched type after changing sizes to type long!
author rfelker
date Mon, 17 Oct 2005 05:05:51 +0000
parents 1816685a3d7b
children 7a6e909c223e
files postproc/swscale.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/postproc/swscale.c	Mon Oct 17 04:51:34 2005 +0000
+++ b/postproc/swscale.c	Mon Oct 17 05:05:51 2005 +0000
@@ -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))