[MPlayer-cvslog] CVS: main/libmpdemux muxer_mpeg.c,1.35,1.36
    Nico Sabbi CVS 
    syncmail at mplayerhq.hu
       
    Fri Feb 10 23:28:35 CET 2006
    
    
  
CVS change done by Nico Sabbi CVS
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv15040
Modified Files:
	muxer_mpeg.c 
Log Message:
tff wasn't correctly unset in soft_telecine()
Index: muxer_mpeg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/muxer_mpeg.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- muxer_mpeg.c	6 Feb 2006 21:22:30 -0000	1.35
+++ muxer_mpeg.c	10 Feb 2006 22:28:32 -0000	1.36
@@ -1828,7 +1828,7 @@
 	tff = (vpriv->trf & 0x2) ? 0x80 : 0;
 	rff = (vpriv->trf & 0x1) ? 0x2 : 0;
 	mp_msg(MSGT_MUXER, MSGL_DBG2, "\nTRF: %d, TFF: %d, RFF: %d, n: %d\n", vpriv->trf, tff >> 7, rff >> 1, n);
-	pce_ptr[3] = (pce_ptr[3] & 0xfd) | tff | rff;
+	pce_ptr[3] = (pce_ptr[3] & 0x7d) | tff | rff;
 	pce_ptr[4] |= 0x80;	//sets progressive frame
 	
 	if(! vpriv->vframes)
    
    
More information about the MPlayer-cvslog
mailing list