diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-01-20 16:25:42 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-01-24 16:43:03 +0100 |
commit | b2c09bb67c97c920b2327c29d3a17fb0aca35a04 (patch) | |
tree | cc03b365ed347b7f095392cb0428266b719676dd | |
parent | 90847134921653a428624d16c6018d13748a8a4c (diff) |
uridecodebin: also add https to buffer protocolsrelease
HTTPS also needs buffering.
-rw-r--r-- | gst/playback/gsturidecodebin.c | 5 |
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 }; |