summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-09-16 19:53:35 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-09-16 19:54:43 +0200
commit2a1e046dd9853fb13caf80e3b3bc11fbcae09d86 (patch)
treefb7a97f766f5db1e4d0a02394bcb0b32de1916b5
parenta7bcdc3608b7e21ff4c2a18eb211238cdabfa355 (diff)
downloadgstreamer-plugins-base-2a1e046dd9853fb13caf80e3b3bc11fbcae09d86.tar.gz
uridecodebin: Use the correct caps name for MS Smooth Streaming manifests
Thanks to John Chang <r97922153@gmail.com> for reporting. https://bugzilla.gnome.org/show_bug.cgi?id=755098
-rw-r--r--gst/playback/gsturidecodebin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c
index 784d01063..24e442780 100644
--- a/gst/playback/gsturidecodebin.c
+++ b/gst/playback/gsturidecodebin.c
@@ -1288,7 +1288,7 @@ static const gchar *blacklisted_uris[] = { NULL };
/* media types that use adaptive streaming */
static const gchar *adaptive_media[] = {
- "application/x-hls", "application/x-smoothstreaming-manifest",
+ "application/x-hls", "application/vnd.ms-sstr+xml",
"application/dash+xml", NULL
};