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