[MPlayer-cvslog] CVS: main/libmpcodecs vf_screenshot.c,1.6,1.7

Reimar Döffinger CVS syncmail at mplayerhq.hu
Sun Oct 30 09:45:26 CET 2005


CVS change done by Reimar Döffinger CVS

Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv3425

Modified Files:
	vf_screenshot.c 
Log Message:
10l, uninit() was not used, fixes bug #401
Modified patch from T. Dekker (t dekker <at> student utwente nl)


Index: vf_screenshot.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_screenshot.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- vf_screenshot.c	12 Sep 2005 18:33:26 -0000	1.6
+++ vf_screenshot.c	30 Oct 2005 08:45:24 -0000	1.7
@@ -261,6 +261,7 @@
     return 0;
 }
 
+static void uninit(vf_instance_t *vf);
 // open conflicts with stdio.h at least under MinGW
 static int screenshot_open(vf_instance_t *vf, char* args)
 {
@@ -271,6 +272,7 @@
     vf->start_slice=start_slice;
     vf->draw_slice=draw_slice;
     vf->get_image=get_image;
+    vf->uninit=uninit;
     vf->priv=malloc(sizeof(struct vf_priv_s));
     vf->priv->frameno=0;
     vf->priv->shot=0;




More information about the MPlayer-cvslog mailing list