summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorhenry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-03-08 22:11:49 +0000
committerhenry <henry@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-03-08 22:11:49 +0000
commit893a48026ece57076b33fafb21e816561b5b3d46 (patch)
tree493facb6f00aafecd8dd7fd1036ca759bbfb6b3c /libmpcodecs
parent0046a87017f0231f228683bbe0358ebf207f69a5 (diff)
downloadmpv-893a48026ece57076b33fafb21e816561b5b3d46.tar.bz2
mpv-893a48026ece57076b33fafb21e816561b5b3d46.tar.xz
missing return statement (1e5l for me)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14931 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/vf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpcodecs/vf.c b/libmpcodecs/vf.c
index e510d99e31..f80d15fe3a 100644
--- a/libmpcodecs/vf.c
+++ b/libmpcodecs/vf.c
@@ -561,7 +561,7 @@ int vf_config_wrapper(struct vf_instance_s* vf,
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 @@ int vf_config_wrapper(struct vf_instance_s* vf,
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,