make module-combine autoloadable

clean up cli language
introduce lazy sample cache


git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@201 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-09-14 23:08:39 +00:00
parent 6e019795bf
commit 935826f4f3
18 changed files with 282 additions and 133 deletions

View file

@ -38,8 +38,8 @@ struct pa_core {
char *default_source_name, *default_sink_name;
struct pa_sample_spec default_sample_spec;
struct pa_time_event *auto_unload_event;
struct pa_defer_event *defer_unload_event;
struct pa_time_event *module_auto_unload_event;
struct pa_defer_event *module_defer_unload_event;
struct pa_defer_event *subscription_defer_event;
struct pa_queue *subscription_event_queue;
@ -48,9 +48,11 @@ struct pa_core {
struct pa_memblock_stat *memblock_stat;
int disallow_module_loading;
int exit_idle_time, module_idle_time;
int exit_idle_time, module_idle_time, scache_idle_time;
struct pa_time_event *quit_event;
struct pa_time_event *scache_auto_unload_event;
};
struct pa_core* pa_core_new(struct pa_mainloop_api *m);