2004-06-08 23:54:24 +00:00
|
|
|
#ifndef foosinkhfoo
|
|
|
|
|
#define foosinkhfoo
|
|
|
|
|
|
2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2004-07-16 19:56:36 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
typedef struct pa_sink pa_sink;
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/sample.h>
|
|
|
|
|
#include <pulse/channelmap.h>
|
|
|
|
|
#include <pulse/volume.h>
|
|
|
|
|
#include <pulsecore/core-def.h>
|
|
|
|
|
#include <pulsecore/core.h>
|
|
|
|
|
#include <pulsecore/idxset.h>
|
|
|
|
|
#include <pulsecore/source.h>
|
|
|
|
|
#include <pulsecore/module.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
#define PA_MAX_INPUTS_PER_SINK 32
|
2004-09-01 15:00:44 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
typedef enum pa_sink_state {
|
2004-09-14 20:53:25 +00:00
|
|
|
PA_SINK_RUNNING,
|
|
|
|
|
PA_SINK_DISCONNECTED
|
2006-01-27 16:25:31 +00:00
|
|
|
} pa_sink_state_t;
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_sink {
|
2004-09-14 20:53:25 +00:00
|
|
|
int ref;
|
2004-06-08 23:54:24 +00:00
|
|
|
uint32_t index;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_core *core;
|
|
|
|
|
pa_sink_state_t state;
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
char *name, *description, *driver;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_module *owner;
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec sample_spec;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_channel_map channel_map;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_idxset *inputs;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_source *monitor_source;
|
2006-01-27 16:25:31 +00:00
|
|
|
|
|
|
|
|
pa_cvolume hw_volume, sw_volume;
|
2006-02-23 12:04:31 +00:00
|
|
|
int hw_muted, sw_muted;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-07-16 17:26:55 +00:00
|
|
|
int is_hardware;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void (*notify)(pa_sink*sink);
|
|
|
|
|
pa_usec_t (*get_latency)(pa_sink *s);
|
2006-01-27 16:25:31 +00:00
|
|
|
int (*set_hw_volume)(pa_sink *s);
|
|
|
|
|
int (*get_hw_volume)(pa_sink *s);
|
2006-02-23 12:04:31 +00:00
|
|
|
int (*set_hw_mute)(pa_sink *s);
|
|
|
|
|
int (*get_hw_mute)(pa_sink *s);
|
2006-01-27 16:25:31 +00:00
|
|
|
|
2004-06-15 17:05:03 +00:00
|
|
|
void *userdata;
|
2004-06-08 23:54:24 +00:00
|
|
|
};
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_sink* pa_sink_new(
|
|
|
|
|
pa_core *core,
|
|
|
|
|
const char *driver,
|
|
|
|
|
const char *name,
|
|
|
|
|
int namereg_fail,
|
|
|
|
|
const pa_sample_spec *spec,
|
|
|
|
|
const pa_channel_map *map);
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_disconnect(pa_sink* s);
|
|
|
|
|
void pa_sink_unref(pa_sink*s);
|
|
|
|
|
pa_sink* pa_sink_ref(pa_sink *s);
|
2004-09-14 20:53:25 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
int pa_sink_render(pa_sink*s, size_t length, pa_memchunk *result);
|
|
|
|
|
void pa_sink_render_full(pa_sink *s, size_t length, pa_memchunk *result);
|
|
|
|
|
int pa_sink_render_into(pa_sink*s, pa_memchunk *target);
|
|
|
|
|
void pa_sink_render_into_full(pa_sink *s, pa_memchunk *target);
|
2004-09-01 00:23:51 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_usec_t pa_sink_get_latency(pa_sink *s);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_notify(pa_sink*s);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_sink_set_owner(pa_sink *sink, pa_module *m);
|
2004-06-18 00:22:37 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
void pa_sink_set_volume(pa_sink *sink, pa_mixer_t m, const pa_cvolume *volume);
|
|
|
|
|
const pa_cvolume *pa_sink_get_volume(pa_sink *sink, pa_mixer_t m);
|
2006-02-23 12:04:31 +00:00
|
|
|
void pa_sink_set_mute(pa_sink *sink, pa_mixer_t m, int mute);
|
|
|
|
|
int pa_sink_get_mute(pa_sink *sink, pa_mixer_t m);
|
2004-08-12 23:25:28 +00:00
|
|
|
|
2006-08-11 17:53:34 +00:00
|
|
|
void pa_sink_set_description(pa_sink *s, const char *description);
|
|
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#endif
|