mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
oggdemux: add media type to chain information reports
One more little step in making logs a little less abstruse. https://bugzilla.gnome.org/show_bug.cgi?id=657151
This commit is contained in:
parent
1e606c0456
commit
df40ddf0aa
1 changed files with 2 additions and 1 deletions
|
@ -3688,7 +3688,8 @@ gst_ogg_print (GstOggDemux * ogg)
|
|||
for (j = 0; j < chain->streams->len; j++) {
|
||||
GstOggPad *stream = g_array_index (chain->streams, GstOggPad *, j);
|
||||
|
||||
GST_INFO_OBJECT (ogg, " stream %08x:", stream->map.serialno);
|
||||
GST_INFO_OBJECT (ogg, " stream %08x: %s", stream->map.serialno,
|
||||
gst_ogg_stream_get_media_type (&stream->map));
|
||||
GST_INFO_OBJECT (ogg, " start time: %" GST_TIME_FORMAT,
|
||||
GST_TIME_ARGS (stream->start_time));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue