summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-04-13 13:06:39 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-04-13 13:06:39 +0000
commit940ae718851291ae1dee7d1ab88ea99f8d2a4dfd (patch)
treefb82619be69ec8e3057e3e03e941559de015e7c9
parent75ad5867a9cbc5267a3896203b28397719c6d888 (diff)
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.
-rw-r--r--ChangeLog6
-rw-r--r--ext/soup/gstsouphttpsrc.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3cdf52eb..ec07a2b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-04-13 Sebastian Dröge <slomo@circular-chaos.org>
+
+ * 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 <jan.schmidt@sun.com>
* 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);
}