small syntax fix: muxrate is expressed in units of 400 bits/second, not 50 bytes per second

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22942 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2007-04-08 09:50:27 +00:00
parent d2f7526cfc
commit c675883bb4
1 changed files with 1 additions and 1 deletions

View File

@ -499,7 +499,7 @@ static void write_mpeg_ts(unsigned char *b, uint64_t ts, uint8_t mod) {
static void write_mpeg_rate(int type, unsigned char *b, unsigned int rate)
{
rate = (rate+49) / 50;
rate = ((rate*8)+399) / 400;
if(type == MUX_MPEG1)
{