Commit 24305848 authored by Christophe Massiot's avatar Christophe Massiot

A BIG kludge for the calculation of mux_rate, so that times displayed in

the scroll bar are now correct for MPEG-2 streams. There is probably a
better way to do it, but I haven't found in months.
parent d0c9b479
...@@ -57,6 +57,11 @@ HEAD ...@@ -57,6 +57,11 @@ HEAD
leakage). leakage).
* Added IDEALX developer documentation in doc/. * Added IDEALX developer documentation in doc/.
* Removed the outdated generic decoder. * Removed the outdated generic decoder.
* Rewrote the video decoder so that it can use multiple processors (--smp).
* Fixed a bug in the video decoder initialization.
* Grayscale mode now turns off chroma IDCT decoding.
* Kludged so that times displayed in the scrollbar are finally correct
for MPEG-2 streams.
0.2.80 0.2.80
Tue, 5 Jun 2001 04:41:06 +0200 Tue, 5 Jun 2001 04:41:06 +0200
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mpeg_system.c: TS, PS and PES management * mpeg_system.c: TS, PS and PES management
***************************************************************************** *****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN * Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: mpeg_system.c,v 1.55 2001/07/17 09:48:08 massiot Exp $ * $Id: mpeg_system.c,v 1.56 2001/07/18 15:21:51 massiot Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr> * Michel Lespinasse <walken@via.ecp.fr>
...@@ -829,6 +829,12 @@ void input_DemuxPS( input_thread_t * p_input, data_packet_t * p_data ) ...@@ -829,6 +829,12 @@ void input_DemuxPS( input_thread_t * p_input, data_packet_t * p_data )
/* mux_rate */ /* mux_rate */
i_mux_rate = ((u32)U16_AT(p_header + 10) << 6) i_mux_rate = ((u32)U16_AT(p_header + 10) << 6)
| (p_header[12] >> 2); | (p_header[12] >> 2);
/* FIXME FIXME FIXME FIXME FIXME FIXME FIXME FIXME
* This is the biggest kludge ever !
* I don't know what's wrong with mux_rate calculation
* but this heuristic work well : */
i_mux_rate <<= 1;
i_mux_rate /= 3;
} }
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment