summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2009-06-30 18:44:44 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2009-06-30 18:44:44 +0200
commite8598d24e5e736850e521f71a93f3b92eff32d0e (patch)
tree3a86bc524ea6b7e1df3d11e3f9f9af7388729c66
parentc1f46ea29e1f8fc6a089b887923fba70b58912e8 (diff)
uridecodebin: make fd:// uri use buffering too
fd:// usually operate in push mode only and are thus suitable for buffering.
-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 6effdaa71..68ee087a3 100644
--- a/gst/playback/gsturidecodebin.c
+++ b/gst/playback/gsturidecodebin.c
@@ -752,13 +752,13 @@ array_has_value (const gchar * values[], const gchar * value)
return FALSE;
}
/* 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://", NULL
+ "mmsu://", "mmst://", "fd://", NULL
};
/* list of URIs that need a queue because they are pretty bursty */
static const gchar *queue_uris[] = { "cdda://", NULL };
/* blacklisted URIs, we know they will always fail. */