projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48fa22d
)
100l -- mismatched type after changing sizes to type long!
author
D Richard Felker III
<dalias@aerifal.cx>
Mon, 17 Oct 2005 05:05:51 +0000
(
05:05
+0000)
committer
D Richard Felker III
<dalias@aerifal.cx>
Mon, 17 Oct 2005 05:05:51 +0000
(
05:05
+0000)
Originally committed as revision 16784 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
postproc/swscale.c
patch
|
blob
|
history
diff --git
a/postproc/swscale.c
b/postproc/swscale.c
index f5d85d60397d04a02fb19942541d3d924324ed3d..75599ec900ed2d3a51ba05404f86712ec281950f 100644
(file)
--- 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))