[MPlayer-cvslog] r22134 - trunk/libmpcodecs/vf_yadif.c
Uoti Urpala
uoti.urpala at pp1.inet.fi
Mon Feb 5 02:27:47 CET 2007
On Mon, 2007-02-05 at 01:46 +0100, michael wrote:
> - return vf->priv->do_deinterlace?
> - continue_buffered_image(vf):
> - vf_next_put_image(vf, mpi, pts);
> + if(vf->priv->do_deinterlace == 0)
> + return vf_next_put_image(vf, mpi, pts);
> + else if(vf->priv->do_deinterlace == 1){
> + vf->priv->do_deinterlace= 2;
> + return 0;
> + }else
> + continue_buffered_image(vf);
> }
Last line should be "return continue_buffered_image(vf);".
More information about the MPlayer-cvslog
mailing list