[MPlayer-cvslog] CVS: main/libmpdemux muxer_mpeg.c,1.52,1.53

Nico Sabbi CVS syncmail at mplayerhq.hu
Sat Apr 22 15:31:07 CEST 2006


CVS change done by Nico Sabbi CVS

Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv15783

Modified Files:
	muxer_mpeg.c 
Log Message:
fixed muxrates for xvcd and xsvcd

Index: muxer_mpeg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/muxer_mpeg.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- muxer_mpeg.c	22 Apr 2006 13:25:46 -0000	1.52
+++ muxer_mpeg.c	22 Apr 2006 13:31:05 -0000	1.53
@@ -2569,8 +2569,7 @@
 	priv->mux = MUX_MPEG2;
 	priv->is_xsvcd = 1;
 	priv->packet_size = 2324;
-	//what's the right muxrate?
-	priv->muxrate = 2788 * 125;
+	priv->muxrate = 150*2324;
 	priv->ts_allframes = 1;
     }
     else if(! strcasecmp(conf_mux, "xvcd"))
@@ -2578,8 +2577,7 @@
 	priv->mux = MUX_MPEG1;
 	priv->is_xvcd = 1;
 	priv->packet_size = 2324;
-	//what's the right muxrate?
-	priv->muxrate = 1394 * 125;
+	priv->muxrate = 75*2352;
 	priv->ts_allframes = 1;
     }
     else




More information about the MPlayer-cvslog mailing list