diff options
author | Jan Schmidt <thaytan@noraisin.net> | 2009-03-16 20:31:58 +0000 |
---|---|---|
committer | Dave Robillard <dave@drobilla.net> | 2009-05-03 12:03:13 -0400 |
commit | 617791c23379946cdbaa6478b92a41fd4dc5aaf2 (patch) | |
tree | 76980fa97acc21429e0fd80d8b2bec470f4c45fc /ext | |
parent | e4e134b4c4d1bee3e88ddb298640167fd5bb41c7 (diff) | |
download | gst-plugins-bad-617791c23379946cdbaa6478b92a41fd4dc5aaf2.tar.gz gst-plugins-bad-617791c23379946cdbaa6478b92a41fd4dc5aaf2.tar.bz2 gst-plugins-bad-617791c23379946cdbaa6478b92a41fd4dc5aaf2.zip |
resindvd: Add some debug when creating the output pads in the demuxer
Diffstat (limited to 'ext')
-rw-r--r-- | ext/resindvd/gstmpegdemux.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/ext/resindvd/gstmpegdemux.c b/ext/resindvd/gstmpegdemux.c index 99049cea..bee7f43f 100644 --- a/ext/resindvd/gstmpegdemux.c +++ b/ext/resindvd/gstmpegdemux.c @@ -591,7 +591,7 @@ gst_flups_demux_handle_dvd_event (GstFluPSDemux * demux, GstEvent * event) GST_DEBUG_OBJECT (demux, "Handling language codes event"); - /* Create a video pad to ensure it exists before emit no more pads */ + /* Create a video pad to ensure it exists before emitting no more pads */ temp = gst_flups_demux_get_stream (demux, 0xe0, ST_VIDEO_MPEG2); /* Send a video format event downstream */ { @@ -623,11 +623,13 @@ gst_flups_demux_handle_dvd_event (GstFluPSDemux * demux, GstEvent * event) continue; demux->audio_stream_types[i] = stream_format; - switch (stream_format) { case 0x0: /* AC3 */ stream_id = 0x80 + i; + GST_DEBUG_OBJECT (demux, + "Audio stream %d format %d ID 0x%02x - AC3", i, + stream_format, stream_id); temp = gst_flups_demux_get_stream (demux, stream_id, ST_PS_AUDIO_AC3); break; case 0x2: @@ -635,17 +637,26 @@ gst_flups_demux_handle_dvd_event (GstFluPSDemux * demux, GstEvent * event) /* MPEG audio without and with extension stream are * treated the same */ stream_id = 0xC0 + i; + GST_DEBUG_OBJECT (demux, + "Audio stream %d format %d ID 0x%02x - MPEG audio", i, + stream_format, stream_id); temp = gst_flups_demux_get_stream (demux, stream_id, ST_AUDIO_MPEG1); break; case 0x4: /* LPCM */ stream_id = 0xA0 + i; + GST_DEBUG_OBJECT (demux, + "Audio stream %d format %d ID 0x%02x - DVD LPCM", i, + stream_format, stream_id); temp = gst_flups_demux_get_stream (demux, stream_id, ST_PS_AUDIO_LPCM); break; case 0x6: /* DTS */ stream_id = 0x88 + i; + GST_DEBUG_OBJECT (demux, + "Audio stream %d format %d ID 0x%02x - DTS", i, + stream_format, stream_id); temp = gst_flups_demux_get_stream (demux, stream_id, ST_PS_AUDIO_DTS); break; case 0x7: @@ -668,6 +679,8 @@ gst_flups_demux_handle_dvd_event (GstFluPSDemux * demux, GstEvent * event) if (!gst_structure_get_int (structure, cur_stream_name, &stream_format)) continue; + GST_DEBUG_OBJECT (demux, "Subpicture stream %d ID 0x%02x", i, 0x20 + i); + /* Retrieve the subpicture stream to force pad creation */ temp = gst_flups_demux_get_stream (demux, 0x20 + i, ST_PS_DVD_SUBPICTURE); } |