Merge branch 'master' into 0.11
[platform/upstream/gst-plugins-good.git] / ext / pulse / pulsesink.h
1 /*-*- Mode: C; c-basic-offset: 2 -*-*/
2
3 /*
4  *  GStreamer pulseaudio plugin
5  *
6  *  Copyright (c) 2004-2008 Lennart Poettering
7  *
8  *  gst-pulse is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU Lesser General Public License as
10  *  published by the Free Software Foundation; either version 2.1 of the
11  *  License, or (at your option) any later version.
12  *
13  *  gst-pulse is distributed in the hope that it will be useful, but
14  *  WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  *  Lesser General Public License for more details.
17  *
18  *  You should have received a copy of the GNU Lesser General Public
19  *  License along with gst-pulse; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21  *  USA.
22  */
23
24 #ifndef __GST_PULSESINK_H__
25 #define __GST_PULSESINK_H__
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include <gst/gst.h>
32 #include <gst/audio/gstaudiosink.h>
33
34 #include <pulse/pulseaudio.h>
35 #include <pulse/thread-mainloop.h>
36
37 #include "pulseprobe.h"
38
39 G_BEGIN_DECLS
40
41 #define GST_TYPE_PULSESINK \
42   (gst_pulsesink_get_type())
43 #define GST_PULSESINK(obj) \
44   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PULSESINK,GstPulseSink))
45 #define GST_PULSESINK_CLASS(klass) \
46   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PULSESINK,GstPulseSinkClass))
47 #define GST_IS_PULSESINK(obj) \
48   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PULSESINK))
49 #define GST_IS_PULSESINK_CLASS(obj) \
50   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PULSESINK))
51 #define GST_PULSESINK_CAST(obj) \
52   ((GstPulseSink *)(obj))
53
54 typedef struct _GstPulseSink GstPulseSink;
55 typedef struct _GstPulseSinkClass GstPulseSinkClass;
56
57 struct _GstPulseSink
58 {
59   GstAudioBaseSink sink;
60
61   gchar *server, *device, *stream_name, *client_name;
62   gchar *device_description;
63
64   GstPulseProbe *probe;
65
66   gdouble volume;
67   gboolean volume_set:1;
68   gboolean mute:1;
69   gboolean mute_set:1;
70
71   guint defer_pending;
72
73   gint notify; /* atomic */
74
75   const gchar *pa_version;
76
77   GstStructure *properties;
78   pa_proplist *proplist;
79
80   GMutex sink_formats_lock;
81   GList *sink_formats;
82   volatile gint format_lost;
83   GstClockTime format_lost_time;
84 };
85
86 struct _GstPulseSinkClass
87 {
88   GstAudioBaseSinkClass parent_class;
89 };
90
91 GType gst_pulsesink_get_type (void);
92
93 #if (G_BYTE_ORDER == G_LITTLE_ENDIAN)
94 # define FORMATS   "{ S16LE, S16BE, F32LE, F32BE, S32LE, S32BE, " \
95                      "S24LE, S24BE, S24_32LE, S24_32BE, U8 }"
96 #else
97 # define FORMATS   "{ S16BE, S16LE, F32BE, F32LE, S32BE, S32LE, " \
98                      "S24BE, S24LE, S24_32BE, S24_32LE, U8 }"
99 #endif
100
101 #define _PULSE_SINK_CAPS_COMMON \
102     "audio/x-raw, " \
103       "format = (string) " FORMATS ", " \
104       "layout = (string) interleaved, " \
105       "rate = (int) [ 1, MAX ], " \
106       "channels = (int) [ 1, 32 ];" \
107     "audio/x-alaw, " \
108       "layout = (string) interleaved, " \
109       "rate = (int) [ 1, MAX], " \
110       "channels = (int) [ 1, 32 ];" \
111     "audio/x-mulaw, " \
112       "layout = (string) interleaved, " \
113       "rate = (int) [ 1, MAX], " \
114       "channels = (int) [ 1, 32 ];"
115
116 #define _PULSE_SINK_CAPS_1_0 \
117     "audio/x-ac3, framed = (boolean) true;" \
118     "audio/x-eac3, framed = (boolean) true; " \
119     "audio/x-dts, framed = (boolean) true, " \
120       "block-size = (int) { 512, 1024, 2048 }; " \
121     "audio/mpeg, mpegversion = (int) 1, " \
122       "mpegaudioversion = (int) [ 1, 2 ], parsed = (boolean) true;"
123
124 #define PULSE_SINK_TEMPLATE_CAPS \
125   _PULSE_SINK_CAPS_COMMON \
126   _PULSE_SINK_CAPS_1_0
127
128 G_END_DECLS
129
130 #endif /* __GST_PULSESINK_H__ */