2004-07-11 16:59:22 +00:00
|
|
|
#ifndef foomodargshfoo
|
|
|
|
|
#define foomodargshfoo
|
|
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
#include "sample.h"
|
2004-07-11 22:20:08 +00:00
|
|
|
#include "core.h"
|
2004-07-11 16:59:22 +00:00
|
|
|
|
|
|
|
|
struct pa_modargs;
|
|
|
|
|
|
|
|
|
|
struct pa_modargs *pa_modargs_new(const char *args, const char* const* keys);
|
|
|
|
|
void pa_modargs_free(struct pa_modargs*ma);
|
|
|
|
|
|
|
|
|
|
const char *pa_modargs_get_value(struct pa_modargs *ma, const char *key, const char *def);
|
|
|
|
|
int pa_modargs_get_value_u32(struct pa_modargs *ma, const char *key, uint32_t *value);
|
|
|
|
|
|
|
|
|
|
int pa_modargs_get_sample_spec(struct pa_modargs *ma, struct pa_sample_spec *ss);
|
|
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
int pa_modargs_get_source_index(struct pa_modargs *ma, struct pa_core *c, uint32_t *index);
|
|
|
|
|
int pa_modargs_get_sink_index(struct pa_modargs *ma, struct pa_core *c, uint32_t *index);
|
2004-07-11 16:59:22 +00:00
|
|
|
|
|
|
|
|
#endif
|