Commit e02532d0 authored by stefano's avatar stefano

Add a const qualifier in a cast, fix the gcc warning:

swscale.c: In function ‘sws_scale’:
swscale.c:2968: warning: cast discards qualifiers from pointer target type


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@30341 b3059339-0415-0410-9bf9-f77b7e298cf2
parent c0bf912f
......@@ -2965,7 +2965,7 @@ int sws_scale(SwsContext *c, const uint8_t* src[], int srcStride[], int srcSlice
for (i=0; i<256; i++) {
int p, r, g, b,y,u,v;
if(c->srcFormat == PIX_FMT_PAL8) {
p=((uint32_t*)(src[1]))[i];
p=((const uint32_t*)(src[1]))[i];
r= (p>>16)&0xFF;
g= (p>> 8)&0xFF;
b= p &0xFF;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment