diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-04-22 13:31:05 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-04-22 13:31:05 +0000 |
commit | 37dae9ebcbf49853f561cea60e634e6be59e7b78 (patch) | |
tree | 2fde6310eda1b9a1003614d9aee9af097d2bea12 | |
parent | 6ba9d6ce2035a357e04f3cca7debeda77b3462d8 (diff) |
fixed muxrates for xvcd and xsvcd
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18188 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpdemux/muxer_mpeg.c | 6 |
1 files 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 |