[Mplayer-cvslog] CVS: main/libmpcodecs vd_vfw.c,1.18,1.19

Arpi of Ize arpi at mplayerhq.hu
Thu Sep 5 00:34:20 CEST 2002


Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv26228

Modified Files:
	vd_vfw.c 
Log Message:
NULL->0 (warning fix)


Index: vd_vfw.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_vfw.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- vd_vfw.c	3 Sep 2002 22:28:31 -0000	1.18
+++ vd_vfw.c	4 Sep 2002 22:34:17 -0000	1.19
@@ -45,7 +45,7 @@
 {
     vd_vfw_ctx *priv = sh->context;
     // Works only with opendivx/divx4 based DLL
-    return ICSendMessage(priv->handle, ICM_USER+80, (long)(&quality) ,NULL);
+    return ICSendMessage(priv->handle, ICM_USER+80, (long)(&quality), 0);
 }
 
 static void set_csp(BITMAPINFOHEADER *o_bih,unsigned int outfmt){
@@ -238,7 +238,7 @@
     if(verbose) print_video_header(priv->o_bih);
 
     // set postprocessing level in xvid/divx4 .dll
-    ICSendMessage(priv->handle, ICM_USER+80, (long)(&divx_quality) ,NULL);
+    ICSendMessage(priv->handle, ICM_USER+80, (long)(&divx_quality), 0);
 
     // don't do this palette mess always, it makes div3 dll crashing...
     if((sh->codec->outfmt[sh->outfmtidx]==IMGFMT_BGR8) &&




More information about the MPlayer-cvslog mailing list