gst/mpegstream/gstmpegparse.c: fix synchronistation for streams recorded from digital PCR fixes bug #119376

Original commit message from CVS:
* gst/mpegstream/gstmpegparse.c:
fix synchronistation for streams recorded from digital PCR
fixes bug #119376
This commit is contained in:
Stéphane Loeuillet 2004-09-13 18:56:32 +00:00
parent 06ccfdb3c8
commit 38ef93527b
2 changed files with 13 additions and 3 deletions

View file

@ -4,6 +4,12 @@
(gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
Handle double disposals, and proper change of URIs.
2004-09-13 Martin Eikermann <meiker@upb.de>
* gst/mpegstream/gstmpegparse.c:
fix synchronistation for streams recorded from digital PCR
fixes bug #119376
2004-09-13 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
* ext/gnomevfs/Makefile.am:

View file

@ -347,7 +347,7 @@ static gboolean
gst_mpeg_parse_parse_packhead (GstMPEGParse * mpeg_parse, GstBuffer * buffer)
{
guint8 *buf;
guint64 scr;
guint64 prev_scr, scr;
guint32 scr1, scr2;
guint32 new_rate;
@ -391,9 +391,9 @@ gst_mpeg_parse_parse_packhead (GstMPEGParse * mpeg_parse, GstBuffer * buffer)
new_rate |= buf[2] >> 1;
}
prev_scr = mpeg_parse->current_scr;
mpeg_parse->current_scr = scr;
mpeg_parse->scr_pending = FALSE;
mpeg_parse->bytes_since_scr = 0;
if (mpeg_parse->next_scr == -1) {
mpeg_parse->next_scr = mpeg_parse->current_scr;
@ -436,7 +436,11 @@ gst_mpeg_parse_parse_packhead (GstMPEGParse * mpeg_parse, GstBuffer * buffer)
}
if (mpeg_parse->mux_rate != new_rate) {
mpeg_parse->mux_rate = new_rate;
mpeg_parse->mux_rate =
(double) mpeg_parse->bytes_since_scr /
MPEGTIME_TO_GSTTIME (mpeg_parse->current_scr -
prev_scr) / 50 * 1000000000;
mpeg_parse->bytes_since_scr = 0;
//gst_mpeg_parse_update_streaminfo (mpeg_parse);
GST_DEBUG ("stream is %1.3fMbs", (mpeg_parse->mux_rate * 400) / 1000000.0);