fixed muxrates for xvcd and xsvcd

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18188 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2006-04-22 13:31:05 +00:00
parent 6ba9d6ce20
commit 37dae9ebcb
1 changed files with 2 additions and 4 deletions

View File

@ -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