[Mplayer-cvslog] CVS: main dll_init.c,1.46,1.47
Arpi of Ize
arpi at mplayerhq.hu
Thu Aug 29 00:46:17 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main/vidix/drivers mga_vid.c,1.17,1.18
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs ad_a52.c,1.4,1.5 vd_ffmpeg.c,1.46,1.47 vd_real.c,1.11,1.12 vd_svq1.c,1.4,1.5 ve_divx4.c,1.5,1.6 ve_lavc.c,1.25,1.26 ve_libdv.c,1.2,1.3 ve_rawrgb.c,1.5,1.6 ve_vfw.c,1.5,1.6 vf.c,1.45,1.46 vf_lavc.c,1.4,1.5 vf_palette.c,1.4,1.5 vf_pp.c,1.8,1.9 vf_rectangle.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv25343
Modified Files:
dll_init.c
Log Message:
mostly compiler warning fixes, some small bugfix
patch by Dominik Mierzejewski <dominik at rangers.eu.org>
Index: dll_init.c
===================================================================
RCS file: /cvsroot/mplayer/main/dll_init.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- dll_init.c 28 Aug 2002 16:09:31 -0000 1.46
+++ dll_init.c 28 Aug 2002 22:45:44 -0000 1.47
@@ -538,7 +538,7 @@
ret = ICCompressGetFormat(encoder_hic, input_bih, output_bih);
if(ret < 0){
- unsigned char* temp=output_bih;
+ unsigned char* temp=(unsigned char*)output_bih;
mp_msg(MSGT_WIN32,MSGL_ERR,"ICCompressGetFormat failed: Error %d (0x%X)\n", (int)ret, (int)ret);
for (i=0; i < temp_len; i++) mp_msg(MSGT_WIN32, MSGL_DBG2, "%02x ", temp[i]);
return 0;
@@ -547,7 +547,7 @@
if (temp_len > sizeof(BITMAPINFOHEADER))
{
- unsigned char* temp=output_bih;
+ unsigned char* temp=(unsigned char*)output_bih;
mp_msg(MSGT_WIN32, MSGL_V, "Extra info in o_bih (%d bytes)!\n",
temp_len-sizeof(BITMAPINFOHEADER));
for(i=sizeof(output_bih);i<temp_len;i++) mp_msg(MSGT_WIN32, MSGL_DBG2, "%02X ",temp[i]);
- Previous message: [Mplayer-cvslog] CVS: main/vidix/drivers mga_vid.c,1.17,1.18
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs ad_a52.c,1.4,1.5 vd_ffmpeg.c,1.46,1.47 vd_real.c,1.11,1.12 vd_svq1.c,1.4,1.5 ve_divx4.c,1.5,1.6 ve_lavc.c,1.25,1.26 ve_libdv.c,1.2,1.3 ve_rawrgb.c,1.5,1.6 ve_vfw.c,1.5,1.6 vf.c,1.45,1.46 vf_lavc.c,1.4,1.5 vf_palette.c,1.4,1.5 vf_pp.c,1.8,1.9 vf_rectangle.c,1.2,1.3
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list