From 133f804d2d5ff1e9c6c58e41849507f39137e489 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 25 Mar 2010 18:45:48 +0100 Subject: [PATCH] uridecodebin: we can handle avi in download mode too Add avi to the whitelisted types that can be used for download buffering. --- gst/playback/gsturidecodebin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c index 24ad7b0132..0600ec079d 100644 --- a/gst/playback/gsturidecodebin.c +++ b/gst/playback/gsturidecodebin.c @@ -888,7 +888,7 @@ static const gchar *no_media_mimes[] = { /* media types we can download */ static const gchar *download_media[] = { - "video/quicktime", "video/x-flv", NULL + "video/quicktime", "video/x-flv", "video/x-msvideo", NULL }; #define IS_STREAM_URI(uri) (array_has_uri_value (stream_uris, uri))