mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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:
parent
b8eb0d5dbb
commit
8eac0482fd
1 changed files with 3 additions and 1 deletions
|
@ -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 *
|
||||
|
|
Loading…
Reference in a new issue