pulsesink: Use the extended stream API if available
[platform/upstream/gst-plugins-good.git] / ext / pulse / pulseutil.h
1 /*
2  *  GStreamer pulseaudio plugin
3  *
4  *  Copyright (c) 2004-2008 Lennart Poettering
5  *
6  *  gst-pulse is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU Lesser General Public License as
8  *  published by the Free Software Foundation; either version 2.1 of the
9  *  License, or (at your option) any later version.
10  *
11  *  gst-pulse is distributed in the hope that it will be useful, but
12  *  WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  *  Lesser General Public License for more details.
15  *
16  *  You should have received a copy of the GNU Lesser General Public
17  *  License along with gst-pulse; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  *  USA.
20  */
21
22 #ifndef __GST_PULSEUTIL_H__
23 #define __GST_PULSEUTIL_H__
24
25 #include <gst/gst.h>
26 #include <pulse/pulseaudio.h>
27 #include <gst/audio/gstaudiosink.h>
28
29 gboolean gst_pulse_fill_sample_spec (GstRingBufferSpec * spec,
30     pa_sample_spec * ss);
31 #ifdef HAVE_PULSE_1_0
32 gboolean gst_pulse_fill_format_info (GstRingBufferSpec * spec,
33     pa_format_info ** f, guint * channels);
34 #endif
35
36 gchar *gst_pulse_client_name (void);
37
38 pa_channel_map *gst_pulse_gst_to_channel_map (pa_channel_map * map,
39     const GstRingBufferSpec * spec);
40
41 GstRingBufferSpec *gst_pulse_channel_map_to_gst (const pa_channel_map * map,
42     GstRingBufferSpec * spec);
43
44 void gst_pulse_cvolume_from_linear (pa_cvolume *v, unsigned channels, gdouble volume);
45
46 pa_proplist *gst_pulse_make_proplist (const GstStructure *properties);
47
48 #endif