Commit 4ebfa8de authored by lucabe's avatar lucabe

Remove some void pointers arithmetic


git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@21771 b3059339-0415-0410-9bf9-f77b7e298cf2
parent d64bdef9
...@@ -101,10 +101,10 @@ typedef struct SwsContext{ ...@@ -101,10 +101,10 @@ typedef struct SwsContext{
int dstY; int dstY;
int flags; int flags;
void * yuvTable; // pointer to the yuv->rgb table start so it can be freed() void * yuvTable; // pointer to the yuv->rgb table start so it can be freed()
void * table_rV[256]; uint8_t * table_rV[256];
void * table_gU[256]; uint8_t * table_gU[256];
int table_gV[256]; int table_gV[256];
void * table_bU[256]; uint8_t * table_bU[256];
//Colorspace stuff //Colorspace stuff
int contrast, brightness, saturation; // for sws_getColorspaceDetails int contrast, brightness, saturation; // for sws_getColorspaceDetails
......
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