]> code.delx.au - pulseaudio/blob - src/pulsecore/source.h
core: make fixed latency dynamically changeable
[pulseaudio] / src / pulsecore / source.h
1 #ifndef foopulsesourcehfoo
2 #define foopulsesourcehfoo
3
4 /***
5 This file is part of PulseAudio.
6
7 Copyright 2004-2006 Lennart Poettering
8 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
9
10 PulseAudio is free software; you can redistribute it and/or modify
11 it under the terms of the GNU Lesser General Public License as published
12 by the Free Software Foundation; either version 2.1 of the License,
13 or (at your option) any later version.
14
15 PulseAudio is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with PulseAudio; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 USA.
24 ***/
25
26 typedef struct pa_source pa_source;
27
28 #include <inttypes.h>
29
30 #include <pulse/sample.h>
31 #include <pulse/channelmap.h>
32 #include <pulse/volume.h>
33
34 #include <pulsecore/core.h>
35 #include <pulsecore/idxset.h>
36 #include <pulsecore/memblock.h>
37 #include <pulsecore/memchunk.h>
38 #include <pulsecore/sink.h>
39 #include <pulsecore/module.h>
40 #include <pulsecore/asyncmsgq.h>
41 #include <pulsecore/msgobject.h>
42 #include <pulsecore/rtpoll.h>
43 #include <pulsecore/source-output.h>
44 #include <pulsecore/card.h>
45 #include <pulsecore/queue.h>
46 #include <pulsecore/thread-mq.h>
47
48 #define PA_MAX_OUTPUTS_PER_SOURCE 32
49
50 /* Returns true if source is linked: registered and accessible from client side. */
51 static inline pa_bool_t PA_SOURCE_IS_LINKED(pa_source_state_t x) {
52 return x == PA_SOURCE_RUNNING || x == PA_SOURCE_IDLE || x == PA_SOURCE_SUSPENDED;
53 }
54
55 struct pa_source {
56 pa_msgobject parent;
57
58 uint32_t index;
59 pa_core *core;
60
61 pa_source_state_t state;
62 pa_source_flags_t flags;
63 pa_suspend_cause_t suspend_cause;
64
65 char *name;
66 char *driver; /* may be NULL */
67 pa_proplist *proplist;
68
69 pa_module *module; /* may be NULL */
70 pa_card *card; /* may be NULL */
71
72 pa_sample_spec sample_spec;
73 pa_channel_map channel_map;
74
75 pa_idxset *outputs;
76 unsigned n_corked;
77 pa_sink *monitor_of; /* may be NULL */
78
79 pa_volume_t base_volume; /* shall be constant */
80 unsigned n_volume_steps; /* shall be constant */
81
82 pa_cvolume virtual_volume, soft_volume;
83 pa_bool_t muted:1;
84
85 pa_bool_t refresh_volume:1;
86 pa_bool_t refresh_muted:1;
87
88 pa_bool_t save_port:1;
89 pa_bool_t save_volume:1;
90 pa_bool_t save_muted:1;
91
92 pa_asyncmsgq *asyncmsgq;
93
94 pa_memchunk silence;
95
96 pa_hashmap *ports;
97 pa_device_port *active_port;
98
99 /* Called when the main loop requests a state change. Called from
100 * main loop context. If returns -1 the state change will be
101 * inhibited */
102 int (*set_state)(pa_source*source, pa_source_state_t state); /* may be NULL */
103
104 /* Callled when the volume is queried. Called from main loop
105 * context. If this is NULL a PA_SOURCE_MESSAGE_GET_VOLUME message
106 * will be sent to the IO thread instead. If refresh_volume is
107 * FALSE neither this function is called nor a message is sent. */
108 void (*get_volume)(pa_source *s); /* dito */
109
110 /* Called when the volume shall be changed. Called from main loop
111 * context. If this is NULL a PA_SOURCE_MESSAGE_SET_VOLUME message
112 * will be sent to the IO thread instead. */
113 void (*set_volume)(pa_source *s); /* dito */
114
115 /* Called when the mute setting is queried. Called from main loop
116 * context. If this is NULL a PA_SOURCE_MESSAGE_GET_MUTE message
117 * will be sent to the IO thread instead. If refresh_mute is
118 * FALSE neither this function is called nor a message is sent.*/
119 void (*get_mute)(pa_source *s); /* dito */
120
121 /* Called when the mute setting shall be changed. Called from main
122 * loop context. If this is NULL a PA_SOURCE_MESSAGE_SET_MUTE
123 * message will be sent to the IO thread instead. */
124 void (*set_mute)(pa_source *s); /* dito */
125
126 /* Called when a the requested latency is changed. Called from IO
127 * thread context. */
128 void (*update_requested_latency)(pa_source *s); /* dito */
129
130 /* Called whenever the port shall be changed. Called from main
131 * thread. */
132 int (*set_port)(pa_source *s, pa_device_port *port); /*dito */
133
134 /* Contains copies of the above data so that the real-time worker
135 * thread can work without access locking */
136 struct {
137 pa_source_state_t state;
138 pa_hashmap *outputs;
139
140 pa_rtpoll *rtpoll;
141
142 pa_cvolume soft_volume;
143 pa_bool_t soft_muted:1;
144
145 pa_bool_t requested_latency_valid:1;
146 pa_usec_t requested_latency;
147
148 /* Then number of bytes this source will be rewound for at
149 * max. (Only used on monitor sources) */
150 size_t max_rewind;
151
152 pa_usec_t min_latency; /* we won't go below this latency */
153 pa_usec_t max_latency; /* An upper limit for the latencies */
154
155 pa_usec_t fixed_latency; /* for sources with PA_SOURCE_DYNAMIC_LATENCY this is 0 */
156 } thread_info;
157
158 void *userdata;
159 };
160
161 PA_DECLARE_CLASS(pa_source);
162 #define PA_SOURCE(s) pa_source_cast(s)
163
164 typedef enum pa_source_message {
165 PA_SOURCE_MESSAGE_ADD_OUTPUT,
166 PA_SOURCE_MESSAGE_REMOVE_OUTPUT,
167 PA_SOURCE_MESSAGE_GET_VOLUME,
168 PA_SOURCE_MESSAGE_SET_VOLUME,
169 PA_SOURCE_MESSAGE_GET_MUTE,
170 PA_SOURCE_MESSAGE_SET_MUTE,
171 PA_SOURCE_MESSAGE_GET_LATENCY,
172 PA_SOURCE_MESSAGE_GET_REQUESTED_LATENCY,
173 PA_SOURCE_MESSAGE_SET_STATE,
174 PA_SOURCE_MESSAGE_ATTACH,
175 PA_SOURCE_MESSAGE_DETACH,
176 PA_SOURCE_MESSAGE_SET_LATENCY_RANGE,
177 PA_SOURCE_MESSAGE_GET_LATENCY_RANGE,
178 PA_SOURCE_MESSAGE_SET_FIXED_LATENCY,
179 PA_SOURCE_MESSAGE_GET_FIXED_LATENCY,
180 PA_SOURCE_MESSAGE_GET_MAX_REWIND,
181 PA_SOURCE_MESSAGE_SET_MAX_REWIND,
182 PA_SOURCE_MESSAGE_MAX
183 } pa_source_message_t;
184
185 typedef struct pa_source_new_data {
186 char *name;
187 pa_proplist *proplist;
188
189 const char *driver;
190 pa_module *module;
191 pa_card *card;
192
193 pa_hashmap *ports;
194 char *active_port;
195
196 pa_sample_spec sample_spec;
197 pa_channel_map channel_map;
198 pa_cvolume volume;
199 pa_bool_t muted:1;
200
201 pa_bool_t volume_is_set:1;
202 pa_bool_t muted_is_set:1;
203 pa_bool_t sample_spec_is_set:1;
204 pa_bool_t channel_map_is_set:1;
205
206 pa_bool_t namereg_fail:1;
207
208 pa_bool_t save_port:1;
209 pa_bool_t save_volume:1;
210 pa_bool_t save_muted:1;
211 } pa_source_new_data;
212
213 pa_source_new_data* pa_source_new_data_init(pa_source_new_data *data);
214 void pa_source_new_data_set_name(pa_source_new_data *data, const char *name);
215 void pa_source_new_data_set_sample_spec(pa_source_new_data *data, const pa_sample_spec *spec);
216 void pa_source_new_data_set_channel_map(pa_source_new_data *data, const pa_channel_map *map);
217 void pa_source_new_data_set_volume(pa_source_new_data *data, const pa_cvolume *volume);
218 void pa_source_new_data_set_muted(pa_source_new_data *data, pa_bool_t mute);
219 void pa_source_new_data_set_port(pa_source_new_data *data, const char *port);
220 void pa_source_new_data_done(pa_source_new_data *data);
221
222 /*** To be called exclusively by the source driver, from main context */
223
224 pa_source* pa_source_new(
225 pa_core *core,
226 pa_source_new_data *data,
227 pa_source_flags_t flags);
228
229 void pa_source_put(pa_source *s);
230 void pa_source_unlink(pa_source *s);
231
232 void pa_source_set_description(pa_source *s, const char *description);
233 void pa_source_set_asyncmsgq(pa_source *s, pa_asyncmsgq *q);
234 void pa_source_set_rtpoll(pa_source *s, pa_rtpoll *p);
235
236 void pa_source_set_max_rewind(pa_source *s, size_t max_rewind);
237 void pa_source_set_latency_range(pa_source *s, pa_usec_t min_latency, pa_usec_t max_latency);
238 void pa_source_set_fixed_latency(pa_source *s, pa_usec_t latency);
239
240 void pa_source_detach(pa_source *s);
241 void pa_source_attach(pa_source *s);
242
243 void pa_source_set_soft_volume(pa_source *s, const pa_cvolume *volume);
244 void pa_source_volume_changed(pa_source *s, const pa_cvolume *new_volume);
245 void pa_source_mute_changed(pa_source *s, pa_bool_t new_muted);
246
247 int pa_source_sync_suspend(pa_source *s);
248
249 /*** May be called by everyone, from main context */
250
251 /* The returned value is supposed to be in the time domain of the sound card! */
252 pa_usec_t pa_source_get_latency(pa_source *s);
253 pa_usec_t pa_source_get_requested_latency(pa_source *s);
254 void pa_source_get_latency_range(pa_source *s, pa_usec_t *min_latency, pa_usec_t *max_latency);
255 pa_usec_t pa_source_get_fixed_latency(pa_source *s);
256
257 size_t pa_source_get_max_rewind(pa_source *s);
258
259 int pa_source_update_status(pa_source*s);
260 int pa_source_suspend(pa_source *s, pa_bool_t suspend, pa_suspend_cause_t cause);
261 int pa_source_suspend_all(pa_core *c, pa_bool_t suspend, pa_suspend_cause_t cause);
262
263 void pa_source_set_volume(pa_source *source, const pa_cvolume *volume, pa_bool_t save);
264 const pa_cvolume *pa_source_get_volume(pa_source *source, pa_bool_t force_refresh);
265
266 void pa_source_set_mute(pa_source *source, pa_bool_t mute, pa_bool_t save);
267 pa_bool_t pa_source_get_mute(pa_source *source, pa_bool_t force_refresh);
268
269 pa_bool_t pa_source_update_proplist(pa_source *s, pa_update_mode_t mode, pa_proplist *p);
270
271 int pa_source_set_port(pa_source *s, const char *name, pa_bool_t save);
272
273 unsigned pa_source_linked_by(pa_source *s); /* Number of connected streams */
274 unsigned pa_source_used_by(pa_source *s); /* Number of connected streams that are not corked */
275 unsigned pa_source_check_suspend(pa_source *s); /* Returns how many streams are active that don't allow suspensions */
276 #define pa_source_get_state(s) ((pa_source_state_t) (s)->state)
277
278 /* Moves all inputs away, and stores them in pa_queue */
279 pa_queue *pa_source_move_all_start(pa_source *s, pa_queue *q);
280 void pa_source_move_all_finish(pa_source *s, pa_queue *q, pa_bool_t save);
281 void pa_source_move_all_fail(pa_queue *q);
282
283 /*** To be called exclusively by the source driver, from IO context */
284
285 void pa_source_post(pa_source*s, const pa_memchunk *chunk);
286 void pa_source_post_direct(pa_source*s, pa_source_output *o, const pa_memchunk *chunk);
287 void pa_source_process_rewind(pa_source *s, size_t nbytes);
288
289 int pa_source_process_msg(pa_msgobject *o, int code, void *userdata, int64_t, pa_memchunk *chunk);
290
291 void pa_source_attach_within_thread(pa_source *s);
292 void pa_source_detach_within_thread(pa_source *s);
293
294 pa_usec_t pa_source_get_requested_latency_within_thread(pa_source *s);
295
296 void pa_source_set_max_rewind_within_thread(pa_source *s, size_t max_rewind);
297
298 void pa_source_set_latency_range_within_thread(pa_source *s, pa_usec_t min_latency, pa_usec_t max_latency);
299 void pa_source_set_fixed_latency_within_thread(pa_source *s, pa_usec_t latency);
300
301 /*** To be called exclusively by source output drivers, from IO context */
302
303 void pa_source_invalidate_requested_latency(pa_source *s, pa_bool_t dynamic);
304 pa_usec_t pa_source_get_latency_within_thread(pa_source *s);
305
306 #define pa_source_assert_io_context(s) \
307 pa_assert(pa_thread_mq_get() || !PA_SOURCE_IS_LINKED((s)->state))
308
309 #endif