]> code.delx.au - pulseaudio/blob - src/modules/module-combine.c
008fe6e74ec4c7bd7369846582d1fb75622a7f00
[pulseaudio] / src / modules / module-combine.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <assert.h>
27 #include <stdio.h>
28
29 #include <pulse/timeval.h>
30 #include <pulse/xmalloc.h>
31
32 #include <pulsecore/module.h>
33 #include <pulsecore/llist.h>
34 #include <pulsecore/sink.h>
35 #include <pulsecore/sink-input.h>
36 #include <pulsecore/memblockq.h>
37 #include <pulsecore/log.h>
38 #include <pulsecore/core-util.h>
39 #include <pulsecore/modargs.h>
40 #include <pulsecore/namereg.h>
41
42 #include "module-combine-symdef.h"
43
44 PA_MODULE_AUTHOR("Lennart Poettering")
45 PA_MODULE_DESCRIPTION("Combine multiple sinks to one")
46 PA_MODULE_VERSION(PACKAGE_VERSION)
47 PA_MODULE_USAGE(
48 "sink_name=<name for the sink> "
49 "master=<master sink> "
50 "slaves=<slave sinks> "
51 "adjust_time=<seconds> "
52 "resample_method=<method> "
53 "format=<sample format> "
54 "channels=<number of channels> "
55 "rate=<sample rate> "
56 "channel_map=<channel map> ")
57
58 #define DEFAULT_SINK_NAME "combined"
59 #define MEMBLOCKQ_MAXLENGTH (1024*170)
60 #define RENDER_SIZE (1024*10)
61
62 #define DEFAULT_ADJUST_TIME 20
63
64 static const char* const valid_modargs[] = {
65 "sink_name",
66 "master",
67 "slaves",
68 "adjust_time",
69 "resample_method",
70 "format",
71 "channels",
72 "rate",
73 "channel_map",
74 NULL
75 };
76
77 struct output {
78 struct userdata *userdata;
79 pa_sink_input *sink_input;
80 size_t counter;
81 pa_memblockq *memblockq;
82 pa_usec_t total_latency;
83 PA_LLIST_FIELDS(struct output);
84 };
85
86 struct userdata {
87 pa_module *module;
88 pa_core *core;
89 pa_sink *sink;
90 unsigned n_outputs;
91 struct output *master;
92 pa_time_event *time_event;
93 uint32_t adjust_time;
94
95 PA_LLIST_HEAD(struct output, outputs);
96 };
97
98 static void output_free(struct output *o);
99 static void clear_up(struct userdata *u);
100
101 static void update_usage(struct userdata *u) {
102 pa_module_set_used(u->module, u->sink ? pa_sink_used_by(u->sink) : 0);
103 }
104
105 static void adjust_rates(struct userdata *u) {
106 struct output *o;
107 pa_usec_t max_sink_latency = 0, min_total_latency = (pa_usec_t) -1, target_latency;
108 uint32_t base_rate;
109 assert(u && u->sink);
110
111 for (o = u->outputs; o; o = o->next) {
112 uint32_t sink_latency = o->sink_input->sink ? pa_sink_get_latency(o->sink_input->sink) : 0;
113
114 o->total_latency = sink_latency + pa_sink_input_get_latency(o->sink_input);
115
116 if (sink_latency > max_sink_latency)
117 max_sink_latency = sink_latency;
118
119 if (o->total_latency < min_total_latency)
120 min_total_latency = o->total_latency;
121 }
122
123 assert(min_total_latency != (pa_usec_t) -1);
124
125 target_latency = max_sink_latency > min_total_latency ? max_sink_latency : min_total_latency;
126
127 pa_log_info(__FILE__": [%s] target latency is %0.0f usec.", u->sink->name, (float) target_latency);
128
129 base_rate = u->sink->sample_spec.rate;
130
131 for (o = u->outputs; o; o = o->next) {
132 uint32_t r = base_rate;
133
134 if (o->total_latency < target_latency)
135 r -= (uint32_t) (((((double) target_latency - o->total_latency))/u->adjust_time)*r/ 1000000);
136 else if (o->total_latency > target_latency)
137 r += (uint32_t) (((((double) o->total_latency - target_latency))/u->adjust_time)*r/ 1000000);
138
139 if (r < (uint32_t) (base_rate*0.9) || r > (uint32_t) (base_rate*1.1))
140 pa_log_warn(__FILE__": [%s] sample rates too different, not adjusting (%u vs. %u).", o->sink_input->name, base_rate, r);
141 else {
142 pa_log_info(__FILE__": [%s] new rate is %u Hz; ratio is %0.3f; latency is %0.0f usec.", o->sink_input->name, r, (double) r / base_rate, (float) o->total_latency);
143 pa_sink_input_set_rate(o->sink_input, r);
144 }
145 }
146 }
147
148 static void request_memblock(struct userdata *u) {
149 pa_memchunk chunk;
150 struct output *o;
151 assert(u && u->sink);
152
153 update_usage(u);
154
155 if (pa_sink_render(u->sink, RENDER_SIZE, &chunk) < 0)
156 return;
157
158 for (o = u->outputs; o; o = o->next)
159 pa_memblockq_push_align(o->memblockq, &chunk);
160
161 pa_memblock_unref(chunk.memblock);
162 }
163
164 static void time_callback(pa_mainloop_api*a, pa_time_event* e, PA_GCC_UNUSED const struct timeval *tv, void *userdata) {
165 struct userdata *u = userdata;
166 struct timeval n;
167 assert(u && a && u->time_event == e);
168
169 adjust_rates(u);
170
171 pa_gettimeofday(&n);
172 n.tv_sec += u->adjust_time;
173 u->sink->core->mainloop->time_restart(e, &n);
174 }
175
176 static int sink_input_peek_cb(pa_sink_input *i, pa_memchunk *chunk) {
177 struct output *o = i->userdata;
178 assert(i && o && o->sink_input && chunk);
179
180 if (pa_memblockq_peek(o->memblockq, chunk) >= 0)
181 return 0;
182
183 /* Try harder */
184 request_memblock(o->userdata);
185
186 return pa_memblockq_peek(o->memblockq, chunk);
187 }
188
189 static void sink_input_drop_cb(pa_sink_input *i, const pa_memchunk *chunk, size_t length) {
190 struct output *o = i->userdata;
191 assert(i && o && o->sink_input && chunk && length);
192
193 pa_memblockq_drop(o->memblockq, chunk, length);
194 o->counter += length;
195 }
196
197 static void sink_input_kill_cb(pa_sink_input *i) {
198 struct output *o = i->userdata;
199 assert(i && o && o->sink_input);
200 pa_module_unload_request(o->userdata->module);
201 clear_up(o->userdata);
202 }
203
204 static pa_usec_t sink_input_get_latency_cb(pa_sink_input *i) {
205 struct output *o = i->userdata;
206 assert(i && o && o->sink_input);
207
208 return pa_bytes_to_usec(pa_memblockq_get_length(o->memblockq), &i->sample_spec);
209 }
210
211 static pa_usec_t sink_get_latency_cb(pa_sink *s) {
212 struct userdata *u = s->userdata;
213 assert(s && u && u->sink && u->master);
214
215 return
216 pa_sink_input_get_latency(u->master->sink_input) +
217 pa_sink_get_latency(u->master->sink_input->sink);
218 }
219
220 static struct output *output_new(struct userdata *u, pa_sink *sink, int resample_method) {
221 struct output *o = NULL;
222 char t[256];
223 pa_sink_input_new_data data;
224
225 assert(u && sink && u->sink);
226
227 o = pa_xmalloc(sizeof(struct output));
228 o->userdata = u;
229
230 o->counter = 0;
231 o->memblockq = pa_memblockq_new(
232 0,
233 MEMBLOCKQ_MAXLENGTH,
234 MEMBLOCKQ_MAXLENGTH,
235 pa_frame_size(&u->sink->sample_spec),
236 1,
237 0,
238 NULL,
239 sink->core->memblock_stat);
240
241 snprintf(t, sizeof(t), "%s: output #%u", u->sink->name, u->n_outputs+1);
242
243 pa_sink_input_new_data_init(&data);
244 data.sink = sink;
245 data.driver = __FILE__;
246 data.name = t;
247 pa_sink_input_new_data_set_sample_spec(&data, &u->sink->sample_spec);
248 pa_sink_input_new_data_set_channel_map(&data, &u->sink->channel_map);
249 data.module = u->module;
250
251 if (!(o->sink_input = pa_sink_input_new(u->core, &data, PA_SINK_INPUT_VARIABLE_RATE)))
252 goto fail;
253
254 o->sink_input->get_latency = sink_input_get_latency_cb;
255 o->sink_input->peek = sink_input_peek_cb;
256 o->sink_input->drop = sink_input_drop_cb;
257 o->sink_input->kill = sink_input_kill_cb;
258 o->sink_input->userdata = o;
259
260 PA_LLIST_PREPEND(struct output, u->outputs, o);
261 u->n_outputs++;
262 return o;
263
264 fail:
265
266 if (o) {
267 if (o->sink_input) {
268 pa_sink_input_disconnect(o->sink_input);
269 pa_sink_input_unref(o->sink_input);
270 }
271
272 if (o->memblockq)
273 pa_memblockq_free(o->memblockq);
274
275 pa_xfree(o);
276 }
277
278 return NULL;
279 }
280
281 static void output_free(struct output *o) {
282 assert(o);
283 PA_LLIST_REMOVE(struct output, o->userdata->outputs, o);
284 o->userdata->n_outputs--;
285 pa_memblockq_free(o->memblockq);
286 pa_sink_input_disconnect(o->sink_input);
287 pa_sink_input_unref(o->sink_input);
288 pa_xfree(o);
289 }
290
291 static void clear_up(struct userdata *u) {
292 struct output *o;
293 assert(u);
294
295 if (u->time_event) {
296 u->core->mainloop->time_free(u->time_event);
297 u->time_event = NULL;
298 }
299
300 while ((o = u->outputs))
301 output_free(o);
302
303 u->master = NULL;
304
305 if (u->sink) {
306 pa_sink_disconnect(u->sink);
307 pa_sink_unref(u->sink);
308 u->sink = NULL;
309 }
310 }
311
312 int pa__init(pa_core *c, pa_module*m) {
313 struct userdata *u;
314 pa_modargs *ma = NULL;
315 const char *master_name, *slaves, *rm;
316 pa_sink *master_sink;
317 char *n = NULL;
318 const char*split_state;
319 struct timeval tv;
320 int resample_method = -1;
321 pa_sample_spec ss;
322 pa_channel_map map;
323
324 assert(c && m);
325
326 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
327 pa_log(__FILE__": failed to parse module arguments");
328 goto fail;
329 }
330
331 if ((rm = pa_modargs_get_value(ma, "resample_method", NULL))) {
332 if ((resample_method = pa_parse_resample_method(rm)) < 0) {
333 pa_log(__FILE__": invalid resample method '%s'", rm);
334 goto fail;
335 }
336 }
337
338 u = pa_xnew(struct userdata, 1);
339 m->userdata = u;
340 u->sink = NULL;
341 u->n_outputs = 0;
342 u->master = NULL;
343 u->module = m;
344 u->core = c;
345 u->time_event = NULL;
346 u->adjust_time = DEFAULT_ADJUST_TIME;
347 PA_LLIST_HEAD_INIT(struct output, u->outputs);
348
349 if (pa_modargs_get_value_u32(ma, "adjust_time", &u->adjust_time) < 0) {
350 pa_log(__FILE__": failed to parse adjust_time value");
351 goto fail;
352 }
353
354 if (!(master_name = pa_modargs_get_value(ma, "master", NULL)) || !(slaves = pa_modargs_get_value(ma, "slaves", NULL))) {
355 pa_log(__FILE__": no master or slave sinks specified");
356 goto fail;
357 }
358
359 if (!(master_sink = pa_namereg_get(c, master_name, PA_NAMEREG_SINK, 1))) {
360 pa_log(__FILE__": invalid master sink '%s'", master_name);
361 goto fail;
362 }
363
364 ss = master_sink->sample_spec;
365 if ((pa_modargs_get_sample_spec(ma, &ss) < 0)) {
366 pa_log(__FILE__": invalid sample specification.");
367 goto fail;
368 }
369
370 if (ss.channels == master_sink->sample_spec.channels)
371 map = master_sink->channel_map;
372 else
373 pa_channel_map_init_auto(&map, ss.channels, PA_CHANNEL_MAP_DEFAULT);
374
375 if ((pa_modargs_get_channel_map(ma, &map) < 0)) {
376 pa_log(__FILE__": invalid channel map.");
377 goto fail;
378 }
379
380 if (ss.channels != map.channels) {
381 pa_log(__FILE__": channel map and sample specification don't match.");
382 goto fail;
383 }
384
385 if (!(u->sink = pa_sink_new(c, __FILE__, pa_modargs_get_value(ma, "sink_name", DEFAULT_SINK_NAME), 0, &ss, &map))) {
386 pa_log(__FILE__": failed to create sink");
387 goto fail;
388 }
389
390 pa_sink_set_owner(u->sink, m);
391 pa_sink_set_description(u->sink, "Combined sink");
392 u->sink->get_latency = sink_get_latency_cb;
393 u->sink->userdata = u;
394
395 if (!(u->master = output_new(u, master_sink, resample_method))) {
396 pa_log(__FILE__": failed to create master sink input on sink '%s'.", u->sink->name);
397 goto fail;
398 }
399
400 split_state = NULL;
401 while ((n = pa_split(slaves, ",", &split_state))) {
402 pa_sink *slave_sink;
403
404 if (!(slave_sink = pa_namereg_get(c, n, PA_NAMEREG_SINK, 1))) {
405 pa_log(__FILE__": invalid slave sink '%s'", n);
406 goto fail;
407 }
408
409 pa_xfree(n);
410
411 if (!output_new(u, slave_sink, resample_method)) {
412 pa_log(__FILE__": failed to create slave sink input on sink '%s'.", slave_sink->name);
413 goto fail;
414 }
415 }
416
417 if (u->n_outputs <= 1)
418 pa_log_warn(__FILE__": WARNING: no slave sinks specified.");
419
420 if (u->adjust_time > 0) {
421 pa_gettimeofday(&tv);
422 tv.tv_sec += u->adjust_time;
423 u->time_event = c->mainloop->time_new(c->mainloop, &tv, time_callback, u);
424 }
425
426 pa_modargs_free(ma);
427 return 0;
428
429 fail:
430 pa_xfree(n);
431
432 if (ma)
433 pa_modargs_free(ma);
434
435 pa__done(c, m);
436 return -1;
437 }
438
439 void pa__done(pa_core *c, pa_module*m) {
440 struct userdata *u;
441 assert(c && m);
442
443 if (!(u = m->userdata))
444 return;
445
446 clear_up(u);
447 pa_xfree(u);
448 }
449
450