Merge branch 'dtmf-moved-from-bad'
[platform/upstream/gst-plugins-good.git] / ext / pulse / pulsesrc.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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
21  *  USA.
22  */
23
24 #ifndef __GST_PULSESRC_H__
25 #define __GST_PULSESRC_H__
26
27 #include <gst/gst.h>
28 #include <gst/audio/gstaudiosrc.h>
29
30 #include <pulse/pulseaudio.h>
31 #include <pulse/thread-mainloop.h>
32
33 #include "pulseprobe.h"
34
35 G_BEGIN_DECLS
36
37 #define GST_TYPE_PULSESRC \
38   (gst_pulsesrc_get_type())
39 #define GST_PULSESRC(obj) \
40   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_PULSESRC,GstPulseSrc))
41 #define GST_PULSESRC_CLASS(klass) \
42   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_PULSESRC,GstPulseSrcClass))
43 #define GST_IS_PULSESRC(obj) \
44   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_PULSESRC))
45 #define GST_IS_PULSESRC_CLASS(obj) \
46   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_PULSESRC))
47 #define GST_PULSESRC_CAST(obj) \
48   ((GstPulseSrc *)(obj))
49
50 typedef struct _GstPulseSrc GstPulseSrc;
51 typedef struct _GstPulseSrcClass GstPulseSrcClass;
52
53 struct _GstPulseSrc
54 {
55   GstAudioSrc src;
56
57   gchar *server, *device, *client_name;
58
59   pa_threaded_mainloop *mainloop;
60
61   pa_context *context;
62   pa_stream *stream;
63   guint32 source_output_idx;
64
65   pa_sample_spec sample_spec;
66
67   const void *read_buffer;
68   size_t read_buffer_length;
69
70   gchar *device_description;
71   GstPulseProbe *probe;
72
73   gdouble volume;
74   gboolean volume_set:1;
75   gboolean mute:1;
76   gboolean mute_set:1;
77
78   gint notify; /* atomic */
79
80   gboolean corked:1;
81   gboolean stream_connected:1;
82   gboolean operation_success:1;
83   gboolean paused:1;
84   gboolean in_read:1;
85
86   GstStructure *properties;
87   pa_proplist *proplist;
88 };
89
90 struct _GstPulseSrcClass
91 {
92   GstAudioSrcClass parent_class;
93 };
94
95 GType gst_pulsesrc_get_type (void);
96
97 G_END_DECLS
98
99 #endif /* __GST_PULSESRC_H__ */