2004-06-08 23:54:24 +00:00
|
|
|
#ifndef foosinkhfoo
|
|
|
|
|
#define foosinkhfoo
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_sink;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
|
|
#include "core.h"
|
|
|
|
|
#include "sample.h"
|
|
|
|
|
#include "idxset.h"
|
|
|
|
|
#include "source.h"
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_sink {
|
2004-06-08 23:54:24 +00:00
|
|
|
uint32_t index;
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2004-07-10 20:56:38 +00:00
|
|
|
char *name, *description;
|
|
|
|
|
struct pa_module *owner;
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_core *core;
|
2004-06-23 23:17:30 +00:00
|
|
|
struct pa_sample_spec sample_spec;
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_idxset *inputs;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_source *monitor_source;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-06-29 20:37:24 +00:00
|
|
|
uint32_t volume;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
void (*notify)(struct pa_sink*sink);
|
|
|
|
|
uint32_t (*get_latency)(struct pa_sink *s);
|
2004-06-15 17:05:03 +00:00
|
|
|
void *userdata;
|
2004-06-08 23:54:24 +00:00
|
|
|
};
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_sink* pa_sink_new(struct pa_core *core, const char *name, int fail, const struct pa_sample_spec *spec);
|
|
|
|
|
void pa_sink_free(struct pa_sink* s);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
int pa_sink_render(struct pa_sink*s, size_t length, struct pa_memchunk *result);
|
|
|
|
|
int pa_sink_render_into(struct pa_sink*s, struct pa_memchunk *target);
|
|
|
|
|
void pa_sink_render_into_full(struct pa_sink *s, struct pa_memchunk *target);
|
2004-06-16 00:05:30 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
uint32_t pa_sink_get_latency(struct pa_sink *s);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
void pa_sink_notify(struct pa_sink*s);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_sink* pa_sink_get_default(struct pa_core *c);
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-07-10 20:56:38 +00:00
|
|
|
void pa_sink_set_owner(struct pa_sink *sink, struct pa_module *m);
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#endif
|