1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2008 Lennart Poettering
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.1 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, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #ifdef HAVE_CONFIG_H
21 #include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <errno.h>
26
27 #include <pulse/rtclock.h>
28 #include <pulse/timeval.h>
29 #include <pulse/util.h>
30 #include <pulse/xmalloc.h>
31
32 #include <pulsecore/macro.h>
33 #include <pulsecore/module.h>
34 #include <pulsecore/llist.h>
35 #include <pulsecore/sink.h>
36 #include <pulsecore/sink-input.h>
37 #include <pulsecore/memblockq.h>
38 #include <pulsecore/log.h>
39 #include <pulsecore/core-rtclock.h>
40 #include <pulsecore/core-util.h>
41 #include <pulsecore/modargs.h>
42 #include <pulsecore/namereg.h>
43 #include <pulsecore/thread.h>
44 #include <pulsecore/thread-mq.h>
45 #include <pulsecore/rtpoll.h>
46 #include <pulsecore/time-smoother.h>
47 #include <pulsecore/strlist.h>
48
49 PA_MODULE_AUTHOR("Lennart Poettering");
50 PA_MODULE_DESCRIPTION("Combine multiple sinks to one");
51 PA_MODULE_VERSION(PACKAGE_VERSION);
52 PA_MODULE_LOAD_ONCE(false);
53 PA_MODULE_USAGE(
54 "sink_name=<name for the sink> "
55 "sink_properties=<properties for the sink> "
56 "slaves=<slave sinks> "
57 "adjust_time=<how often to readjust rates in s> "
58 "resample_method=<method> "
59 "format=<sample format> "
60 "rate=<sample rate> "
61 "channels=<number of channels> "
62 "channel_map=<channel map>");
63
64 #define DEFAULT_SINK_NAME "combined"
65
66 #define MEMBLOCKQ_MAXLENGTH (1024*1024*16)
67
68 #define DEFAULT_ADJUST_TIME_USEC (10*PA_USEC_PER_SEC)
69
70 #define BLOCK_USEC (PA_USEC_PER_MSEC * 200)
71
72 static const char* const valid_modargs[] = {
73 "sink_name",
74 "sink_properties",
75 "slaves",
76 "adjust_time",
77 "resample_method",
78 "format",
79 "rate",
80 "channels",
81 "channel_map",
82 NULL
83 };
84
85 struct output {
86 struct userdata *userdata;
87
88 pa_sink *sink;
89 pa_sink_input *sink_input;
90 bool ignore_state_change;
91
92 /* This message queue is only for POST messages, i.e. the messages that
93 * carry audio data from the sink thread to the output thread. The POST
94 * messages need to be handled in a separate queue, because the queue is
95 * processed not only in the output thread mainloop, but also inside the
96 * sink input pop() callback. Processing other messages (such as
97 * SET_REQUESTED_LATENCY) is not safe inside the pop() callback; at least
98 * one reason why it's not safe is that messages that generate rewind
99 * requests (such as SET_REQUESTED_LATENCY) cause crashes when processed
100 * in the pop() callback. */
101 pa_asyncmsgq *audio_inq;
102
103 /* This message queue is for all other messages than POST from the sink
104 * thread to the output thread (currently "all other messages" means just
105 * the SET_REQUESTED_LATENCY message). */
106 pa_asyncmsgq *control_inq;
107
108 /* Message queue from the output thread to the sink thread. */
109 pa_asyncmsgq *outq;
110
111 pa_rtpoll_item *audio_inq_rtpoll_item_read, *audio_inq_rtpoll_item_write;
112 pa_rtpoll_item *control_inq_rtpoll_item_read, *control_inq_rtpoll_item_write;
113 pa_rtpoll_item *outq_rtpoll_item_read, *outq_rtpoll_item_write;
114
115 pa_memblockq *memblockq;
116
117 /* For communication of the stream latencies to the main thread */
118 pa_usec_t total_latency;
119
120 /* For communication of the stream parameters to the sink thread */
121 pa_atomic_t max_request;
122 pa_atomic_t max_latency;
123 pa_atomic_t min_latency;
124
125 PA_LLIST_FIELDS(struct output);
126 };
127
128 struct userdata {
129 pa_core *core;
130 pa_module *module;
131 pa_sink *sink;
132
133 pa_thread *thread;
134 pa_thread_mq thread_mq;
135 pa_rtpoll *rtpoll;
136
137 pa_time_event *time_event;
138 pa_usec_t adjust_time;
139
140 bool automatic;
141 bool auto_desc;
142
143 pa_strlist *unlinked_slaves;
144
145 pa_hook_slot *sink_put_slot, *sink_unlink_slot, *sink_state_changed_slot;
146
147 pa_resample_method_t resample_method;
148
149 pa_usec_t block_usec;
150 pa_usec_t default_min_latency;
151 pa_usec_t default_max_latency;
152
153 pa_idxset* outputs; /* managed in main context */
154
155 struct {
156 PA_LLIST_HEAD(struct output, active_outputs); /* managed in IO thread context */
157 pa_atomic_t running; /* we cache that value here, so that every thread can query it cheaply */
158 pa_usec_t timestamp;
159 bool in_null_mode;
160 pa_smoother *smoother;
161 uint64_t counter;
162 } thread_info;
163 };
164
165 enum {
166 SINK_MESSAGE_ADD_OUTPUT = PA_SINK_MESSAGE_MAX,
167 SINK_MESSAGE_REMOVE_OUTPUT,
168 SINK_MESSAGE_NEED,
169 SINK_MESSAGE_UPDATE_LATENCY,
170 SINK_MESSAGE_UPDATE_MAX_REQUEST,
171 SINK_MESSAGE_UPDATE_LATENCY_RANGE
172 };
173
174 enum {
175 SINK_INPUT_MESSAGE_POST = PA_SINK_INPUT_MESSAGE_MAX,
176 SINK_INPUT_MESSAGE_SET_REQUESTED_LATENCY
177 };
178
179 static void output_disable(struct output *o);
180 static void output_enable(struct output *o);
181 static void output_free(struct output *o);
182 static int output_create_sink_input(struct output *o);
183
adjust_rates(struct userdata * u)184 static void adjust_rates(struct userdata *u) {
185 struct output *o;
186 pa_usec_t max_sink_latency = 0, min_total_latency = (pa_usec_t) -1, target_latency, avg_total_latency = 0;
187 uint32_t base_rate;
188 uint32_t idx;
189 unsigned n = 0;
190
191 pa_assert(u);
192 pa_sink_assert_ref(u->sink);
193
194 if (pa_idxset_size(u->outputs) <= 0)
195 return;
196
197 if (!PA_SINK_IS_OPENED(u->sink->state))
198 return;
199
200 PA_IDXSET_FOREACH(o, u->outputs, idx) {
201 pa_usec_t sink_latency;
202
203 if (!o->sink_input || !PA_SINK_IS_OPENED(o->sink->state))
204 continue;
205
206 o->total_latency = pa_sink_input_get_latency(o->sink_input, &sink_latency);
207 o->total_latency += sink_latency;
208
209 if (sink_latency > max_sink_latency)
210 max_sink_latency = sink_latency;
211
212 if (min_total_latency == (pa_usec_t) -1 || o->total_latency < min_total_latency)
213 min_total_latency = o->total_latency;
214
215 avg_total_latency += o->total_latency;
216 n++;
217
218 pa_log_debug("[%s] total=%0.2fms sink=%0.2fms ", o->sink->name, (double) o->total_latency / PA_USEC_PER_MSEC, (double) sink_latency / PA_USEC_PER_MSEC);
219
220 if (o->total_latency > 10*PA_USEC_PER_SEC)
221 pa_log_warn("[%s] Total latency of output is very high (%0.2fms), most likely the audio timing in one of your drivers is broken.", o->sink->name, (double) o->total_latency / PA_USEC_PER_MSEC);
222 }
223
224 if (min_total_latency == (pa_usec_t) -1)
225 return;
226
227 avg_total_latency /= n;
228
229 target_latency = PA_MAX(max_sink_latency, min_total_latency);
230
231 pa_log_info("[%s] avg total latency is %0.2f msec.", u->sink->name, (double) avg_total_latency / PA_USEC_PER_MSEC);
232 pa_log_info("[%s] target latency is %0.2f msec.", u->sink->name, (double) target_latency / PA_USEC_PER_MSEC);
233
234 base_rate = u->sink->sample_spec.rate;
235
236 PA_IDXSET_FOREACH(o, u->outputs, idx) {
237 uint32_t new_rate = base_rate;
238 uint32_t current_rate;
239
240 if (!o->sink_input || !PA_SINK_IS_OPENED(o->sink->state))
241 continue;
242
243 current_rate = o->sink_input->sample_spec.rate;
244
245 if (o->total_latency != target_latency)
246 new_rate += (uint32_t) (((double) o->total_latency - (double) target_latency) / (double) u->adjust_time * (double) new_rate);
247
248 if (new_rate < (uint32_t) (base_rate*0.8) || new_rate > (uint32_t) (base_rate*1.25)) {
249 pa_log_warn("[%s] sample rates too different, not adjusting (%u vs. %u).", o->sink_input->sink->name, base_rate, new_rate);
250 new_rate = base_rate;
251 } else {
252 if (base_rate < new_rate + 20 && new_rate < base_rate + 20)
253 new_rate = base_rate;
254 /* Do the adjustment in small steps; 2‰ can be considered inaudible */
255 if (new_rate < (uint32_t) (current_rate*0.998) || new_rate > (uint32_t) (current_rate*1.002)) {
256 pa_log_info("[%s] new rate of %u Hz not within 2‰ of %u Hz, forcing smaller adjustment", o->sink_input->sink->name, new_rate, current_rate);
257 new_rate = PA_CLAMP(new_rate, (uint32_t) (current_rate*0.998), (uint32_t) (current_rate*1.002));
258 }
259 pa_log_info("[%s] new rate is %u Hz; ratio is %0.3f; latency is %0.2f msec.", o->sink_input->sink->name, new_rate, (double) new_rate / base_rate, (double) o->total_latency / PA_USEC_PER_MSEC);
260 }
261 pa_sink_input_set_rate(o->sink_input, new_rate);
262 }
263
264 pa_asyncmsgq_send(u->sink->asyncmsgq, PA_MSGOBJECT(u->sink), SINK_MESSAGE_UPDATE_LATENCY, NULL, (int64_t) avg_total_latency, NULL);
265 }
266
time_callback(pa_mainloop_api * a,pa_time_event * e,const struct timeval * t,void * userdata)267 static void time_callback(pa_mainloop_api *a, pa_time_event *e, const struct timeval *t, void *userdata) {
268 struct userdata *u = userdata;
269
270 pa_assert(u);
271 pa_assert(a);
272 pa_assert(u->time_event == e);
273
274 adjust_rates(u);
275
276 if (u->sink->state == PA_SINK_SUSPENDED) {
277 u->core->mainloop->time_free(e);
278 u->time_event = NULL;
279 } else
280 pa_core_rttime_restart(u->core, e, pa_rtclock_now() + u->adjust_time);
281 }
282
process_render_null(struct userdata * u,pa_usec_t now)283 static void process_render_null(struct userdata *u, pa_usec_t now) {
284 size_t ate = 0;
285
286 pa_assert(u);
287 pa_assert(u->sink->thread_info.state == PA_SINK_RUNNING);
288
289 if (u->thread_info.in_null_mode)
290 u->thread_info.timestamp = now;
291
292 while (u->thread_info.timestamp < now + u->block_usec) {
293 pa_memchunk chunk;
294
295 pa_sink_render(u->sink, u->sink->thread_info.max_request, &chunk);
296 pa_memblock_unref(chunk.memblock);
297
298 u->thread_info.counter += chunk.length;
299
300 /* pa_log_debug("Ate %lu bytes.", (unsigned long) chunk.length); */
301 u->thread_info.timestamp += pa_bytes_to_usec(chunk.length, &u->sink->sample_spec);
302
303 ate += chunk.length;
304
305 if (ate >= u->sink->thread_info.max_request)
306 break;
307 }
308
309 /* pa_log_debug("Ate in sum %lu bytes (of %lu)", (unsigned long) ate, (unsigned long) nbytes); */
310
311 pa_smoother_put(u->thread_info.smoother, now,
312 pa_bytes_to_usec(u->thread_info.counter, &u->sink->sample_spec) - (u->thread_info.timestamp - now));
313 }
314
thread_func(void * userdata)315 static void thread_func(void *userdata) {
316 struct userdata *u = userdata;
317
318 pa_assert(u);
319
320 pa_log_debug("Thread starting up");
321
322 if (u->core->realtime_scheduling)
323 pa_thread_make_realtime(u->core->realtime_priority+1);
324
325 pa_thread_mq_install(&u->thread_mq);
326
327 u->thread_info.timestamp = pa_rtclock_now();
328 u->thread_info.in_null_mode = false;
329
330 for (;;) {
331 int ret;
332
333 if (PA_UNLIKELY(u->sink->thread_info.rewind_requested))
334 pa_sink_process_rewind(u->sink, 0);
335
336 /* If no outputs are connected, render some data and drop it immediately. */
337 if (u->sink->thread_info.state == PA_SINK_RUNNING && !u->thread_info.active_outputs) {
338 pa_usec_t now;
339
340 now = pa_rtclock_now();
341
342 if (!u->thread_info.in_null_mode || u->thread_info.timestamp <= now)
343 process_render_null(u, now);
344
345 pa_rtpoll_set_timer_absolute(u->rtpoll, u->thread_info.timestamp);
346 u->thread_info.in_null_mode = true;
347 } else {
348 pa_rtpoll_set_timer_disabled(u->rtpoll);
349 u->thread_info.in_null_mode = false;
350 }
351
352 /* Hmm, nothing to do. Let's sleep */
353 if ((ret = pa_rtpoll_run(u->rtpoll)) < 0) {
354 pa_log_info("pa_rtpoll_run() = %i", ret);
355 goto fail;
356 }
357
358 if (ret == 0)
359 goto finish;
360 }
361
362 fail:
363 /* If this was no regular exit from the loop we have to continue
364 * processing messages until we received PA_MESSAGE_SHUTDOWN */
365 pa_asyncmsgq_post(u->thread_mq.outq, PA_MSGOBJECT(u->core), PA_CORE_MESSAGE_UNLOAD_MODULE, u->module, 0, NULL, NULL);
366 pa_asyncmsgq_wait_for(u->thread_mq.inq, PA_MESSAGE_SHUTDOWN);
367
368 finish:
369 pa_log_debug("Thread shutting down");
370 }
371
372 /* Called from combine sink I/O thread context */
render_memblock(struct userdata * u,struct output * o,size_t length)373 static void render_memblock(struct userdata *u, struct output *o, size_t length) {
374 pa_assert(u);
375 pa_assert(o);
376
377 /* We are run by the sink thread, on behalf of an output (o). The
378 * output is waiting for us, hence it is safe to access its
379 * mainblockq and asyncmsgq directly. */
380
381 /* If we are not running, we cannot produce any data */
382 if (!pa_atomic_load(&u->thread_info.running))
383 return;
384
385 /* Maybe there's some data in the requesting output's queue
386 * now? */
387 while (pa_asyncmsgq_process_one(o->audio_inq) > 0)
388 ;
389
390 /* Ok, now let's prepare some data if we really have to */
391 while (!pa_memblockq_is_readable(o->memblockq)) {
392 struct output *j;
393 pa_memchunk chunk;
394
395 /* Render data! */
396 pa_sink_render(u->sink, length, &chunk);
397
398 u->thread_info.counter += chunk.length;
399
400 /* OK, let's send this data to the other threads */
401 PA_LLIST_FOREACH(j, u->thread_info.active_outputs) {
402 if (j == o)
403 continue;
404
405 pa_asyncmsgq_post(j->audio_inq, PA_MSGOBJECT(j->sink_input), SINK_INPUT_MESSAGE_POST, NULL, 0, &chunk, NULL);
406 }
407
408 /* And place it directly into the requesting output's queue */
409 pa_memblockq_push_align(o->memblockq, &chunk);
410 pa_memblock_unref(chunk.memblock);
411 }
412 }
413
414 /* Called from I/O thread context */
request_memblock(struct output * o,size_t length)415 static void request_memblock(struct output *o, size_t length) {
416 pa_assert(o);
417 pa_sink_input_assert_ref(o->sink_input);
418 pa_sink_assert_ref(o->userdata->sink);
419
420 /* If another thread already prepared some data we received
421 * the data over the asyncmsgq, hence let's first process
422 * it. */
423 while (pa_asyncmsgq_process_one(o->audio_inq) > 0)
424 ;
425
426 /* Check whether we're now readable */
427 if (pa_memblockq_is_readable(o->memblockq))
428 return;
429
430 /* OK, we need to prepare new data, but only if the sink is actually running */
431 if (pa_atomic_load(&o->userdata->thread_info.running))
432 pa_asyncmsgq_send(o->outq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_NEED, o, (int64_t) length, NULL);
433 }
434
435 /* Called from I/O thread context */
sink_input_pop_cb(pa_sink_input * i,size_t nbytes,pa_memchunk * chunk)436 static int sink_input_pop_cb(pa_sink_input *i, size_t nbytes, pa_memchunk *chunk) {
437 struct output *o;
438
439 pa_sink_input_assert_ref(i);
440 pa_assert_se(o = i->userdata);
441
442 /* If necessary, get some new data */
443 request_memblock(o, nbytes);
444
445 /* pa_log("%s q size is %u + %u (%u/%u)", */
446 /* i->sink->name, */
447 /* pa_memblockq_get_nblocks(o->memblockq), */
448 /* pa_memblockq_get_nblocks(i->thread_info.render_memblockq), */
449 /* pa_memblockq_get_maxrewind(o->memblockq), */
450 /* pa_memblockq_get_maxrewind(i->thread_info.render_memblockq)); */
451
452 if (pa_memblockq_peek(o->memblockq, chunk) < 0)
453 return -1;
454
455 pa_memblockq_drop(o->memblockq, chunk->length);
456
457 return 0;
458 }
459
460 /* Called from I/O thread context */
sink_input_process_rewind_cb(pa_sink_input * i,size_t nbytes)461 static void sink_input_process_rewind_cb(pa_sink_input *i, size_t nbytes) {
462 struct output *o;
463
464 pa_sink_input_assert_ref(i);
465 pa_assert_se(o = i->userdata);
466
467 pa_memblockq_rewind(o->memblockq, nbytes);
468 }
469
470 /* Called from I/O thread context */
sink_input_update_max_rewind_cb(pa_sink_input * i,size_t nbytes)471 static void sink_input_update_max_rewind_cb(pa_sink_input *i, size_t nbytes) {
472 struct output *o;
473
474 pa_sink_input_assert_ref(i);
475 pa_assert_se(o = i->userdata);
476
477 pa_memblockq_set_maxrewind(o->memblockq, nbytes);
478 }
479
480 /* Called from I/O thread context */
sink_input_update_max_request_cb(pa_sink_input * i,size_t nbytes)481 static void sink_input_update_max_request_cb(pa_sink_input *i, size_t nbytes) {
482 struct output *o;
483
484 pa_sink_input_assert_ref(i);
485 pa_assert_se(o = i->userdata);
486
487 if (pa_atomic_load(&o->max_request) == (int) nbytes)
488 return;
489
490 pa_atomic_store(&o->max_request, (int) nbytes);
491 pa_log_debug("Sink input update max request %lu", (unsigned long) nbytes);
492 pa_asyncmsgq_post(o->outq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_UPDATE_MAX_REQUEST, NULL, 0, NULL, NULL);
493 }
494
495 /* Called from thread context */
sink_input_update_sink_latency_range_cb(pa_sink_input * i)496 static void sink_input_update_sink_latency_range_cb(pa_sink_input *i) {
497 struct output *o;
498 pa_usec_t min, max, fix;
499
500 pa_assert(i);
501
502 pa_sink_input_assert_ref(i);
503 pa_assert_se(o = i->userdata);
504
505 fix = i->sink->thread_info.fixed_latency;
506 if (fix > 0) {
507 min = fix;
508 max = fix;
509 } else {
510 min = i->sink->thread_info.min_latency;
511 max = i->sink->thread_info.max_latency;
512 }
513
514 if ((pa_atomic_load(&o->min_latency) == (int) min) &&
515 (pa_atomic_load(&o->max_latency) == (int) max))
516 return;
517
518 pa_atomic_store(&o->min_latency, (int) min);
519 pa_atomic_store(&o->max_latency, (int) max);
520 pa_log_debug("Sink input update latency range %lu %lu", (unsigned long) min, (unsigned long) max);
521 pa_asyncmsgq_post(o->outq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_UPDATE_LATENCY_RANGE, NULL, 0, NULL, NULL);
522 }
523
524 /* Called from I/O thread context */
sink_input_attach_cb(pa_sink_input * i)525 static void sink_input_attach_cb(pa_sink_input *i) {
526 struct output *o;
527 pa_usec_t fix, min, max;
528 size_t nbytes;
529
530 pa_sink_input_assert_ref(i);
531 pa_assert_se(o = i->userdata);
532
533 /* Set up the queue from the sink thread to us */
534 pa_assert(!o->audio_inq_rtpoll_item_read);
535 pa_assert(!o->control_inq_rtpoll_item_read);
536 pa_assert(!o->outq_rtpoll_item_write);
537
538 o->audio_inq_rtpoll_item_read = pa_rtpoll_item_new_asyncmsgq_read(
539 i->sink->thread_info.rtpoll,
540 PA_RTPOLL_LATE, /* This one is not that important, since we check for data in _peek() anyway. */
541 o->audio_inq);
542
543 o->control_inq_rtpoll_item_read = pa_rtpoll_item_new_asyncmsgq_read(
544 i->sink->thread_info.rtpoll,
545 PA_RTPOLL_NORMAL,
546 o->control_inq);
547
548 o->outq_rtpoll_item_write = pa_rtpoll_item_new_asyncmsgq_write(
549 i->sink->thread_info.rtpoll,
550 PA_RTPOLL_EARLY,
551 o->outq);
552
553 pa_sink_input_request_rewind(i, 0, false, true, true);
554
555 nbytes = pa_sink_input_get_max_request(i);
556 pa_atomic_store(&o->max_request, (int) nbytes);
557 pa_log_debug("attach max request %lu", (unsigned long) nbytes);
558
559 fix = i->sink->thread_info.fixed_latency;
560 if (fix > 0) {
561 min = max = fix;
562 } else {
563 min = i->sink->thread_info.min_latency;
564 max = i->sink->thread_info.max_latency;
565 }
566 pa_atomic_store(&o->min_latency, (int) min);
567 pa_atomic_store(&o->max_latency, (int) max);
568 pa_log_debug("attach latency range %lu %lu", (unsigned long) min, (unsigned long) max);
569
570 /* We register the output. That means that the sink will start to pass data to
571 * this output. */
572 pa_asyncmsgq_send(o->userdata->sink->asyncmsgq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_ADD_OUTPUT, o, 0, NULL);
573 }
574
575 /* Called from I/O thread context */
sink_input_detach_cb(pa_sink_input * i)576 static void sink_input_detach_cb(pa_sink_input *i) {
577 struct output *o;
578
579 pa_sink_input_assert_ref(i);
580 pa_assert_se(o = i->userdata);
581
582 /* We unregister the output. That means that the sink doesn't
583 * pass any further data to this output */
584 pa_asyncmsgq_send(o->userdata->sink->asyncmsgq, PA_MSGOBJECT(o->userdata->sink), SINK_MESSAGE_REMOVE_OUTPUT, o, 0, NULL);
585
586 if (o->audio_inq_rtpoll_item_read) {
587 pa_rtpoll_item_free(o->audio_inq_rtpoll_item_read);
588 o->audio_inq_rtpoll_item_read = NULL;
589 }
590
591 if (o->control_inq_rtpoll_item_read) {
592 pa_rtpoll_item_free(o->control_inq_rtpoll_item_read);
593 o->control_inq_rtpoll_item_read = NULL;
594 }
595
596 if (o->outq_rtpoll_item_write) {
597 pa_rtpoll_item_free(o->outq_rtpoll_item_write);
598 o->outq_rtpoll_item_write = NULL;
599 }
600
601 }
602
603 /* Called from main context */
sink_input_kill_cb(pa_sink_input * i)604 static void sink_input_kill_cb(pa_sink_input *i) {
605 struct output *o;
606
607 pa_sink_input_assert_ref(i);
608 pa_assert_se(o = i->userdata);
609
610 pa_module_unload_request(o->userdata->module, true);
611 pa_idxset_remove_by_data(o->userdata->outputs, o, NULL);
612 output_free(o);
613 }
614
615 /* Called from thread context */
sink_input_process_msg(pa_msgobject * obj,int code,void * data,int64_t offset,pa_memchunk * chunk)616 static int sink_input_process_msg(pa_msgobject *obj, int code, void *data, int64_t offset, pa_memchunk *chunk) {
617 struct output *o = PA_SINK_INPUT(obj)->userdata;
618
619 switch (code) {
620
621 case PA_SINK_INPUT_MESSAGE_GET_LATENCY: {
622 pa_usec_t *r = data;
623
624 *r = pa_bytes_to_usec(pa_memblockq_get_length(o->memblockq), &o->sink_input->sample_spec);
625
626 /* Fall through, the default handler will add in the extra
627 * latency added by the resampler */
628 break;
629 }
630
631 case SINK_INPUT_MESSAGE_POST:
632
633 if (PA_SINK_IS_OPENED(o->sink_input->sink->thread_info.state))
634 pa_memblockq_push_align(o->memblockq, chunk);
635 else
636 pa_memblockq_flush_write(o->memblockq, true);
637
638 return 0;
639
640 case SINK_INPUT_MESSAGE_SET_REQUESTED_LATENCY: {
641 pa_usec_t latency = (pa_usec_t) offset;
642
643 pa_sink_input_set_requested_latency_within_thread(o->sink_input, latency);
644
645 return 0;
646 }
647 }
648
649 return pa_sink_input_process_msg(obj, code, data, offset, chunk);
650 }
651
652 /* Called from main context */
suspend(struct userdata * u)653 static void suspend(struct userdata *u) {
654 struct output *o;
655 uint32_t idx;
656
657 pa_assert(u);
658
659 /* Let's suspend by unlinking all streams */
660 PA_IDXSET_FOREACH(o, u->outputs, idx)
661 output_disable(o);
662
663 pa_log_info("Device suspended...");
664 }
665
666 /* Called from main context */
unsuspend(struct userdata * u)667 static void unsuspend(struct userdata *u) {
668 struct output *o;
669 uint32_t idx;
670
671 pa_assert(u);
672
673 /* Let's resume */
674 PA_IDXSET_FOREACH(o, u->outputs, idx)
675 output_enable(o);
676
677 if (!u->time_event && u->adjust_time > 0)
678 u->time_event = pa_core_rttime_new(u->core, pa_rtclock_now() + u->adjust_time, time_callback, u);
679
680 pa_log_info("Resumed successfully...");
681 }
682
683 /* Called from main context */
sink_set_state_in_main_thread_cb(pa_sink * sink,pa_sink_state_t state,pa_suspend_cause_t suspend_cause)684 static int sink_set_state_in_main_thread_cb(pa_sink *sink, pa_sink_state_t state, pa_suspend_cause_t suspend_cause) {
685 struct userdata *u;
686
687 pa_sink_assert_ref(sink);
688 pa_assert_se(u = sink->userdata);
689
690 /* It may be that only the suspend cause is changing, in which
691 * case there's nothing to do. */
692 if (state == u->sink->state)
693 return 0;
694
695 /* Please note that in contrast to the ALSA modules we call
696 * suspend/unsuspend from main context here! */
697
698 switch (state) {
699 case PA_SINK_SUSPENDED:
700 pa_assert(PA_SINK_IS_OPENED(u->sink->state));
701
702 suspend(u);
703 break;
704
705 case PA_SINK_IDLE:
706 case PA_SINK_RUNNING:
707
708 if (u->sink->state == PA_SINK_SUSPENDED)
709 unsuspend(u);
710
711 break;
712
713 case PA_SINK_UNLINKED:
714 case PA_SINK_INIT:
715 case PA_SINK_INVALID_STATE:
716 ;
717 }
718
719 return 0;
720 }
721
722 /* Called from the IO thread. */
sink_set_state_in_io_thread_cb(pa_sink * s,pa_sink_state_t new_state,pa_suspend_cause_t new_suspend_cause)723 static int sink_set_state_in_io_thread_cb(pa_sink *s, pa_sink_state_t new_state, pa_suspend_cause_t new_suspend_cause) {
724 struct userdata *u;
725 bool running;
726
727 pa_assert(s);
728 pa_assert_se(u = s->userdata);
729
730 /* It may be that only the suspend cause is changing, in which case there's
731 * nothing to do. */
732 if (new_state == s->thread_info.state)
733 return 0;
734
735 running = new_state == PA_SINK_RUNNING;
736 pa_atomic_store(&u->thread_info.running, running);
737
738 if (running)
739 pa_smoother_resume(u->thread_info.smoother, pa_rtclock_now(), true);
740 else
741 pa_smoother_pause(u->thread_info.smoother, pa_rtclock_now());
742
743 return 0;
744 }
745
746 /* Called from IO context */
update_max_request(struct userdata * u)747 static void update_max_request(struct userdata *u) {
748 size_t max_request = 0;
749 struct output *o;
750
751 pa_assert(u);
752 pa_sink_assert_io_context(u->sink);
753
754 /* Collects the max_request values of all streams and sets the
755 * largest one locally */
756
757 PA_LLIST_FOREACH(o, u->thread_info.active_outputs) {
758 size_t mr = (size_t) pa_atomic_load(&o->max_request);
759
760 if (mr > max_request)
761 max_request = mr;
762 }
763
764 if (max_request <= 0)
765 max_request = pa_usec_to_bytes(u->block_usec, &u->sink->sample_spec);
766
767 pa_log_debug("Sink update max request %lu", (unsigned long) max_request);
768 pa_sink_set_max_request_within_thread(u->sink, max_request);
769 }
770
771 /* Called from IO context */
update_latency_range(struct userdata * u)772 static void update_latency_range(struct userdata *u) {
773 pa_usec_t min_latency = 0, max_latency = (pa_usec_t) -1;
774 struct output *o;
775
776 pa_assert(u);
777 pa_sink_assert_io_context(u->sink);
778
779 /* Collects the latency_range values of all streams and sets
780 * the max of min and min of max locally */
781 PA_LLIST_FOREACH(o, u->thread_info.active_outputs) {
782 pa_usec_t min = (size_t) pa_atomic_load(&o->min_latency);
783 pa_usec_t max = (size_t) pa_atomic_load(&o->max_latency);
784
785 if (min > min_latency)
786 min_latency = min;
787 if (max_latency == (pa_usec_t) -1 || max < max_latency)
788 max_latency = max;
789 }
790 if (max_latency == (pa_usec_t) -1) {
791 /* No outputs, use default limits. */
792 min_latency = u->default_min_latency;
793 max_latency = u->default_max_latency;
794 }
795
796 /* As long as we don't support rewinding, we should limit the max latency
797 * to a conservative value. */
798 if (max_latency > u->default_max_latency)
799 max_latency = u->default_max_latency;
800
801 /* Never ever try to set lower max latency than min latency, it just
802 * doesn't make sense. */
803 if (max_latency < min_latency)
804 max_latency = min_latency;
805
806 pa_log_debug("Sink update latency range %" PRIu64 " %" PRIu64, min_latency, max_latency);
807 pa_sink_set_latency_range_within_thread(u->sink, min_latency, max_latency);
808 }
809
810 /* Called from thread context of the io thread */
output_add_within_thread(struct output * o)811 static void output_add_within_thread(struct output *o) {
812 pa_assert(o);
813 pa_sink_assert_io_context(o->sink);
814
815 PA_LLIST_PREPEND(struct output, o->userdata->thread_info.active_outputs, o);
816
817 pa_assert(!o->outq_rtpoll_item_read);
818 pa_assert(!o->audio_inq_rtpoll_item_write);
819 pa_assert(!o->control_inq_rtpoll_item_write);
820
821 o->outq_rtpoll_item_read = pa_rtpoll_item_new_asyncmsgq_read(
822 o->userdata->rtpoll,
823 PA_RTPOLL_EARLY-1, /* This item is very important */
824 o->outq);
825 o->audio_inq_rtpoll_item_write = pa_rtpoll_item_new_asyncmsgq_write(
826 o->userdata->rtpoll,
827 PA_RTPOLL_EARLY,
828 o->audio_inq);
829 o->control_inq_rtpoll_item_write = pa_rtpoll_item_new_asyncmsgq_write(
830 o->userdata->rtpoll,
831 PA_RTPOLL_NORMAL,
832 o->control_inq);
833 }
834
835 /* Called from thread context of the io thread */
output_remove_within_thread(struct output * o)836 static void output_remove_within_thread(struct output *o) {
837 pa_assert(o);
838 pa_sink_assert_io_context(o->sink);
839
840 PA_LLIST_REMOVE(struct output, o->userdata->thread_info.active_outputs, o);
841
842 if (o->outq_rtpoll_item_read) {
843 pa_rtpoll_item_free(o->outq_rtpoll_item_read);
844 o->outq_rtpoll_item_read = NULL;
845 }
846
847 if (o->audio_inq_rtpoll_item_write) {
848 pa_rtpoll_item_free(o->audio_inq_rtpoll_item_write);
849 o->audio_inq_rtpoll_item_write = NULL;
850 }
851
852 if (o->control_inq_rtpoll_item_write) {
853 pa_rtpoll_item_free(o->control_inq_rtpoll_item_write);
854 o->control_inq_rtpoll_item_write = NULL;
855 }
856 }
857
858 /* Called from sink I/O thread context */
sink_update_requested_latency(pa_sink * s)859 static void sink_update_requested_latency(pa_sink *s) {
860 struct userdata *u;
861 struct output *o;
862
863 pa_sink_assert_ref(s);
864 pa_assert_se(u = s->userdata);
865
866 u->block_usec = pa_sink_get_requested_latency_within_thread(s);
867
868 if (u->block_usec == (pa_usec_t) -1)
869 u->block_usec = s->thread_info.max_latency;
870
871 pa_log_debug("Sink update requested latency %0.2f", (double) u->block_usec / PA_USEC_PER_MSEC);
872
873 /* Just hand this one over to all sink_inputs */
874 PA_LLIST_FOREACH(o, u->thread_info.active_outputs) {
875 pa_asyncmsgq_post(o->control_inq, PA_MSGOBJECT(o->sink_input), SINK_INPUT_MESSAGE_SET_REQUESTED_LATENCY, NULL,
876 u->block_usec, NULL, NULL);
877 }
878 }
879
880
881 /* Called from thread context of the io thread */
sink_process_msg(pa_msgobject * o,int code,void * data,int64_t offset,pa_memchunk * chunk)882 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) {
883 struct userdata *u = PA_SINK(o)->userdata;
884
885 switch (code) {
886
887 case PA_SINK_MESSAGE_GET_LATENCY: {
888 pa_usec_t x, y, c;
889 int64_t *delay = data;
890
891 x = pa_rtclock_now();
892 y = pa_smoother_get(u->thread_info.smoother, x);
893
894 c = pa_bytes_to_usec(u->thread_info.counter, &u->sink->sample_spec);
895
896 *delay = (int64_t)c - y;
897
898 return 0;
899 }
900
901 case SINK_MESSAGE_ADD_OUTPUT:
902 output_add_within_thread(data);
903 update_max_request(u);
904 update_latency_range(u);
905 return 0;
906
907 case SINK_MESSAGE_REMOVE_OUTPUT:
908 output_remove_within_thread(data);
909 update_max_request(u);
910 update_latency_range(u);
911 return 0;
912
913 case SINK_MESSAGE_NEED:
914 render_memblock(u, (struct output*) data, (size_t) offset);
915 return 0;
916
917 case SINK_MESSAGE_UPDATE_LATENCY: {
918 pa_usec_t x, y, latency = (pa_usec_t) offset;
919
920 x = pa_rtclock_now();
921 y = pa_bytes_to_usec(u->thread_info.counter, &u->sink->sample_spec);
922
923 if (y > latency)
924 y -= latency;
925 else
926 y = 0;
927
928 pa_smoother_put(u->thread_info.smoother, x, y);
929 return 0;
930 }
931
932 case SINK_MESSAGE_UPDATE_MAX_REQUEST:
933 update_max_request(u);
934 break;
935
936 case SINK_MESSAGE_UPDATE_LATENCY_RANGE:
937 update_latency_range(u);
938 break;
939
940 }
941
942 return pa_sink_process_msg(o, code, data, offset, chunk);
943 }
944
update_description(struct userdata * u)945 static void update_description(struct userdata *u) {
946 bool first = true;
947 char *t;
948 struct output *o;
949 uint32_t idx;
950
951 pa_assert(u);
952
953 if (!u->auto_desc)
954 return;
955
956 if (pa_idxset_isempty(u->outputs)) {
957 pa_sink_set_description(u->sink, "Simultaneous output");
958 return;
959 }
960
961 t = pa_xstrdup("Simultaneous output to");
962
963 PA_IDXSET_FOREACH(o, u->outputs, idx) {
964 char *e;
965
966 if (first) {
967 e = pa_sprintf_malloc("%s %s", t, pa_strnull(pa_proplist_gets(o->sink->proplist, PA_PROP_DEVICE_DESCRIPTION)));
968 first = false;
969 } else
970 e = pa_sprintf_malloc("%s, %s", t, pa_strnull(pa_proplist_gets(o->sink->proplist, PA_PROP_DEVICE_DESCRIPTION)));
971
972 pa_xfree(t);
973 t = e;
974 }
975
976 pa_sink_set_description(u->sink, t);
977 pa_xfree(t);
978 }
979
output_create_sink_input(struct output * o)980 static int output_create_sink_input(struct output *o) {
981 struct userdata *u;
982 pa_sink_input_new_data data;
983
984 pa_assert(o);
985
986 if (o->sink_input)
987 return 0;
988
989 u = o->userdata;
990
991 pa_sink_input_new_data_init(&data);
992 pa_sink_input_new_data_set_sink(&data, o->sink, false, true);
993 data.driver = __FILE__;
994 pa_proplist_setf(data.proplist, PA_PROP_MEDIA_NAME, "Simultaneous output on %s", pa_strnull(pa_proplist_gets(o->sink->proplist, PA_PROP_DEVICE_DESCRIPTION)));
995 pa_proplist_sets(data.proplist, PA_PROP_MEDIA_ROLE, "filter");
996 pa_sink_input_new_data_set_sample_spec(&data, &u->sink->sample_spec);
997 pa_sink_input_new_data_set_channel_map(&data, &u->sink->channel_map);
998 data.module = u->module;
999 data.resample_method = u->resample_method;
1000 data.flags = PA_SINK_INPUT_VARIABLE_RATE|PA_SINK_INPUT_DONT_MOVE|PA_SINK_INPUT_NO_CREATE_ON_SUSPEND;
1001
1002 pa_sink_input_new(&o->sink_input, u->core, &data);
1003
1004 pa_sink_input_new_data_done(&data);
1005
1006 if (!o->sink_input)
1007 return -1;
1008
1009 o->sink_input->parent.process_msg = sink_input_process_msg;
1010 o->sink_input->pop = sink_input_pop_cb;
1011 o->sink_input->process_rewind = sink_input_process_rewind_cb;
1012 o->sink_input->update_max_rewind = sink_input_update_max_rewind_cb;
1013 o->sink_input->update_max_request = sink_input_update_max_request_cb;
1014 o->sink_input->update_sink_latency_range = sink_input_update_sink_latency_range_cb;
1015 o->sink_input->attach = sink_input_attach_cb;
1016 o->sink_input->detach = sink_input_detach_cb;
1017 o->sink_input->kill = sink_input_kill_cb;
1018 o->sink_input->userdata = o;
1019
1020 pa_sink_input_set_requested_latency(o->sink_input, pa_sink_get_requested_latency(u->sink));
1021
1022 return 0;
1023 }
1024
1025 /* Called from main context */
output_new(struct userdata * u,pa_sink * sink)1026 static struct output *output_new(struct userdata *u, pa_sink *sink) {
1027 struct output *o;
1028
1029 pa_assert(u);
1030 pa_assert(sink);
1031 pa_assert(u->sink);
1032
1033 o = pa_xnew0(struct output, 1);
1034 o->userdata = u;
1035
1036 o->audio_inq = pa_asyncmsgq_new(0);
1037 if (!o->audio_inq) {
1038 pa_log("pa_asyncmsgq_new() failed.");
1039 goto fail;
1040 }
1041
1042 o->control_inq = pa_asyncmsgq_new(0);
1043 if (!o->control_inq) {
1044 pa_log("pa_asyncmsgq_new() failed.");
1045 goto fail;
1046 }
1047
1048 o->outq = pa_asyncmsgq_new(0);
1049 if (!o->outq) {
1050 pa_log("pa_asyncmsgq_new() failed.");
1051 goto fail;
1052 }
1053
1054 o->sink = sink;
1055 o->memblockq = pa_memblockq_new(
1056 "module-combine-sink output memblockq",
1057 0,
1058 MEMBLOCKQ_MAXLENGTH,
1059 MEMBLOCKQ_MAXLENGTH,
1060 &u->sink->sample_spec,
1061 1,
1062 0,
1063 0,
1064 &u->sink->silence);
1065
1066 pa_assert_se(pa_idxset_put(u->outputs, o, NULL) == 0);
1067 update_description(u);
1068
1069 return o;
1070
1071 fail:
1072 output_free(o);
1073
1074 return NULL;
1075 }
1076
1077 /* Called from main context */
output_free(struct output * o)1078 static void output_free(struct output *o) {
1079 pa_assert(o);
1080
1081 output_disable(o);
1082 update_description(o->userdata);
1083
1084 if (o->audio_inq_rtpoll_item_read)
1085 pa_rtpoll_item_free(o->audio_inq_rtpoll_item_read);
1086 if (o->audio_inq_rtpoll_item_write)
1087 pa_rtpoll_item_free(o->audio_inq_rtpoll_item_write);
1088
1089 if (o->control_inq_rtpoll_item_read)
1090 pa_rtpoll_item_free(o->control_inq_rtpoll_item_read);
1091 if (o->control_inq_rtpoll_item_write)
1092 pa_rtpoll_item_free(o->control_inq_rtpoll_item_write);
1093
1094 if (o->outq_rtpoll_item_read)
1095 pa_rtpoll_item_free(o->outq_rtpoll_item_read);
1096 if (o->outq_rtpoll_item_write)
1097 pa_rtpoll_item_free(o->outq_rtpoll_item_write);
1098
1099 if (o->audio_inq)
1100 pa_asyncmsgq_unref(o->audio_inq);
1101
1102 if (o->control_inq)
1103 pa_asyncmsgq_unref(o->control_inq);
1104
1105 if (o->outq)
1106 pa_asyncmsgq_unref(o->outq);
1107
1108 if (o->memblockq)
1109 pa_memblockq_free(o->memblockq);
1110
1111 pa_xfree(o);
1112 }
1113
1114 /* Called from main context */
output_enable(struct output * o)1115 static void output_enable(struct output *o) {
1116 pa_assert(o);
1117
1118 if (o->sink_input)
1119 return;
1120
1121 /* This might cause the sink to be resumed. The state change hook
1122 * of the sink might hence be called from here, which might then
1123 * cause us to be called in a loop. Make sure that state changes
1124 * for this output don't cause this loop by setting a flag here */
1125 o->ignore_state_change = true;
1126
1127 if (output_create_sink_input(o) >= 0) {
1128
1129 if (o->sink->state != PA_SINK_INIT) {
1130 /* Enable the sink input. That means that the sink
1131 * is now asked for new data. */
1132 pa_sink_input_put(o->sink_input);
1133 }
1134 }
1135
1136 o->ignore_state_change = false;
1137 }
1138
1139 /* Called from main context */
output_disable(struct output * o)1140 static void output_disable(struct output *o) {
1141 pa_assert(o);
1142
1143 if (!o->sink_input)
1144 return;
1145
1146 /* We disable the sink input. That means that the sink is
1147 * not asked for new data anymore */
1148 pa_sink_input_unlink(o->sink_input);
1149
1150 /* Now deallocate the stream */
1151 pa_sink_input_unref(o->sink_input);
1152 o->sink_input = NULL;
1153
1154 /* Finally, drop all queued data */
1155 pa_memblockq_flush_write(o->memblockq, true);
1156 pa_asyncmsgq_flush(o->audio_inq, false);
1157 pa_asyncmsgq_flush(o->control_inq, false);
1158 pa_asyncmsgq_flush(o->outq, false);
1159 }
1160
1161 /* Called from main context */
output_verify(struct output * o)1162 static void output_verify(struct output *o) {
1163 pa_assert(o);
1164
1165 if (PA_SINK_IS_OPENED(o->userdata->sink->state))
1166 output_enable(o);
1167 else
1168 output_disable(o);
1169 }
1170
1171 /* Called from main context */
is_suitable_sink(struct userdata * u,pa_sink * s)1172 static bool is_suitable_sink(struct userdata *u, pa_sink *s) {
1173 const char *t;
1174
1175 pa_sink_assert_ref(s);
1176
1177 if (s == u->sink)
1178 return false;
1179
1180 if (!(s->flags & PA_SINK_HARDWARE))
1181 return false;
1182
1183 if (!(s->flags & PA_SINK_LATENCY))
1184 return false;
1185
1186 if ((t = pa_proplist_gets(s->proplist, PA_PROP_DEVICE_CLASS)))
1187 if (!pa_streq(t, "sound"))
1188 return false;
1189
1190 return true;
1191 }
1192
1193 /* Called from main context */
sink_put_hook_cb(pa_core * c,pa_sink * s,struct userdata * u)1194 static pa_hook_result_t sink_put_hook_cb(pa_core *c, pa_sink *s, struct userdata* u) {
1195 struct output *o;
1196
1197 pa_core_assert_ref(c);
1198 pa_sink_assert_ref(s);
1199 pa_assert(u);
1200
1201 if (u->automatic) {
1202 if (!is_suitable_sink(u, s))
1203 return PA_HOOK_OK;
1204 } else {
1205 /* Check if the sink is a previously unlinked slave (non-automatic mode) */
1206 pa_strlist *l = u->unlinked_slaves;
1207
1208 while (l && !pa_streq(pa_strlist_data(l), s->name))
1209 l = pa_strlist_next(l);
1210
1211 if (!l)
1212 return PA_HOOK_OK;
1213
1214 u->unlinked_slaves = pa_strlist_remove(u->unlinked_slaves, s->name);
1215 }
1216
1217 pa_log_info("Configuring new sink: %s", s->name);
1218 if (!(o = output_new(u, s))) {
1219 pa_log("Failed to create sink input on sink '%s'.", s->name);
1220 return PA_HOOK_OK;
1221 }
1222
1223 output_verify(o);
1224
1225 return PA_HOOK_OK;
1226 }
1227
1228 /* Called from main context */
find_output(struct userdata * u,pa_sink * s)1229 static struct output* find_output(struct userdata *u, pa_sink *s) {
1230 struct output *o;
1231 uint32_t idx;
1232
1233 pa_assert(u);
1234 pa_assert(s);
1235
1236 if (u->sink == s)
1237 return NULL;
1238
1239 PA_IDXSET_FOREACH(o, u->outputs, idx)
1240 if (o->sink == s)
1241 return o;
1242
1243 return NULL;
1244 }
1245
1246 /* Called from main context */
sink_unlink_hook_cb(pa_core * c,pa_sink * s,struct userdata * u)1247 static pa_hook_result_t sink_unlink_hook_cb(pa_core *c, pa_sink *s, struct userdata* u) {
1248 struct output *o;
1249
1250 pa_assert(c);
1251 pa_sink_assert_ref(s);
1252 pa_assert(u);
1253
1254 if (!(o = find_output(u, s)))
1255 return PA_HOOK_OK;
1256
1257 pa_log_info("Unconfiguring sink: %s", s->name);
1258
1259 if (!u->automatic)
1260 u->unlinked_slaves = pa_strlist_prepend(u->unlinked_slaves, s->name);
1261
1262 pa_idxset_remove_by_data(u->outputs, o, NULL);
1263 output_free(o);
1264
1265 return PA_HOOK_OK;
1266 }
1267
1268 /* Called from main context */
sink_state_changed_hook_cb(pa_core * c,pa_sink * s,struct userdata * u)1269 static pa_hook_result_t sink_state_changed_hook_cb(pa_core *c, pa_sink *s, struct userdata* u) {
1270 struct output *o;
1271
1272 if (!(o = find_output(u, s)))
1273 return PA_HOOK_OK;
1274
1275 /* This state change might be triggered because we are creating a
1276 * stream here, in that case we don't want to create it a second
1277 * time here and enter a loop */
1278 if (o->ignore_state_change)
1279 return PA_HOOK_OK;
1280
1281 output_verify(o);
1282
1283 return PA_HOOK_OK;
1284 }
1285
pa__init(pa_module * m)1286 int pa__init(pa_module*m) {
1287 struct userdata *u;
1288 pa_modargs *ma = NULL;
1289 const char *slaves, *rm;
1290 int resample_method = PA_RESAMPLER_TRIVIAL;
1291 pa_sample_spec ss;
1292 pa_channel_map map;
1293 struct output *o;
1294 uint32_t idx;
1295 pa_sink_new_data data;
1296 uint32_t adjust_time_sec;
1297 size_t nbytes;
1298
1299 pa_assert(m);
1300
1301 if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
1302 pa_log("failed to parse module arguments");
1303 goto fail;
1304 }
1305
1306 if ((rm = pa_modargs_get_value(ma, "resample_method", NULL))) {
1307 if ((resample_method = pa_parse_resample_method(rm)) < 0) {
1308 pa_log("invalid resample method '%s'", rm);
1309 goto fail;
1310 }
1311 }
1312
1313 m->userdata = u = pa_xnew0(struct userdata, 1);
1314 u->core = m->core;
1315 u->module = m;
1316 u->rtpoll = pa_rtpoll_new();
1317
1318 if (pa_thread_mq_init(&u->thread_mq, m->core->mainloop, u->rtpoll) < 0) {
1319 pa_log("pa_thread_mq_init() failed.");
1320 goto fail;
1321 }
1322
1323 u->resample_method = resample_method;
1324 u->outputs = pa_idxset_new(NULL, NULL);
1325 u->thread_info.smoother = pa_smoother_new(
1326 PA_USEC_PER_SEC,
1327 PA_USEC_PER_SEC*2,
1328 true,
1329 true,
1330 10,
1331 pa_rtclock_now(),
1332 true);
1333
1334 adjust_time_sec = DEFAULT_ADJUST_TIME_USEC / PA_USEC_PER_SEC;
1335 if (pa_modargs_get_value_u32(ma, "adjust_time", &adjust_time_sec) < 0) {
1336 pa_log("Failed to parse adjust_time value");
1337 goto fail;
1338 }
1339
1340 if (adjust_time_sec != DEFAULT_ADJUST_TIME_USEC / PA_USEC_PER_SEC)
1341 u->adjust_time = adjust_time_sec * PA_USEC_PER_SEC;
1342 else
1343 u->adjust_time = DEFAULT_ADJUST_TIME_USEC;
1344
1345 slaves = pa_modargs_get_value(ma, "slaves", NULL);
1346 u->automatic = !slaves;
1347
1348 ss = m->core->default_sample_spec;
1349 map = m->core->default_channel_map;
1350
1351 /* Check the specified slave sinks for sample_spec and channel_map to use for the combined sink */
1352 if (!u->automatic) {
1353 const char*split_state = NULL;
1354 char *n = NULL;
1355 pa_sample_spec slaves_spec;
1356 pa_channel_map slaves_map;
1357 bool is_first_slave = true;
1358
1359 pa_sample_spec_init(&slaves_spec);
1360
1361 while ((n = pa_split(slaves, ",", &split_state))) {
1362 pa_sink *slave_sink;
1363
1364 if (!(slave_sink = pa_namereg_get(m->core, n, PA_NAMEREG_SINK))) {
1365 pa_log("Invalid slave sink '%s'", n);
1366 pa_xfree(n);
1367 goto fail;
1368 }
1369
1370 pa_xfree(n);
1371
1372 if (is_first_slave) {
1373 slaves_spec = slave_sink->sample_spec;
1374 slaves_map = slave_sink->channel_map;
1375 is_first_slave = false;
1376 } else {
1377 if (slaves_spec.format != slave_sink->sample_spec.format)
1378 slaves_spec.format = PA_SAMPLE_INVALID;
1379
1380 if (slaves_spec.rate < slave_sink->sample_spec.rate)
1381 slaves_spec.rate = slave_sink->sample_spec.rate;
1382
1383 if (!pa_channel_map_equal(&slaves_map, &slave_sink->channel_map))
1384 slaves_spec.channels = 0;
1385 }
1386 }
1387
1388 if (!is_first_slave) {
1389 if (slaves_spec.format != PA_SAMPLE_INVALID)
1390 ss.format = slaves_spec.format;
1391
1392 ss.rate = slaves_spec.rate;
1393
1394 if (slaves_spec.channels > 0) {
1395 map = slaves_map;
1396 ss.channels = slaves_map.channels;
1397 }
1398 }
1399 }
1400
1401 if ((pa_modargs_get_sample_spec_and_channel_map(ma, &ss, &map, PA_CHANNEL_MAP_DEFAULT) < 0)) {
1402 pa_log("Invalid sample specification.");
1403 goto fail;
1404 }
1405
1406 pa_sink_new_data_init(&data);
1407 data.namereg_fail = false;
1408 data.driver = __FILE__;
1409 data.module = m;
1410 pa_sink_new_data_set_name(&data, pa_modargs_get_value(ma, "sink_name", DEFAULT_SINK_NAME));
1411 pa_sink_new_data_set_sample_spec(&data, &ss);
1412 pa_sink_new_data_set_channel_map(&data, &map);
1413 pa_proplist_sets(data.proplist, PA_PROP_DEVICE_CLASS, "filter");
1414
1415 if (slaves)
1416 pa_proplist_sets(data.proplist, "combine.slaves", slaves);
1417
1418 if (pa_modargs_get_proplist(ma, "sink_properties", data.proplist, PA_UPDATE_REPLACE) < 0) {
1419 pa_log("Invalid properties");
1420 pa_sink_new_data_done(&data);
1421 goto fail;
1422 }
1423
1424 /* Check proplist for a description & fill in a default value if not */
1425 u->auto_desc = false;
1426 if (NULL == pa_proplist_gets(data.proplist, PA_PROP_DEVICE_DESCRIPTION)) {
1427 u->auto_desc = true;
1428 pa_proplist_sets(data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Simultaneous Output");
1429 }
1430
1431 u->sink = pa_sink_new(m->core, &data, PA_SINK_LATENCY|PA_SINK_DYNAMIC_LATENCY);
1432 pa_sink_new_data_done(&data);
1433
1434 if (!u->sink) {
1435 pa_log("Failed to create sink");
1436 goto fail;
1437 }
1438
1439 u->sink->parent.process_msg = sink_process_msg;
1440 u->sink->set_state_in_main_thread = sink_set_state_in_main_thread_cb;
1441 u->sink->set_state_in_io_thread = sink_set_state_in_io_thread_cb;
1442 u->sink->update_requested_latency = sink_update_requested_latency;
1443 u->sink->userdata = u;
1444
1445 pa_sink_set_rtpoll(u->sink, u->rtpoll);
1446 pa_sink_set_asyncmsgq(u->sink, u->thread_mq.inq);
1447
1448 nbytes = pa_usec_to_bytes(BLOCK_USEC, &u->sink->sample_spec);
1449 pa_sink_set_max_request(u->sink, nbytes);
1450 pa_sink_set_latency_range(u->sink, 0, BLOCK_USEC);
1451 /* pulse clamps the range, get the real values */
1452 u->default_min_latency = u->sink->thread_info.min_latency;
1453 u->default_max_latency = u->sink->thread_info.max_latency;
1454 u->block_usec = u->sink->thread_info.max_latency;
1455
1456
1457 if (!u->automatic) {
1458 const char*split_state;
1459 char *n = NULL;
1460 pa_assert(slaves);
1461
1462 /* The slaves have been specified manually */
1463
1464 split_state = NULL;
1465 while ((n = pa_split(slaves, ",", &split_state))) {
1466 pa_sink *slave_sink;
1467
1468 if (!(slave_sink = pa_namereg_get(m->core, n, PA_NAMEREG_SINK)) || slave_sink == u->sink) {
1469 pa_log("Invalid slave sink '%s'", n);
1470 pa_xfree(n);
1471 goto fail;
1472 }
1473
1474 pa_xfree(n);
1475
1476 if (!output_new(u, slave_sink)) {
1477 pa_log("Failed to create slave sink input on sink '%s'.", slave_sink->name);
1478 goto fail;
1479 }
1480 }
1481
1482 if (pa_idxset_size(u->outputs) <= 1)
1483 pa_log_warn("No slave sinks specified.");
1484
1485 u->sink_put_slot = NULL;
1486
1487 } else {
1488 pa_sink *s;
1489
1490 /* We're in automatic mode, we add every sink that matches our needs */
1491
1492 PA_IDXSET_FOREACH(s, m->core->sinks, idx) {
1493
1494 if (!is_suitable_sink(u, s))
1495 continue;
1496
1497 if (!output_new(u, s)) {
1498 pa_log("Failed to create sink input on sink '%s'.", s->name);
1499 goto fail;
1500 }
1501 }
1502 }
1503
1504 u->sink_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_PUT], PA_HOOK_LATE, (pa_hook_cb_t) sink_put_hook_cb, u);
1505 u->sink_unlink_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_UNLINK], PA_HOOK_EARLY, (pa_hook_cb_t) sink_unlink_hook_cb, u);
1506 u->sink_state_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED], PA_HOOK_NORMAL, (pa_hook_cb_t) sink_state_changed_hook_cb, u);
1507
1508 if (!(u->thread = pa_thread_new("combine", thread_func, u))) {
1509 pa_log("Failed to create thread.");
1510 goto fail;
1511 }
1512
1513 /* Activate the sink and the sink inputs */
1514 pa_sink_put(u->sink);
1515
1516 PA_IDXSET_FOREACH(o, u->outputs, idx)
1517 output_verify(o);
1518
1519 if (u->adjust_time > 0)
1520 u->time_event = pa_core_rttime_new(m->core, pa_rtclock_now() + u->adjust_time, time_callback, u);
1521
1522 pa_modargs_free(ma);
1523
1524 return 0;
1525
1526 fail:
1527
1528 if (ma)
1529 pa_modargs_free(ma);
1530
1531 pa__done(m);
1532
1533 return -1;
1534 }
1535
pa__done(pa_module * m)1536 void pa__done(pa_module*m) {
1537 struct userdata *u;
1538
1539 pa_assert(m);
1540
1541 if (!(u = m->userdata))
1542 return;
1543
1544 pa_strlist_free(u->unlinked_slaves);
1545
1546 if (u->sink_put_slot)
1547 pa_hook_slot_free(u->sink_put_slot);
1548
1549 if (u->sink_unlink_slot)
1550 pa_hook_slot_free(u->sink_unlink_slot);
1551
1552 if (u->sink_state_changed_slot)
1553 pa_hook_slot_free(u->sink_state_changed_slot);
1554
1555 if (u->outputs)
1556 pa_idxset_free(u->outputs, (pa_free_cb_t) output_free);
1557
1558 if (u->sink)
1559 pa_sink_unlink(u->sink);
1560
1561 if (u->thread) {
1562 pa_asyncmsgq_send(u->thread_mq.inq, NULL, PA_MESSAGE_SHUTDOWN, NULL, 0, NULL);
1563 pa_thread_free(u->thread);
1564 }
1565
1566 pa_thread_mq_done(&u->thread_mq);
1567
1568 if (u->sink)
1569 pa_sink_unref(u->sink);
1570
1571 if (u->rtpoll)
1572 pa_rtpoll_free(u->rtpoll);
1573
1574 if (u->time_event)
1575 u->core->mainloop->time_free(u->time_event);
1576
1577 if (u->thread_info.smoother)
1578 pa_smoother_free(u->thread_info.smoother);
1579
1580 pa_xfree(u);
1581 }
1582