tizen 2.0 init
[framework/multimedia/gst-plugins-good0.10.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 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28
29 #include <gst/gst.h>
30 #include <pulse/pulseaudio.h>
31 #include <gst/audio/gstaudiosink.h>
32
33 gboolean gst_pulse_fill_sample_spec (GstRingBufferSpec * spec,
34     pa_sample_spec * ss);
35 #ifdef HAVE_PULSE_1_0
36 gboolean gst_pulse_fill_format_info (GstRingBufferSpec * spec,
37     pa_format_info ** f, guint * channels);
38 #endif
39
40 gchar *gst_pulse_client_name (void);
41
42 pa_channel_map *gst_pulse_gst_to_channel_map (pa_channel_map * map,
43     const GstRingBufferSpec * spec);
44
45 GstRingBufferSpec *gst_pulse_channel_map_to_gst (const pa_channel_map * map,
46     GstRingBufferSpec * spec);
47
48 void gst_pulse_cvolume_from_linear (pa_cvolume *v, unsigned channels, gdouble volume);
49
50 pa_proplist *gst_pulse_make_proplist (const GstStructure *properties);
51
52 #endif