diff options
author | Jan Schmidt <thaytan@noraisin.net> | 2009-06-04 16:29:31 +0100 |
---|---|---|
committer | Jan Schmidt <thaytan@noraisin.net> | 2009-06-04 16:29:31 +0100 |
commit | 8eac0482fdebf7bd8874daa18d9ca0bd4e6a6901 (patch) | |
tree | 1e5604119d1652d9b73a5382e37d50f5923e2915 /gst/mpegdemux | |
parent | b8eb0d5dbbd292a32e0726249d8b3e9aea91ca3e (diff) | |
download | gstreamer-plugins-bad-8eac0482fdebf7bd8874daa18d9ca0bd4e6a6901.tar.gz |
mpegdemux: Add a GST_MEMDUMP line in the descriptor parsing
Make it possible to see descriptor contents in the debug output
(GST_DEBUG=mpegtsdesc:9), and remove a stray semi-colon.
Diffstat (limited to 'gst/mpegdemux')
-rw-r--r-- | gst/mpegdemux/gstmpegdesc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/mpegdemux/gstmpegdesc.c b/gst/mpegdemux/gstmpegdesc.c index 4c88e1fd6..0a9858975 100644 --- a/gst/mpegdemux/gstmpegdesc.c +++ b/gst/mpegdemux/gstmpegdesc.c @@ -65,7 +65,9 @@ gst_mpeg_descriptor_parse_1 (guint8 * data, guint size) if (length > size) return 0; - return length + 2;; + GST_MEMDUMP ("tag contents:", data, length); + + return length + 2; } GstMPEGDescriptor * |