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.
This commit is contained in:
Jan Schmidt 2009-06-04 16:29:31 +01:00
parent b8eb0d5dbb
commit 8eac0482fd

View file

@ -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 *