[MPlayer-cvslog] r21771 - trunk/libswscale/swscale_internal.h

lucabe subversion at mplayerhq.hu
Tue Dec 26 17:12:37 CET 2006


Author: lucabe
Date: Tue Dec 26 17:12:37 2006
New Revision: 21771

Modified:
   trunk/libswscale/swscale_internal.h

Log:
Remove some void pointers arithmetic


Modified: trunk/libswscale/swscale_internal.h
==============================================================================
--- trunk/libswscale/swscale_internal.h	(original)
+++ trunk/libswscale/swscale_internal.h	Tue Dec 26 17:12:37 2006
@@ -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



More information about the MPlayer-cvslog mailing list