From 37dae9ebcbf49853f561cea60e634e6be59e7b78 Mon Sep 17 00:00:00 2001 From: nicodvb Date: Sat, 22 Apr 2006 13:31:05 +0000 Subject: [PATCH] fixed muxrates for xvcd and xsvcd git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18188 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpdemux/muxer_mpeg.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libmpdemux/muxer_mpeg.c b/libmpdemux/muxer_mpeg.c index 2fb514b885..87014f65c9 100644 --- a/libmpdemux/muxer_mpeg.c +++ b/libmpdemux/muxer_mpeg.c @@ -2569,8 +2569,7 @@ int muxer_init_muxer_mpeg(muxer_t *muxer){ 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 @@ int muxer_init_muxer_mpeg(muxer_t *muxer){ 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