diff options
author | Luca Abeni <lucabe72@email.it> | 2006-12-26 16:12:37 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-12-26 16:12:37 +0000 |
commit | 9effd94abcb02f02748ff67815581f76caa6350b (patch) | |
tree | a821ebb5f21d579f52a013dba88e8375aced88f8 /libswscale/swscale_internal.h | |
parent | 185c7b6b2663ca22b5ae85e51b6ff5deacf5c038 (diff) | |
download | ffmpeg-9effd94abcb02f02748ff67815581f76caa6350b.tar.gz |
Remove some void pointers arithmetic
Originally committed as revision 21771 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 837b6eaf5e..06ce13f8c5 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -101,10 +101,10 @@ typedef struct SwsContext{ 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 |