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