From 1fb7c7e5dc9b7dae777ba0ea0a139e42c2354938 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 20 Jan 2011 16:25:42 +0100 Subject: [PATCH] uridecodebin: also add https to buffer protocols HTTPS also needs buffering. --- gst/playback/gsturidecodebin.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c index 7151801397..a72c8f2c58 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 };