From a38ada61e334624c48975843c88bc63bfc92b9ff Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Fri, 31 Oct 2014 17:32:56 -0300 Subject: [PATCH] mssdemux: add type of stream to debug log Makes it faster to debug why certain streams are not showing --- ext/smoothstreaming/gstmssmanifest.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/smoothstreaming/gstmssmanifest.c b/ext/smoothstreaming/gstmssmanifest.c index 5582b03012..f8ccb4075c 100644 --- a/ext/smoothstreaming/gstmssmanifest.c +++ b/ext/smoothstreaming/gstmssmanifest.c @@ -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;