summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-22 13:31:05 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-22 13:31:05 +0000
commit37dae9ebcbf49853f561cea60e634e6be59e7b78 (patch)
tree2fde6310eda1b9a1003614d9aee9af097d2bea12 /libmpdemux
parent6ba9d6ce2035a357e04f3cca7debeda77b3462d8 (diff)
downloadmpv-37dae9ebcbf49853f561cea60e634e6be59e7b78.tar.bz2
mpv-37dae9ebcbf49853f561cea60e634e6be59e7b78.tar.xz
fixed muxrates for xvcd and xsvcd
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18188 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/muxer_mpeg.c6
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