mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-24 08:56:42 -05:00
implement missing scache_get_id_by_name
add some more consts to idxset add module-sine, a sine generating sink_input module git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@165 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
36550f4a66
commit
fa19d6ab7e
7 changed files with 195 additions and 15 deletions
|
|
@ -40,10 +40,10 @@ void pa_idxset_free(struct pa_idxset *s, void (*free_func) (void *p, void *userd
|
|||
int pa_idxset_put(struct pa_idxset*s, void *p, uint32_t *index);
|
||||
|
||||
void* pa_idxset_get_by_index(struct pa_idxset*s, uint32_t index);
|
||||
void* pa_idxset_get_by_data(struct pa_idxset*s, void *p, uint32_t *index);
|
||||
void* pa_idxset_get_by_data(struct pa_idxset*s, const void *p, uint32_t *index);
|
||||
|
||||
void* pa_idxset_remove_by_index(struct pa_idxset*s, uint32_t index);
|
||||
void* pa_idxset_remove_by_data(struct pa_idxset*s, void *p, uint32_t *index);
|
||||
void* pa_idxset_remove_by_data(struct pa_idxset*s, const void *p, uint32_t *index);
|
||||
|
||||
/* This may be used to iterate through all entries. When called with
|
||||
an invalid index value it returns the first entry, otherwise the
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue