summaryrefslogtreecommitdiff
path: root/postproc/swscale.c
diff options
context:
space:
mode:
authorD Richard Felker III <dalias@aerifal.cx>2005-10-17 05:05:51 +0000
committerD Richard Felker III <dalias@aerifal.cx>2005-10-17 05:05:51 +0000
commit73cbfb1c59ef195f6cadca2bced1db8b306845e5 (patch)
tree61face4b6df0c5bb6a89b5c056350572bfe456a0 /postproc/swscale.c
parent48fa22d74716f1ebb384c24324427bc38d8a29c6 (diff)
100l -- mismatched type after changing sizes to type long!
Originally committed as revision 16784 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale.c')
-rw-r--r--postproc/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/swscale.c b/postproc/swscale.c
index f5d85d6039..75599ec900 100644
--- a/postproc/swscale.c
+++ b/postproc/swscale.c
@@ -1475,7 +1475,7 @@ static int rgb2rgbWrapper(SwsContext *c, uint8_t* src[], int srcStride[], int sr
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))