From 940ae718851291ae1dee7d1ab88ea99f8d2a4dfd Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Sun, 13 Apr 2008 13:06:39 +0000 Subject: ext/soup/gstsouphttpsrc.c: Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source over gnome-vfs and ev... Original commit message from CVS: * ext/soup/gstsouphttpsrc.c: (plugin_init): Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source over gnome-vfs and everything else. Fixes bug #527848. --- ChangeLog | 6 ++++++ ext/soup/gstsouphttpsrc.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3cdf52eb..ec07a2b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-13 Sebastian Dröge + + * ext/soup/gstsouphttpsrc.c: (plugin_init): + Give souphttpsrc GST_RANK_PRIMARY to make it the default HTTP source + over gnome-vfs and everything else. Fixes bug #527848. + 2008-04-13 Jan Schmidt * configure.ac: diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c index baf29438..eb83647d 100644 --- a/ext/soup/gstsouphttpsrc.c +++ b/ext/soup/gstsouphttpsrc.c @@ -1173,7 +1173,7 @@ gst_soup_http_src_uri_handler_init (gpointer g_iface, gpointer iface_data) static gboolean plugin_init (GstPlugin * plugin) { - return gst_element_register (plugin, "souphttpsrc", GST_RANK_MARGINAL, + return gst_element_register (plugin, "souphttpsrc", GST_RANK_PRIMARY, GST_TYPE_SOUP_HTTP_SRC); } -- cgit