[Mplayer-cvslog] CVS: main/libmpeg2 decode.c,1.14,1.15

Arpi of Ize arpi at mplayer.dev.hu
Thu Oct 4 20:26:46 CEST 2001


Update of /cvsroot/mplayer/main/libmpeg2
In directory mplayer:/var/tmp.root/cvs-serv12345

Modified Files:
	decode.c 
Log Message:
gcc3 warning fixed

Index: decode.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpeg2/decode.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- decode.c	29 Sep 2001 21:40:24 -0000	1.14
+++ decode.c	4 Oct 2001 18:26:44 -0000	1.15
@@ -115,7 +115,7 @@
 #else
 	for(i=0;i<3;i++){
 #endif
-            base = memalign(64,buff_size);
+            base = (unsigned char *)memalign(64,buff_size);
 	    frames[i].base[0] = base;
 	    frames[i].base[1] = base + frame_size * 5 / 4;
 	    frames[i].base[2] = base + frame_size;




More information about the MPlayer-cvslog mailing list