summaryrefslogtreecommitdiffstats
path: root/polyp/scache.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/scache.c')
-rw-r--r--polyp/scache.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/polyp/scache.c b/polyp/scache.c
index f3c15934..311d68a4 100644
--- a/polyp/scache.c
+++ b/polyp/scache.c
@@ -157,5 +157,14 @@ const char * pa_scache_get_name_by_id(struct pa_core *c, uint32_t id) {
return NULL;
return e->name;
-
+}
+
+uint32_t pa_scache_get_id_by_name(struct pa_core *c, const char *name) {
+ struct pa_scache_entry *e;
+ assert(c && name);
+
+ if (!c->scache || !(e = pa_idxset_get_by_data(c->scache, name, NULL)))
+ return PA_IDXSET_INVALID;
+
+ return e->index;
}