mssdemux: add type of stream to debug log

Makes it faster to debug why certain streams are not showing
This commit is contained in:
Thiago Santos 2014-10-31 17:32:56 -03:00 committed by Thiago Santos
parent e644b5e6ae
commit a38ada61e3

View file

@ -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;