summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2011-01-20 16:25:42 +0100
committerWim Taymans <wim.taymans@collabora.co.uk>2011-01-24 16:43:03 +0100
commitb2c09bb67c97c920b2327c29d3a17fb0aca35a04 (patch)
treecc03b365ed347b7f095392cb0428266b719676dd
parent90847134921653a428624d16c6018d13748a8a4c (diff)
uridecodebin: also add https to buffer protocolsrelease
HTTPS also needs buffering.
-rw-r--r--gst/playback/gsturidecodebin.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c
index 715180139..a72c8f2c5 100644
--- a/gst/playback/gsturidecodebin.c
+++ b/gst/playback/gsturidecodebin.c
@@ -942,8 +942,9 @@ array_has_uri_value (const gchar * values[], const gchar * value)
/* list of URIs that we consider to be streams and that need buffering.
* We have no mechanism yet to figure this out with a query. */
-static const gchar *stream_uris[] = { "http://", "mms://", "mmsh://",
- "mmsu://", "mmst://", "fd://", "myth://", "ssh://", "ftp://", "sftp://",
+static const gchar *stream_uris[] = { "http://", "https://", "mms://",
+ "mmsh://", "mmsu://", "mmst://", "fd://", "myth://", "ssh://",
+ "ftp://", "sftp://",
NULL
};