]> code.delx.au - pulseaudio/blob - polyp/core.h
Make the whole stuff LGPL only
[pulseaudio] / polyp / core.h
1 #ifndef foocorehfoo
2 #define foocorehfoo
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 "idxset.h"
26 #include "hashmap.h"
27 #include "mainloop-api.h"
28 #include "sample.h"
29 #include "memblock.h"
30
31 struct pa_core {
32 struct pa_mainloop_api *mainloop;
33
34 struct pa_idxset *clients, *sinks, *sources, *sink_inputs, *source_outputs, *modules, *scache, *autoload_idxset;
35
36 struct pa_hashmap *namereg, *autoload_hashmap, *properties;
37
38 char *default_source_name, *default_sink_name;
39
40 struct pa_sample_spec default_sample_spec;
41 struct pa_time_event *module_auto_unload_event;
42 struct pa_defer_event *module_defer_unload_event;
43
44 struct pa_defer_event *subscription_defer_event;
45 struct pa_queue *subscription_event_queue;
46 struct pa_subscription *subscriptions;
47
48 struct pa_memblock_stat *memblock_stat;
49
50 int disallow_module_loading;
51 int exit_idle_time, module_idle_time, scache_idle_time;
52
53 struct pa_time_event *quit_event;
54
55 struct pa_time_event *scache_auto_unload_event;
56
57 int resample_method;
58 };
59
60 struct pa_core* pa_core_new(struct pa_mainloop_api *m);
61 void pa_core_free(struct pa_core*c);
62 void pa_core_check_quit(struct pa_core *c);
63
64 #endif