mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
hlsdemux2: Dump init uri details for segments.
When dumping an m3u8 playlist to debug, include information about any initialisation data. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3883>
This commit is contained in:
parent
2c82fdf276
commit
e1a6ec22ee
1 changed files with 6 additions and 0 deletions
|
@ -478,6 +478,12 @@ gst_hls_media_playlist_dump (GstHLSMediaPlaylist * self)
|
|||
GST_DEBUG (" date/time : %s", datestring);
|
||||
g_free (datestring);
|
||||
}
|
||||
if (segment->init_file) {
|
||||
GST_DEBUG (" init file : %s %" G_GUINT64_FORMAT " %" G_GINT64_FORMAT,
|
||||
segment->init_file->uri, segment->init_file->offset,
|
||||
segment->init_file->size);
|
||||
}
|
||||
|
||||
GST_DEBUG (" uri : %s %" G_GUINT64_FORMAT " %" G_GINT64_FORMAT,
|
||||
segment->uri, segment->offset, segment->size);
|
||||
|
||||
|
|
Loading…
Reference in a new issue