]> code.delx.au - pulseaudio/blob - polyp/sample-util.h
e433f9c81d0146c4b0365ad6a6af8822a6546a81
[pulseaudio] / polyp / 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 "sample.h"
26 #include "memblock.h"
27 #include "memchunk.h"
28 #include "volume.h"
29
30 pa_memblock *pa_silence_memblock(pa_memblock* b, const pa_sample_spec *spec);
31 void pa_silence_memchunk(pa_memchunk *c, const pa_sample_spec *spec);
32 void pa_silence_memory(void *p, size_t length, const pa_sample_spec *spec);
33
34 typedef struct pa_mix_info {
35 pa_memchunk chunk;
36 pa_cvolume volume;
37 void *userdata;
38 } pa_mix_info;
39
40 size_t pa_mix(
41 const pa_mix_info channels[],
42 unsigned nchannels,
43 void *data,
44 size_t length,
45 const pa_sample_spec *spec,
46 const pa_cvolume *volume);
47
48 void pa_volume_memchunk(
49 pa_memchunk*c,
50 const pa_sample_spec *spec,
51 const pa_cvolume *volume);
52
53 #endif