diff options
-rw-r--r-- | ChangeLog | 5 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | ext/neon/gstneonhttpsrc.c | 3 |
3 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-05-12 David Schleef <ds@schleef.org> + + * ext/neon/gstneonhttpsrc.c: + Make redirection the default behavior. Fixes #413818. + 2007-05-10 Stefan Kost <ensonic@users.sf.net> * gst/qtdemux/qtdemux.c (gst_qtdemux_move_stream, diff --git a/common b/common -Subproject 1b4fb5836a9e290fe13895643d41e0166de8a94 +Subproject b5971d76ccd216c27e095c02c3a369a9d05cb36 diff --git a/ext/neon/gstneonhttpsrc.c b/ext/neon/gstneonhttpsrc.c index eba4ac0f..4fa06e0a 100644 --- a/ext/neon/gstneonhttpsrc.c +++ b/ext/neon/gstneonhttpsrc.c @@ -204,7 +204,7 @@ gst_neonhttp_src_class_init (GstNeonhttpSrcClass * klass) (gobject_class, PROP_NEON_HTTP_REDIRECT, g_param_spec_boolean ("automatic-redirect", "automatic-redirect", "Enable Neon HTTP Redirects (HTTP Status Code 302)", - FALSE, G_PARAM_READWRITE)); + TRUE, G_PARAM_READWRITE)); #ifndef GST_DISABLE_GST_DEBUG g_object_class_install_property @@ -254,6 +254,7 @@ gst_neonhttp_src_init (GstNeonhttpSrc * src, GstNeonhttpSrcClass * g_class) src->icy_metaint = 0; src->user_agent = g_strdup ("neonhttpsrc"); src->seekable = TRUE; + src->neon_http_redirect = TRUE; } static void |