]> code.delx.au - pulseaudio/blob - polyp/source.h
3cac2ad1f3590e13940a1b81b5acbd8a3cd2d061
[pulseaudio] / polyp / source.h
1 #ifndef foosourcehfoo
2 #define foosourcehfoo
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 struct pa_source;
26
27 #include <inttypes.h>
28 #include "core.h"
29 #include "sample.h"
30 #include "idxset.h"
31 #include "memblock.h"
32 #include "memchunk.h"
33 #include "sink.h"
34
35 #define PA_MAX_OUTPUTS_PER_SOURCE 16
36
37 enum pa_source_state {
38 PA_SOURCE_RUNNING,
39 PA_SOURCE_DISCONNECTED
40 };
41
42 struct pa_source {
43 int ref;
44 enum pa_source_state state;
45
46 uint32_t index;
47
48 char *name, *description;
49 struct pa_module *owner;
50 struct pa_core *core;
51 struct pa_sample_spec sample_spec;
52 struct pa_idxset *outputs;
53 struct pa_sink *monitor_of;
54
55 void (*notify)(struct pa_source*source);
56 pa_usec_t (*get_latency)(struct pa_source *s);
57 void *userdata;
58 };
59
60 struct pa_source* pa_source_new(struct pa_core *core, const char *name, int fail, const struct pa_sample_spec *spec);
61 void pa_source_disconnect(struct pa_source *s);
62 void pa_source_unref(struct pa_source *s);
63 struct pa_source* pa_source_ref(struct pa_source *c);
64
65 /* Pass a new memory block to all output streams */
66 void pa_source_post(struct pa_source*s, const struct pa_memchunk *b);
67
68 void pa_source_notify(struct pa_source *s);
69
70 void pa_source_set_owner(struct pa_source *s, struct pa_module *m);
71
72 pa_usec_t pa_source_get_latency(struct pa_source *s);
73
74 #endif