From 29471dd7c7bc9f1ef2ea6712a1482309dd9c71d7 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sat, 2 Nov 2002 13:40:30 +0000 Subject: [PATCH] Write some more debugging entries in the log Original commit message from CVS: Write some more debugging entries in the log --- gst/mpegstream/gstmpegdemux.c | 5 ++++- gst/mpegstream/gstmpegparse.c | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gst/mpegstream/gstmpegdemux.c b/gst/mpegstream/gstmpegdemux.c index a8e670fd2f..31bd64d4fd 100644 --- a/gst/mpegstream/gstmpegdemux.c +++ b/gst/mpegstream/gstmpegdemux.c @@ -235,7 +235,6 @@ gst_mpeg_demux_send_data (GstMPEGParse *mpeg_parse, GstData *data, GstClockTime switch (GST_EVENT_TYPE (event)) { default: - //g_print ("demux: default event %d\n", GST_EVENT_TYPE (event)); gst_pad_event_default (mpeg_parse->sinkpad, event); break; } @@ -727,6 +726,10 @@ gst_mpeg_demux_parse_pes (GstMPEGParse *mpeg_parse, GstBuffer *buffer) headerlen += 1; datalen -= 1; } + else { + GST_DEBUG (0,"mpeg_demux::parse_packet: 0x%02X: unkonwn id %x", + id, ps_id_code); + } /* private_stream_1 */ } else if (id == 0xBF) { GST_DEBUG (0,"mpeg_demux: we have a private_stream_2 packet"); diff --git a/gst/mpegstream/gstmpegparse.c b/gst/mpegstream/gstmpegparse.c index cff84b1867..46dc3e4035 100644 --- a/gst/mpegstream/gstmpegparse.c +++ b/gst/mpegstream/gstmpegparse.c @@ -306,6 +306,8 @@ gst_mpeg_parse_parse_packhead (GstMPEGParse *mpeg_parse, GstBuffer *buffer) MPEGTIME_TO_GSTTIME (mpeg_parse->current_scr)); if (mpeg_parse->previous_scr > mpeg_parse->current_scr) { + GST_DEBUG (0, "mpeg_parse: discontinuity detected %llu (%llu)", + mpeg_parse->previous_scr, mpeg_parse->current_scr); mpeg_parse->discont_pending = TRUE; }