mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +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;
|
ret = MSS_STREAM_TYPE_VIDEO;
|
||||||
} else if (strcmp (prop, "audio") == 0) {
|
} else if (strcmp (prop, "audio") == 0) {
|
||||||
ret = MSS_STREAM_TYPE_AUDIO;
|
ret = MSS_STREAM_TYPE_AUDIO;
|
||||||
|
} else {
|
||||||
|
GST_DEBUG ("Unsupported stream type: %s", prop);
|
||||||
}
|
}
|
||||||
xmlFree (prop);
|
xmlFree (prop);
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue