]> code.delx.au - pulseaudio/blob - src/polypcore/scache.h
shorten include list of utils a little
[pulseaudio] / src / polypcore / scache.h
1 #ifndef fooscachehfoo
2 #define fooscachehfoo
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 "core.h"
26 #include "memchunk.h"
27 #include "sink.h"
28
29 typedef struct pa_scache_entry {
30 pa_core *core;
31 uint32_t index;
32 char *name;
33
34 pa_cvolume volume;
35 pa_sample_spec sample_spec;
36 pa_channel_map channel_map;
37 pa_memchunk memchunk;
38
39 char *filename;
40
41 int lazy;
42 time_t last_used_time;
43 } pa_scache_entry;
44
45 int pa_scache_add_item(pa_core *c, const char *name, const pa_sample_spec *ss, const pa_channel_map *map, const pa_memchunk *chunk, uint32_t *idx);
46 int pa_scache_add_file(pa_core *c, const char *name, const char *filename, uint32_t *idx);
47 int pa_scache_add_file_lazy(pa_core *c, const char *name, const char *filename, uint32_t *idx);
48
49 int pa_scache_add_directory_lazy(pa_core *c, const char *pathname);
50
51 int pa_scache_remove_item(pa_core *c, const char *name);
52 int pa_scache_play_item(pa_core *c, const char *name, pa_sink *sink, const pa_cvolume *cvolume);
53 void pa_scache_free(pa_core *c);
54
55 const char *pa_scache_get_name_by_id(pa_core *c, uint32_t id);
56 uint32_t pa_scache_get_id_by_name(pa_core *c, const char *name);
57
58 uint32_t pa_scache_total_size(pa_core *c);
59
60 void pa_scache_unload_unused(pa_core *c);
61
62 #endif