1
mirror of https://github.com/mpv-player/mpv synced 2025-01-20 21:07:29 +01:00

missing return statement (1e5l for me)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14931 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
henry 2005-03-08 22:11:49 +00:00
parent 0046a87017
commit 893a48026e

View File

@ -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,