diff options
author | Lutz Mueller <lutz@topfrose.de> | 2006-07-07 11:44:05 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-07-07 11:44:05 +0000 |
commit | 4af71bd569e4a34f0e06a48557be8b1376f9c022 (patch) | |
tree | ae91af04719dce8233f3222606b9573bf376b4e9 /ext/neon/gstneonhttpsrc.h | |
parent | 430a2ba2ad96b43bae6fc960e9dd77966fc4e91f (diff) | |
download | gst-plugins-bad-4af71bd569e4a34f0e06a48557be8b1376f9c022.tar.gz gst-plugins-bad-4af71bd569e4a34f0e06a48557be8b1376f9c022.tar.bz2 gst-plugins-bad-4af71bd569e4a34f0e06a48557be8b1376f9c022.zip |
ext/neon/gstneonhttpsrc.*: Remove unlock function. start/stop will do everything needed
Original commit message from CVS:
Patch by: Lutz Mueller <lutz at topfrose dot de>
* ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
(gst_neonhttp_src_init), (gst_neonhttp_src_finalize),
(request_dispatch), (gst_neonhttp_src_create),
(gst_neonhttp_src_start), (gst_neonhttp_src_get_size),
(gst_neonhttp_src_stop), (set_proxy), (set_uri),
(gst_neonhttp_src_set_property), (gst_neonhttp_src_get_property),
(gst_neonhttp_src_uri_set_uri), (size_header_handler):
* ext/neon/gstneonhttpsrc.h:
Remove unlock function. start/stop will do everything needed
Removed code that was never called.
Use gst_pad_alloc_buffer. Don't send EOS - parent class does that for us.
Do not escape path. Fixes #346723.
Additional code cleanups.
Diffstat (limited to 'ext/neon/gstneonhttpsrc.h')
-rw-r--r-- | ext/neon/gstneonhttpsrc.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/neon/gstneonhttpsrc.h b/ext/neon/gstneonhttpsrc.h index 6cdcf550..f58d1336 100644 --- a/ext/neon/gstneonhttpsrc.h +++ b/ext/neon/gstneonhttpsrc.h @@ -17,7 +17,6 @@ #include <gst/gst.h> #include <gst/base/gstpushsrc.h> -#include <gst/base/gstadapter.h> #include <stdio.h> G_BEGIN_DECLS @@ -40,12 +39,6 @@ G_BEGIN_DECLS typedef struct _GstNeonhttpSrc GstNeonhttpSrc; typedef struct _GstNeonhttpSrcClass GstNeonhttpSrcClass; -typedef enum { - GST_NEONHTTP_SRC_OPEN = (GST_ELEMENT_FLAG_LAST << 0), - - GST_NEONHTTP_SRC_FLAG_LAST = (GST_ELEMENT_FLAG_LAST << 2) -} GstTCPClientSrcFlags; - struct _GstNeonhttpSrc { GstPushSrc element; @@ -61,8 +54,6 @@ struct _GstNeonhttpSrc { guint64 content_size; - GstAdapter *adapter; - gboolean eos; /* icecast/audiocast metadata extraction handling */ |