ext/shout2/gstshout2.*: Add a property for username.
[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 <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   shout_t *conn;
46
47   gchar *ip;
48   guint port;
49   gchar *password;
50   gchar *username;
51   gchar *streamname;
52   gchar *description;
53   gchar *genre;
54   gchar *mount;
55   gchar *url;
56   gboolean connected;
57   gchar *songmetadata;
58   gchar *songartist;
59   gchar *songtitle;
60   guint16 audio_format;
61
62   GstTagList* tags;
63 };
64
65
66
67 /* Standard definition defining a class for this element. */
68 typedef struct _GstShout2sendClass GstShout2sendClass;
69 struct _GstShout2sendClass {
70   GstBaseSinkClass parent_class;
71
72   /* signal callbacks */
73   void (*connection_problem) (GstElement *element,guint errno);
74 };
75
76 /* Standard macros for defining types for this element.  */
77 #define GST_TYPE_SHOUT2SEND \
78   (gst_shout2send_get_type())
79 #define GST_SHOUT2SEND(obj) \
80   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_SHOUT2SEND,GstShout2send))
81 #define GST_SHOUT2SEND_CLASS(klass) \
82   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_SHOUT2SEND,GstShout2sendClass))
83 #define GST_IS_SHOUT2SEND(obj) \
84   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_SHOUT2SEND))
85 #define GST_IS_SHOUT2SEND_CLASS(klass) \
86   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_SHOUT2SEND))
87
88 /* Standard function returning type information. */
89 GType gst_shout2send_get_type(void);
90
91
92 G_END_DECLS
93
94 #endif /* __GST_SHOUT2SEND_H__ */