[MPlayer-cvslog] CVS: main/libmpcodecs vf.c,1.112,1.113

Jindrich Makovicka CVS syncmail at mplayerhq.hu
Tue Mar 8 23:11:52 CET 2005


CVS change done by Jindrich Makovicka CVS

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

Modified Files:
	vf.c 
Log Message:
missing return statement (1e5l for me)

Index: vf.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf.c,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- vf.c	1 Mar 2005 20:21:58 -0000	1.112
+++ vf.c	8 Mar 2005 22:11:49 -0000	1.113
@@ -561,7 +561,7 @@
         if ((vf->fmt.orig_width != width)
 	    || (vf->fmt.orig_height != height)
 	    || (vf->fmt.orig_fmt != outfmt)) {
-            mp_msg(MSGT_VFILTER,MSGL_FATAL,MSGTR_ResolutionDoesntMatch);
+            mp_msg(MSGT_VFILTER,MSGL_ERR,MSGTR_ResolutionDoesntMatch);
             return 0;
         }
         return 1;
@@ -570,7 +570,7 @@
     vf->fmt.orig_height = height;
     vf->fmt.orig_width = width;
     vf->fmt.orig_fmt = outfmt;
-    vf->config(vf, width, height, d_width, d_height, flags, outfmt);
+    return vf->config(vf, width, height, d_width, d_height, flags, outfmt);
 }
 
 int vf_next_config(struct vf_instance_s* vf,




More information about the MPlayer-cvslog mailing list