summaryrefslogtreecommitdiffstats
path: root/polyp/scache.h
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/scache.h')
-rw-r--r--polyp/scache.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/polyp/scache.h b/polyp/scache.h
index e0574409..4fb3dc8e 100644
--- a/polyp/scache.h
+++ b/polyp/scache.h
@@ -30,15 +30,20 @@ struct pa_scache_entry {
struct pa_core *core;
uint32_t index;
char *name;
+
uint32_t volume;
struct pa_sample_spec sample_spec;
struct pa_memchunk memchunk;
- int auto_unload;
+ char *filename;
+
+ int lazy;
time_t last_used_time;
};
-int pa_scache_add_item(struct pa_core *c, const char *name, struct pa_sample_spec *ss, struct pa_memchunk *chunk, uint32_t *index, int auto_unload);
+int pa_scache_add_item(struct pa_core *c, const char *name, struct pa_sample_spec *ss, struct pa_memchunk *chunk, uint32_t *index);
+int pa_scache_add_file(struct pa_core *c, const char *name, const char *filename, uint32_t *index);
+int pa_scache_add_file_lazy(struct pa_core *c, const char *name, const char *filename, uint32_t *index);
int pa_scache_remove_item(struct pa_core *c, const char *name);
int pa_scache_play_item(struct pa_core *c, const char *name, struct pa_sink *sink, uint32_t volume);