mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
add pa_ prefix to all identifiers.
fix downsampling/resampling add support for U8 samples git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@49 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
a8a5ab1c79
commit
e61c2dddb7
91 changed files with 1795 additions and 1643 deletions
20
src/module.h
20
src/module.h
|
|
@ -6,28 +6,28 @@
|
|||
|
||||
#include "core.h"
|
||||
|
||||
struct module {
|
||||
struct core *core;
|
||||
struct pa_module {
|
||||
struct pa_core *core;
|
||||
char *name, *argument;
|
||||
uint32_t index;
|
||||
|
||||
lt_dlhandle dl;
|
||||
|
||||
int (*init)(struct core *c, struct module*m);
|
||||
void (*done)(struct core *c, struct module*m);
|
||||
int (*init)(struct pa_core *c, struct pa_module*m);
|
||||
void (*done)(struct pa_core *c, struct pa_module*m);
|
||||
|
||||
void *userdata;
|
||||
};
|
||||
|
||||
struct module* module_load(struct core *c, const char *name, const char*argument);
|
||||
void module_unload(struct core *c, struct module *m);
|
||||
void module_unload_by_index(struct core *c, uint32_t index);
|
||||
struct pa_module* pa_module_load(struct pa_core *c, const char *name, const char*argument);
|
||||
void pa_module_unload(struct pa_core *c, struct pa_module *m);
|
||||
void pa_module_unload_by_index(struct pa_core *c, uint32_t index);
|
||||
|
||||
void module_unload_all(struct core *c);
|
||||
void pa_module_unload_all(struct pa_core *c);
|
||||
|
||||
char *module_list_to_string(struct core *c);
|
||||
char *pa_module_list_to_string(struct pa_core *c);
|
||||
|
||||
void module_unload_request(struct core *c, struct module *m);
|
||||
void pa_module_unload_request(struct pa_core *c, struct pa_module *m);
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue