mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
mssdemux: add type of stream to debug log
Makes it faster to debug why certain streams are not showing
This commit is contained in:
parent
e644b5e6ae
commit
a38ada61e3
1 changed files with 2 additions and 0 deletions
|
@ -304,6 +304,8 @@ gst_mss_stream_get_type (GstMssStream * stream)
|
|||
ret = MSS_STREAM_TYPE_VIDEO;
|
||||
} else if (strcmp (prop, "audio") == 0) {
|
||||
ret = MSS_STREAM_TYPE_AUDIO;
|
||||
} else {
|
||||
GST_DEBUG ("Unsupported stream type: %s", prop);
|
||||
}
|
||||
xmlFree (prop);
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue