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