mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 12:27:18 +00:00
100l -- mismatched type after changing sizes to type long!
Originally committed as revision 16784 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
This commit is contained in:
parent
48fa22d747
commit
73cbfb1c59
@ -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 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 srcId= (srcFormat&0xFF)>>2; // 1:0, 4:1, 8:2, 15:3, 16:4, 24:6, 32:8
|
||||||
const int dstId= (dstFormat&0xFF)>>2;
|
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 */
|
/* BGR -> BGR */
|
||||||
if( (isBGR(srcFormat) && isBGR(dstFormat))
|
if( (isBGR(srcFormat) && isBGR(dstFormat))
|
||||||
|
Loading…
Reference in New Issue
Block a user