Brought standard elements in line with new state management system.
[platform/upstream/gstreamer.git] / plugins / elements / gsthttpsrc.h
1 /* Gnome-Streamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #ifndef __GST_HTTPSRC_H__
22 #define __GST_HTTPSRC_H__
23
24
25 #include <config.h>
26 #include <gst/gst.h>
27
28 #include <ghttp.h>
29
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif /* __cplusplus */
34
35
36 GstElementDetails gst_httpsrc_details;
37
38
39 #define GST_TYPE_HTTPSRC \
40   (gst_httpsrc_get_type())
41 #define GST_HTTPSRC(obj) \
42   (GTK_CHECK_CAST((obj),GST_TYPE_HTTPSRC,GstHttpSrc))
43 #define GST_HTTPSRC_CLASS(klass) \
44   (GTK_CHECK_CLASS_CAST((klass),GST_TYPE_HTTPSRC,GstHttpSrcClass))
45 #define GST_IS_HTTPSRC(obj) \
46   (GTK_CHECK_TYPE((obj),GST_TYPE_HTTPSRC))
47 #define GST_IS_HTTPSRC_CLASS(obj) \
48   (GTK_CHECK_CLASS_TYPE((klass),GST_TYPE_HTTPSRC)))
49
50 // NOTE: per-element flags start with 16 for now
51 typedef enum {
52   GST_HTTPSRC_OPEN              = (1 << 16),
53 } GstHttpSrcFlags;
54
55 typedef struct _GstHttpSrc GstHttpSrc;
56 typedef struct _GstHttpSrcClass GstHttpSrcClass;
57
58 struct _GstHttpSrc {
59   GstSrc src;
60   /* pads */
61   GstPad *srcpad;
62
63   gchar *url;
64   ghttp_request *request;
65   int fd;
66
67   gulong curoffset;                     /* current offset in file */
68   gulong bytes_per_read;                /* bytes per read */
69 };
70
71 struct _GstHttpSrcClass {
72   GstSrcClass parent_class;
73 };
74
75 GtkType gst_httpsrc_get_type(void);
76
77 #ifdef __cplusplus
78 }
79 #endif /* __cplusplus */
80
81
82 #endif /* __GST_HTTPSRC_H__ */