rename configuration file
[profile/ivi/pulseaudio-panda.git] / polyp / source-output.h
1 #ifndef foosourceoutputhfoo
2 #define foosourceoutputhfoo
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 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 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 <inttypes.h>
26
27 #include "source.h"
28 #include "sample.h"
29 #include "memblockq.h"
30 #include "resampler.h"
31 #include "module.h"
32 #include "client.h"
33
34 struct pa_source_output {
35     uint32_t index;
36
37     char *name;
38     struct pa_module *owner;
39     struct pa_client *client;
40     struct pa_source *source;
41     struct pa_sample_spec sample_spec;
42     
43     void (*push)(struct pa_source_output *o, const struct pa_memchunk *chunk);
44     void (*kill)(struct pa_source_output* o);
45
46     struct pa_resampler* resampler;
47     
48     void *userdata;
49 };
50
51 struct pa_source_output* pa_source_output_new(struct pa_source *s, const char *name, const struct pa_sample_spec *spec);
52 void pa_source_output_free(struct pa_source_output* o);
53
54 void pa_source_output_kill(struct pa_source_output*o);
55
56 void pa_source_output_push(struct pa_source_output *o, const struct pa_memchunk *chunk);
57
58 #endif