cast to correct type, suppress warnings

Originally committed as revision 26949 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Baptiste Coudurier 2008-06-01 03:36:23 +00:00
parent 74498eb44b
commit b8b015f483
1 changed files with 1 additions and 1 deletions

View File

@ -1849,7 +1849,7 @@ static int gray16swap(SwsContext *c, uint8_t* src[], int srcStride[], int srcSli
int height= srcSliceH;
int i, j;
uint16_t *srcPtr= (uint16_t*)src[0];
uint16_t *dstPtr= dst[0] + dstStride[0]*y/2;
uint16_t *dstPtr= (uint16_t*)(dst[0] + dstStride[0]*y/2);
for (i=0; i<height; i++)
{
for (j=0; j<length; j++) dstPtr[j] = bswap_16(srcPtr[j]);