diff options
author | René Stadler <mail@renestadler.de> | 2007-06-01 09:58:01 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2007-06-01 09:58:01 +0000 |
commit | c10bf9272b8d410f81e35839a2ee072925b7f01c (patch) | |
tree | ca196a628ef862ff5ec208b2b277ab87d6f82091 /ext/neon/gstneonhttpsrc.h | |
parent | 8dbb65ff36d377364b935ef6274d939b1482da1e (diff) | |
download | gst-plugins-bad-c10bf9272b8d410f81e35839a2ee072925b7f01c.tar.gz gst-plugins-bad-c10bf9272b8d410f81e35839a2ee072925b7f01c.tar.bz2 gst-plugins-bad-c10bf9272b8d410f81e35839a2ee072925b7f01c.zip |
ext/neon/gstneonhttpsrc.*: Deprecated "uri" property. Clean up property descriptions.
Original commit message from CVS:
Patch by René Stadler <mail at renestadler dot de>:
* ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
(gst_neonhttp_src_init), (gst_neonhttp_src_dispose),
(gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
(gst_neonhttp_src_start), (gst_neonhttp_src_do_seek),
(gst_neonhttp_src_set_location),
(gst_neonhttp_src_send_request_and_redirect),
(gst_neonhttp_src_uri_get_uri), (gst_neonhttp_src_uri_set_uri):
* ext/neon/gstneonhttpsrc.h:
Deprecated "uri" property. Clean up property descriptions.
Change default User-Agent to the slightly more descriptive
"GStreamer neonhttpsrc".
Various other small cleanups, mostly property related.
Diffstat (limited to 'ext/neon/gstneonhttpsrc.h')
-rw-r--r-- | ext/neon/gstneonhttpsrc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/neon/gstneonhttpsrc.h b/ext/neon/gstneonhttpsrc.h index 2f5fc4d8..f5f759e4 100644 --- a/ext/neon/gstneonhttpsrc.h +++ b/ext/neon/gstneonhttpsrc.h @@ -48,7 +48,7 @@ struct _GstNeonhttpSrc { ne_session *session; ne_request *request; ne_uri uri; - gchar *uristr; + gchar *location; ne_uri proxy; gchar *user_agent; @@ -65,10 +65,10 @@ struct _GstNeonhttpSrc { gint icy_metaint; /* enable Neon HTTP redirects (HTTP 302 status code) */ - gboolean neon_http_redirect; + gboolean automatic_redirect; /* enable Neon HTTP debug messages */ - gboolean neon_http_msgs_dbg; + gboolean neon_http_debug; gint64 read_position; gboolean seekable; |