]> code.delx.au - pulseaudio/blob - src/pulsecore/sink.h
A lot of updates, all necessary to get the native protocol ported:
[pulseaudio] / src / pulsecore / sink.h
1 #ifndef foopulsesinkhfoo
2 #define foopulsesinkhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2004-2006 Lennart Poettering
10 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
11
12 PulseAudio is free software; you can redistribute it and/or modify
13 it under the terms of the GNU Lesser General Public License as published
14 by the Free Software Foundation; either version 2 of the License,
15 or (at your option) any later version.
16
17 PulseAudio is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU Lesser General Public License
23 along with PulseAudio; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
25 USA.
26 ***/
27
28 typedef struct pa_sink pa_sink;
29
30 #include <inttypes.h>
31
32 #include <pulse/sample.h>
33 #include <pulse/channelmap.h>
34 #include <pulse/volume.h>
35
36 #include <pulsecore/core-def.h>
37 #include <pulsecore/core.h>
38 #include <pulsecore/idxset.h>
39 #include <pulsecore/source.h>
40 #include <pulsecore/module.h>
41 #include <pulsecore/refcnt.h>
42 #include <pulsecore/msgobject.h>
43
44 #define PA_MAX_INPUTS_PER_SINK 32
45
46 typedef enum pa_sink_state {
47 PA_SINK_RUNNING,
48 PA_SINK_SUSPENDED,
49 PA_SINK_IDLE,
50 PA_SINK_DISCONNECTED
51 } pa_sink_state_t;
52
53 struct pa_sink {
54 pa_msgobject parent;
55
56 uint32_t index;
57 pa_core *core;
58 pa_sink_state_t state;
59
60 char *name;
61 char *description, *driver; /* may be NULL */
62 int is_hardware;
63
64 pa_module *module; /* may be NULL */
65
66 pa_sample_spec sample_spec;
67 pa_channel_map channel_map;
68
69 pa_idxset *inputs;
70 pa_source *monitor_source; /* may be NULL */
71
72 pa_cvolume volume;
73 int muted;
74 int refresh_volume;
75 int refresh_mute;
76
77 int (*set_state)(pa_sink *s, pa_sink_state_t state);
78 int (*set_volume)(pa_sink *s); /* dito */
79 int (*get_volume)(pa_sink *s); /* dito */
80 int (*get_mute)(pa_sink *s); /* dito */
81 int (*set_mute)(pa_sink *s); /* dito */
82 pa_usec_t (*get_latency)(pa_sink *s); /* dito */
83
84 pa_asyncmsgq *asyncmsgq;
85
86 /* Contains copies of the above data so that the real-time worker
87 * thread can work without access locking */
88 struct {
89 pa_sink_state_t state;
90 pa_hashmap *inputs;
91 pa_cvolume soft_volume;
92 int soft_muted;
93 } thread_info;
94
95 pa_memblock *silence;
96
97 void *userdata;
98 };
99
100 PA_DECLARE_CLASS(pa_sink);
101 #define PA_SINK(s) (pa_sink_cast(s))
102
103 typedef enum pa_sink_message {
104 PA_SINK_MESSAGE_ADD_INPUT,
105 PA_SINK_MESSAGE_REMOVE_INPUT,
106 PA_SINK_MESSAGE_GET_VOLUME,
107 PA_SINK_MESSAGE_SET_VOLUME,
108 PA_SINK_MESSAGE_GET_MUTE,
109 PA_SINK_MESSAGE_SET_MUTE,
110 PA_SINK_MESSAGE_GET_LATENCY,
111 PA_SINK_MESSAGE_SET_STATE,
112 PA_SINK_MESSAGE_PING,
113 PA_SINK_MESSAGE_MAX
114 } pa_sink_message_t;
115
116 /* To be used exclusively by the sink driver */
117
118 pa_sink* pa_sink_new(
119 pa_core *core,
120 const char *driver,
121 const char *name,
122 int namereg_fail,
123 const pa_sample_spec *spec,
124 const pa_channel_map *map);
125
126 void pa_sink_disconnect(pa_sink* s);
127
128 void pa_sink_set_module(pa_sink *sink, pa_module *m);
129 void pa_sink_set_description(pa_sink *s, const char *description);
130 void pa_sink_set_asyncmsgq(pa_sink *s, pa_asyncmsgq *q);
131
132 /* Usable by everyone */
133
134 pa_usec_t pa_sink_get_latency(pa_sink *s);
135
136 int pa_sink_update_status(pa_sink*s);
137 int pa_sink_suspend(pa_sink *s, int suspend);
138
139 /* Sends a ping message to the sink thread, to make it wake up and
140 * check for data to process even if there is no real message is
141 * sent */
142 void pa_sink_ping(pa_sink *s);
143
144 void pa_sink_set_volume(pa_sink *sink, const pa_cvolume *volume);
145 const pa_cvolume *pa_sink_get_volume(pa_sink *sink);
146 void pa_sink_set_mute(pa_sink *sink, int mute);
147 int pa_sink_get_mute(pa_sink *sink);
148
149 unsigned pa_sink_used_by(pa_sink *s);
150 #define pa_sink_get_state(s) ((s)->state)
151
152 /* To be used exclusively by the sink driver thread */
153
154 void pa_sink_render(pa_sink*s, size_t length, pa_memchunk *result);
155 void pa_sink_render_full(pa_sink *s, size_t length, pa_memchunk *result);
156 void pa_sink_render_into(pa_sink*s, pa_memchunk *target);
157 void pa_sink_render_into_full(pa_sink *s, pa_memchunk *target);
158
159 int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk);
160
161 static inline int PA_SINK_OPENED(pa_sink_state_t x) {
162 return x == PA_SINK_RUNNING || x == PA_SINK_IDLE;
163 }
164
165 #endif