Tizen 2.0 Release
[framework/multimedia/gst-plugins-good0.10.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 <gst/base/gstbasesink.h>
26 #include <shout/shout.h>
27
28 G_BEGIN_DECLS
29
30   /* Protocol type enum */
31 typedef enum {
32   SHOUT2SEND_PROTOCOL_XAUDIOCAST = 1,
33   SHOUT2SEND_PROTOCOL_ICY,
34   SHOUT2SEND_PROTOCOL_HTTP
35 } GstShout2SendProtocol;
36
37
38 /* Definition of structure storing data for this element. */
39 typedef struct _GstShout2send GstShout2send;
40 struct _GstShout2send {
41   GstBaseSink parent;
42
43   GstShout2SendProtocol protocol;
44
45   GstPoll *timer;
46
47   shout_t *conn;
48
49   gchar *ip;
50   guint port;
51   gchar *password;
52   gchar *username;
53   gchar *streamname;
54   gchar *description;
55   gchar *genre;
56   gchar *mount;
57   gchar *url;
58   gboolean connected;
59   gboolean ispublic;
60   gchar *songmetadata;
61   gchar *songartist;
62   gchar *songtitle;
63   guint16 audio_format;
64
65   GstTagList* tags;
66 };
67
68
69
70 /* Standard definition defining a class for this element. */
71 typedef struct _GstShout2sendClass GstShout2sendClass;
72 struct _GstShout2sendClass {
73   GstBaseSinkClass parent_class;
74
75   /* signal callbacks */
76   void (*connection_problem) (GstElement *element,guint errno);
77 };
78
79 /* Standard macros for defining types for this element.  */
80 #define GST_TYPE_SHOUT2SEND \
81   (gst_shout2send_get_type())
82 #define GST_SHOUT2SEND(obj) \
83   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SHOUT2SEND,GstShout2send))
84 #define GST_SHOUT2SEND_CLASS(klass) \
85   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SHOUT2SEND,GstShout2sendClass))
86 #define GST_IS_SHOUT2SEND(obj) \
87   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SHOUT2SEND))
88 #define GST_IS_SHOUT2SEND_CLASS(klass) \
89   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SHOUT2SEND))
90
91 /* Standard function returning type information. */
92 GType gst_shout2send_get_type(void);
93
94
95 G_END_DECLS
96
97 #endif /* __GST_SHOUT2SEND_H__ */