mirror of
https://github.com/mpv-player/mpv
synced 2025-02-07 23:51:49 +00:00
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:
parent
6ba9d6ce20
commit
37dae9ebcb
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user