3ff065ab2100afe7509782ae539d74134b8cfcc0
[profile/ivi/pulseaudio-panda.git] / src / pulsecore / sample-util.h
1 #ifndef foosampleutilhfoo
2 #define foosampleutilhfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of PulseAudio.
8
9   Copyright 2004-2006 Lennart Poettering
10   Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
11
12   PulseAudio is free software; you can redistribute it and/or modify
13   it under the terms of the GNU Lesser General Public License as published
14   by the Free Software Foundation; either version 2 of the License,
15   or (at your option) any later version.
16
17   PulseAudio is distributed in the hope that it will be useful, but
18   WITHOUT ANY WARRANTY; without even the implied warranty of
19   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20   General Public License for more details.
21
22   You should have received a copy of the GNU Lesser General Public License
23   along with PulseAudio; if not, write to the Free Software
24   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25   USA.
26 ***/
27
28 #include <pulse/sample.h>
29 #include <pulse/volume.h>
30 #include <pulsecore/memblock.h>
31 #include <pulsecore/memchunk.h>
32
33 pa_memblock *pa_silence_memblock(pa_memblock* b, const pa_sample_spec *spec);
34 pa_memblock *pa_silence_memblock_new(pa_mempool *pool, const pa_sample_spec *spec, size_t length);
35 void pa_silence_memchunk(pa_memchunk *c, const pa_sample_spec *spec);
36 void pa_silence_memory(void *p, size_t length, const pa_sample_spec *spec);
37
38 typedef struct pa_mix_info {
39     pa_memchunk chunk;
40     pa_cvolume volume;
41     void *userdata;
42 } pa_mix_info;
43
44 size_t pa_mix(
45     const pa_mix_info channels[],
46     unsigned nchannels,
47     void *data,
48     size_t length,
49     const pa_sample_spec *spec,
50     const pa_cvolume *volume,
51     int mute);
52
53 void pa_volume_memchunk(
54     pa_memchunk*c,
55     const pa_sample_spec *spec,
56     const pa_cvolume *volume);
57
58 #endif