# HG changeset patch # User henry # Date 1110319909 0 # Node ID c36a814cdca025ec3b69358d04ab27956f94b987 # Parent 3febdb2983e0a13caa98bc14bf3910b969615761 missing return statement (1e5l for me) diff -r 3febdb2983e0 -r c36a814cdca0 libmpcodecs/vf.c --- a/libmpcodecs/vf.c Mon Mar 07 22:45:47 2005 +0000 +++ b/libmpcodecs/vf.c Tue Mar 08 22:11:49 2005 +0000 @@ -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,