[MPlayer-cvslog] CVS: main/libmpcodecs vf_ivtc.c,1.5,1.6
Richard Felker CVS
syncmail at mplayerhq.hu
Sun Mar 12 19:31:53 CET 2006
CVS change done by Richard Felker CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv15422
Modified Files:
vf_ivtc.c
Log Message:
10l found by Oded: case 2 on a boolean value...
Index: vf_ivtc.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_ivtc.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vf_ivtc.c 18 Nov 2005 14:39:23 -0000 1.5
+++ vf_ivtc.c 12 Mar 2006 18:31:50 -0000 1.6
@@ -426,9 +426,9 @@
static int do_put_image(struct vf_instance_s* vf, mp_image_t *dmpi)
{
struct vf_priv_s *p = vf->priv;
- int dropflag;
+ int dropflag=0;
- switch (p->drop && !p->dropnext) {
+ if (!p->dropnext) switch (p->drop) {
case 0:
dropflag = 0;
break;
More information about the MPlayer-cvslog
mailing list