# HG changeset patch # User reimar # Date 1279971208 0 # Node ID 140bde72c97f06f6b0b430704d35595171bac55e # Parent 75bbf9bd2936ae66e9dc44b48aeefd7d2d0e5f54 Add some "const" to avoid incompatible pointer type warnings diff -r 75bbf9bd2936 -r 140bde72c97f libswscale/ppc/yuv2rgb_altivec.c --- a/libswscale/ppc/yuv2rgb_altivec.c Sat Jul 24 11:19:39 2010 +0000 +++ b/libswscale/ppc/yuv2rgb_altivec.c Sat Jul 24 11:33:28 2010 +0000 @@ -275,7 +275,7 @@ #define DEFCSP420_CVT(name,out_pixels) \ static int altivec_##name (SwsContext *c, \ - unsigned char **in, int *instrides, \ + const unsigned char **in, int *instrides, \ int srcSliceY, int srcSliceH, \ unsigned char **oplanes, int *outstrides) \ { \ @@ -309,10 +309,10 @@ \ vector unsigned short lCSHIFT = c->CSHIFT; \ \ - ubyte *y1i = in[0]; \ - ubyte *y2i = in[0]+instrides[0]; \ - ubyte *ui = in[1]; \ - ubyte *vi = in[2]; \ + const ubyte *y1i = in[0]; \ + const ubyte *y2i = in[0]+instrides[0]; \ + const ubyte *ui = in[1]; \ + const ubyte *vi = in[2]; \ \ vector unsigned char *oute \ = (vector unsigned char *) \ @@ -626,7 +626,7 @@ this is so I can play live CCIR raw video */ static int altivec_uyvy_rgb32 (SwsContext *c, - unsigned char **in, int *instrides, + const unsigned char **in, int *instrides, int srcSliceY, int srcSliceH, unsigned char **oplanes, int *outstrides) { @@ -638,7 +638,7 @@ vector signed short R0,G0,B0,R1,G1,B1; vector unsigned char R,G,B; vector unsigned char *out; - ubyte *img; + const ubyte *img; img = in[0]; out = (vector unsigned char *)(oplanes[0]+srcSliceY*outstrides[0]);