# HG changeset patch # User lucabe # Date 1167149557 0 # Node ID 5ee0b3c9e6671e728d2bed791ed072054e8596b0 # Parent 995ccc384144283213e05da6aae276d0910fb490 Remove some void pointers arithmetic diff -r 995ccc384144 -r 5ee0b3c9e667 libswscale/swscale_internal.h --- a/libswscale/swscale_internal.h Tue Dec 26 10:58:07 2006 +0000 +++ b/libswscale/swscale_internal.h Tue Dec 26 16:12:37 2006 +0000 @@ -101,10 +101,10 @@ int dstY; int flags; void * yuvTable; // pointer to the yuv->rgb table start so it can be freed() - void * table_rV[256]; - void * table_gU[256]; + uint8_t * table_rV[256]; + uint8_t * table_gU[256]; int table_gV[256]; - void * table_bU[256]; + uint8_t * table_bU[256]; //Colorspace stuff int contrast, brightness, saturation; // for sws_getColorspaceDetails