gst-indent
[platform/upstream/gst-plugins-good.git] / ext / shout2 / gstshout2.h
1 /* GStreamer
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_SHOUT2SEND_H__
22 #define __GST_SHOUT2SEND_H__
23
24 #include <gst/gst.h>
25 #include <shout/shout.h>
26
27 #ifdef __cplusplus
28 extern "C"
29 {
30 #endif                          /* __cplusplus */
31
32   /* Protocol type enum */
33   typedef enum
34   {
35     SHOUT2SEND_PROTOCOL_ICE = 1,
36     SHOUT2SEND_PROTOCOL_XAUDIOCAST,
37     SHOUT2SEND_PROTOCOL_ICY,
38     SHOUT2SEND_PROTOCOL_HTTP
39   } GstShout2SendProtocol;
40
41
42 /* Definition of structure storing data for this element. */
43   typedef struct _GstShout2send GstShout2send;
44   struct _GstShout2send
45   {
46     GstElement element;
47
48     GstPad *sinkpad, *srcpad;
49
50     GstShout2SendProtocol protocol;
51
52     shout_t *conn;
53
54     gchar *ip;
55     guint port;
56     gchar *password;
57     gchar *name;
58     gchar *description;
59     gchar *genre;
60     gchar *mount;
61     gchar *url;
62
63   };
64
65
66
67 /* Standard definition defining a class for this element. */
68   typedef struct _GstShout2sendClass GstShout2sendClass;
69   struct _GstShout2sendClass
70   {
71     GstElementClass parent_class;
72   };
73
74 /* Standard macros for defining types for this element.  */
75 #define GST_TYPE_SHOUT2SEND \
76   (gst_shout2send_get_type())
77 #define GST_SHOUT2SEND(obj) \
78   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SHOUT2SEND,GstShout2send))
79 #define GST_SHOUT2SEND_CLASS(klass) \
80   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SHOUT2SEND,GstShout2send))
81 #define GST_IS_SHOUT2SEND(obj) \
82   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SHOUT2SEND))
83 #define GST_IS_SHOUT2SEND_CLASS(obj) \
84   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SHOUT2SEND))
85
86 /* Standard function returning type information. */
87   GType gst_shout2send_get_type (void);
88
89
90 #ifdef __cplusplus
91 }
92 #endif                          /* __cplusplus */
93
94
95 #endif                          /* __GST_SHOUT2SEND_H__ */