2 This file is part of PulseAudio.
4 Copyright 2004-2008 Lennart Poettering
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.
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.
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
29 #include <pulse/rtclock.h>
30 #include <pulse/timeval.h>
31 #include <pulse/xmalloc.h>
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>
51 #include "module-combine-symdef.h"
53 PA_MODULE_AUTHOR("Lennart Poettering");
54 PA_MODULE_DESCRIPTION("Combine multiple sinks to one");
55 PA_MODULE_VERSION(PACKAGE_VERSION
);
56 PA_MODULE_LOAD_ONCE(FALSE
);
58 "sink_name=<name for the sink> "
59 "sink_properties=<properties for the sink> "
60 "slaves=<slave sinks> "
61 "adjust_time=<seconds> "
62 "resample_method=<method> "
63 "format=<sample format> "
65 "channels=<number of channels> "
66 "channel_map=<channel map>");
68 #define DEFAULT_SINK_NAME "combined"
70 #define MEMBLOCKQ_MAXLENGTH (1024*1024*16)
72 #define DEFAULT_ADJUST_TIME 10
74 #define BLOCK_USEC (PA_USEC_PER_MSEC * 200)
76 static const char* const valid_modargs
[] = {
90 struct userdata
*userdata
;
93 pa_sink_input
*sink_input
;
95 pa_bool_t ignore_state_change
;
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
;
102 pa_memblockq
*memblockq
;
104 /* For communication of the stream latencies to the main thread */
105 pa_usec_t total_latency
;
107 /* For coomunication of the stream parameters to the sink thread */
108 pa_atomic_t max_request
;
109 pa_atomic_t requested_latency
;
111 PA_LLIST_FIELDS(struct output
);
120 pa_thread_mq thread_mq
;
123 pa_time_event
*time_event
;
124 uint32_t adjust_time
;
129 pa_hook_slot
*sink_put_slot
, *sink_unlink_slot
, *sink_state_changed_slot
;
131 pa_resample_method_t resample_method
;
133 pa_usec_t block_usec
;
135 pa_idxset
* outputs
; /* managed in main context */
138 PA_LLIST_HEAD(struct output
, active_outputs
); /* managed in IO thread context */
139 pa_atomic_t running
; /* we cache that value here, so that every thread can query it cheaply */
141 pa_bool_t in_null_mode
;
142 pa_smoother
*smoother
;
148 SINK_MESSAGE_ADD_OUTPUT
= PA_SINK_MESSAGE_MAX
,
149 SINK_MESSAGE_REMOVE_OUTPUT
,
151 SINK_MESSAGE_UPDATE_LATENCY
,
152 SINK_MESSAGE_UPDATE_MAX_REQUEST
,
153 SINK_MESSAGE_UPDATE_REQUESTED_LATENCY
157 SINK_INPUT_MESSAGE_POST
= PA_SINK_INPUT_MESSAGE_MAX
,
160 static void output_disable(struct output
*o
);
161 static void output_enable(struct output
*o
);
162 static void output_free(struct output
*o
);
163 static int output_create_sink_input(struct output
*o
);
165 static void adjust_rates(struct userdata
*u
) {
167 pa_usec_t max_sink_latency
= 0, min_total_latency
= (pa_usec_t
) -1, target_latency
, avg_total_latency
= 0;
173 pa_sink_assert_ref(u
->sink
);
175 if (pa_idxset_size(u
->outputs
) <= 0)
178 if (!PA_SINK_IS_OPENED(pa_sink_get_state(u
->sink
)))
181 PA_IDXSET_FOREACH(o
, u
->outputs
, idx
) {
182 pa_usec_t sink_latency
;
184 if (!o
->sink_input
|| !PA_SINK_IS_OPENED(pa_sink_get_state(o
->sink
)))
187 o
->total_latency
= pa_sink_input_get_latency(o
->sink_input
, &sink_latency
);
188 o
->total_latency
+= sink_latency
;
190 if (sink_latency
> max_sink_latency
)
191 max_sink_latency
= sink_latency
;
193 if (min_total_latency
== (pa_usec_t
) -1 || o
->total_latency
< min_total_latency
)
194 min_total_latency
= o
->total_latency
;
196 avg_total_latency
+= o
->total_latency
;
199 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
);
201 if (o
->total_latency
> 10*PA_USEC_PER_SEC
)
202 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 if (min_total_latency
== (pa_usec_t
) -1)
208 avg_total_latency
/= n
;
210 target_latency
= max_sink_latency
> min_total_latency
? max_sink_latency
: min_total_latency
;
212 pa_log_info("[%s] avg total latency is %0.2f msec.", u
->sink
->name
, (double) avg_total_latency
/ PA_USEC_PER_MSEC
);
213 pa_log_info("[%s] target latency is %0.2f msec.", u
->sink
->name
, (double) target_latency
/ PA_USEC_PER_MSEC
);
215 base_rate
= u
->sink
->sample_spec
.rate
;
217 PA_IDXSET_FOREACH(o
, u
->outputs
, idx
) {
218 uint32_t r
= base_rate
;
220 if (!o
->sink_input
|| !PA_SINK_IS_OPENED(pa_sink_get_state(o
->sink
)))
223 if (o
->total_latency
< target_latency
)
224 r
-= (uint32_t) ((((double) (target_latency
- o
->total_latency
))/(double)u
->adjust_time
)*(double)r
/PA_USEC_PER_SEC
);
225 else if (o
->total_latency
> target_latency
)
226 r
+= (uint32_t) ((((double) (o
->total_latency
- target_latency
))/(double)u
->adjust_time
)*(double)r
/PA_USEC_PER_SEC
);
228 if (r
< (uint32_t) (base_rate
*0.9) || r
> (uint32_t) (base_rate
*1.1)) {
229 pa_log_warn("[%s] sample rates too different, not adjusting (%u vs. %u).", o
->sink_input
->sink
->name
, base_rate
, r
);
230 pa_sink_input_set_rate(o
->sink_input
, base_rate
);
232 pa_log_info("[%s] new rate is %u Hz; ratio is %0.3f; latency is %0.0f usec.", o
->sink_input
->sink
->name
, r
, (double) r
/ base_rate
, (float) o
->total_latency
);
233 pa_sink_input_set_rate(o
->sink_input
, r
);
237 pa_asyncmsgq_send(u
->sink
->asyncmsgq
, PA_MSGOBJECT(u
->sink
), SINK_MESSAGE_UPDATE_LATENCY
, NULL
, (int64_t) avg_total_latency
, NULL
);
240 static void time_callback(pa_mainloop_api
*a
, pa_time_event
*e
, const struct timeval
*t
, void *userdata
) {
241 struct userdata
*u
= userdata
;
245 pa_assert(u
->time_event
== e
);
249 pa_core_rttime_restart(u
->core
, e
, pa_rtclock_now() + u
->adjust_time
* PA_USEC_PER_SEC
);
252 static void process_render_null(struct userdata
*u
, pa_usec_t now
) {
256 if (u
->thread_info
.in_null_mode
)
257 u
->thread_info
.timestamp
= now
;
259 while (u
->thread_info
.timestamp
< now
+ u
->block_usec
) {
262 pa_sink_render(u
->sink
, u
->sink
->thread_info
.max_request
, &chunk
);
263 pa_memblock_unref(chunk
.memblock
);
265 u
->thread_info
.counter
+= chunk
.length
;
267 /* pa_log_debug("Ate %lu bytes.", (unsigned long) chunk.length); */
268 u
->thread_info
.timestamp
+= pa_bytes_to_usec(chunk
.length
, &u
->sink
->sample_spec
);
272 if (ate
>= u
->sink
->thread_info
.max_request
)
276 /* pa_log_debug("Ate in sum %lu bytes (of %lu)", (unsigned long) ate, (unsigned long) nbytes); */
278 pa_smoother_put(u
->thread_info
.smoother
, now
,
279 pa_bytes_to_usec(u
->thread_info
.counter
, &u
->sink
->sample_spec
) - (u
->thread_info
.timestamp
- now
));
282 static void thread_func(void *userdata
) {
283 struct userdata
*u
= userdata
;
287 pa_log_debug("Thread starting up");
289 if (u
->core
->realtime_scheduling
)
290 pa_make_realtime(u
->core
->realtime_priority
+1);
292 pa_thread_mq_install(&u
->thread_mq
);
294 u
->thread_info
.timestamp
= pa_rtclock_now();
295 u
->thread_info
.in_null_mode
= FALSE
;
300 if (PA_SINK_IS_OPENED(u
->sink
->thread_info
.state
))
301 if (u
->sink
->thread_info
.rewind_requested
)
302 pa_sink_process_rewind(u
->sink
, 0);
304 /* If no outputs are connected, render some data and drop it immediately. */
305 if (PA_SINK_IS_OPENED(u
->sink
->thread_info
.state
) && !u
->thread_info
.active_outputs
) {
308 now
= pa_rtclock_now();
310 if (!u
->thread_info
.in_null_mode
|| u
->thread_info
.timestamp
<= now
)
311 process_render_null(u
, now
);
313 pa_rtpoll_set_timer_absolute(u
->rtpoll
, u
->thread_info
.timestamp
);
314 u
->thread_info
.in_null_mode
= TRUE
;
316 pa_rtpoll_set_timer_disabled(u
->rtpoll
);
317 u
->thread_info
.in_null_mode
= FALSE
;
320 /* Hmm, nothing to do. Let's sleep */
321 if ((ret
= pa_rtpoll_run(u
->rtpoll
, TRUE
)) < 0) {
322 pa_log_info("pa_rtpoll_run() = %i", ret
);
331 /* If this was no regular exit from the loop we have to continue
332 * processing messages until we received PA_MESSAGE_SHUTDOWN */
333 pa_asyncmsgq_post(u
->thread_mq
.outq
, PA_MSGOBJECT(u
->core
), PA_CORE_MESSAGE_UNLOAD_MODULE
, u
->module
, 0, NULL
, NULL
);
334 pa_asyncmsgq_wait_for(u
->thread_mq
.inq
, PA_MESSAGE_SHUTDOWN
);
337 pa_log_debug("Thread shutting down");
340 /* Called from I/O thread context */
341 static void render_memblock(struct userdata
*u
, struct output
*o
, size_t length
) {
345 /* We are run by the sink thread, on behalf of an output (o). The
346 * output is waiting for us, hence it is safe to access its
347 * mainblockq and asyncmsgq directly. */
349 /* If we are not running, we cannot produce any data */
350 if (!pa_atomic_load(&u
->thread_info
.running
))
353 /* Maybe there's some data in the requesting output's queue
355 while (pa_asyncmsgq_process_one(o
->inq
) > 0)
358 /* Ok, now let's prepare some data if we really have to */
359 while (!pa_memblockq_is_readable(o
->memblockq
)) {
364 pa_sink_render(u
->sink
, length
, &chunk
);
366 u
->thread_info
.counter
+= chunk
.length
;
368 /* OK, let's send this data to the other threads */
369 PA_LLIST_FOREACH(j
, u
->thread_info
.active_outputs
) {
373 pa_asyncmsgq_post(j
->inq
, PA_MSGOBJECT(j
->sink_input
), SINK_INPUT_MESSAGE_POST
, NULL
, 0, &chunk
, NULL
);
376 /* And place it directly into the requesting output's queue */
377 pa_memblockq_push_align(o
->memblockq
, &chunk
);
378 pa_memblock_unref(chunk
.memblock
);
382 /* Called from I/O thread context */
383 static void request_memblock(struct output
*o
, size_t length
) {
385 pa_sink_input_assert_ref(o
->sink_input
);
386 pa_sink_assert_ref(o
->userdata
->sink
);
388 /* If another thread already prepared some data we received
389 * the data over the asyncmsgq, hence let's first process
391 while (pa_asyncmsgq_process_one(o
->inq
) > 0)
394 /* Check whether we're now readable */
395 if (pa_memblockq_is_readable(o
->memblockq
))
398 /* OK, we need to prepare new data, but only if the sink is actually running */
399 if (pa_atomic_load(&o
->userdata
->thread_info
.running
))
400 pa_asyncmsgq_send(o
->outq
, PA_MSGOBJECT(o
->userdata
->sink
), SINK_MESSAGE_NEED
, o
, (int64_t) length
, NULL
);
403 /* Called from I/O thread context */
404 static int sink_input_pop_cb(pa_sink_input
*i
, size_t nbytes
, pa_memchunk
*chunk
) {
407 pa_sink_input_assert_ref(i
);
408 pa_assert_se(o
= i
->userdata
);
410 /* If necessary, get some new data */
411 request_memblock(o
, nbytes
);
413 /* pa_log("%s q size is %u + %u (%u/%u)", */
415 /* pa_memblockq_get_nblocks(o->memblockq), */
416 /* pa_memblockq_get_nblocks(i->thread_info.render_memblockq), */
417 /* pa_memblockq_get_maxrewind(o->memblockq), */
418 /* pa_memblockq_get_maxrewind(i->thread_info.render_memblockq)); */
420 if (pa_memblockq_peek(o
->memblockq
, chunk
) < 0)
423 pa_memblockq_drop(o
->memblockq
, chunk
->length
);
428 /* Called from I/O thread context */
429 static void sink_input_process_rewind_cb(pa_sink_input
*i
, size_t nbytes
) {
432 pa_sink_input_assert_ref(i
);
433 pa_assert_se(o
= i
->userdata
);
435 pa_memblockq_rewind(o
->memblockq
, nbytes
);
438 /* Called from I/O thread context */
439 static void sink_input_update_max_rewind_cb(pa_sink_input
*i
, size_t nbytes
) {
442 pa_sink_input_assert_ref(i
);
443 pa_assert_se(o
= i
->userdata
);
445 pa_memblockq_set_maxrewind(o
->memblockq
, nbytes
);
448 /* Called from I/O thread context */
449 static void sink_input_update_max_request_cb(pa_sink_input
*i
, size_t nbytes
) {
452 pa_sink_input_assert_ref(i
);
453 pa_assert_se(o
= i
->userdata
);
455 if (pa_atomic_load(&o
->max_request
) == (int) nbytes
)
458 pa_atomic_store(&o
->max_request
, (int) nbytes
);
459 pa_asyncmsgq_post(o
->outq
, PA_MSGOBJECT(o
->userdata
->sink
), SINK_MESSAGE_UPDATE_MAX_REQUEST
, NULL
, 0, NULL
, NULL
);
462 /* Called from thread context */
463 static void sink_input_update_sink_requested_latency_cb(pa_sink_input
*i
) {
469 pa_sink_input_assert_ref(i
);
470 pa_assert_se(o
= i
->userdata
);
472 c
= pa_sink_get_requested_latency_within_thread(i
->sink
);
474 if (c
== (pa_usec_t
) -1)
475 c
= i
->sink
->thread_info
.max_latency
;
477 if (pa_atomic_load(&o
->requested_latency
) == (int) c
)
480 pa_atomic_store(&o
->requested_latency
, (int) c
);
481 pa_asyncmsgq_post(o
->outq
, PA_MSGOBJECT(o
->userdata
->sink
), SINK_MESSAGE_UPDATE_REQUESTED_LATENCY
, NULL
, 0, NULL
, NULL
);
484 /* Called from I/O thread context */
485 static void sink_input_attach_cb(pa_sink_input
*i
) {
489 pa_sink_input_assert_ref(i
);
490 pa_assert_se(o
= i
->userdata
);
492 /* Set up the queue from the sink thread to us */
493 pa_assert(!o
->inq_rtpoll_item_read
&& !o
->outq_rtpoll_item_write
);
495 o
->inq_rtpoll_item_read
= pa_rtpoll_item_new_asyncmsgq_read(
496 i
->sink
->thread_info
.rtpoll
,
497 PA_RTPOLL_LATE
, /* This one is not that important, since we check for data in _peek() anyway. */
500 o
->outq_rtpoll_item_write
= pa_rtpoll_item_new_asyncmsgq_write(
501 i
->sink
->thread_info
.rtpoll
,
505 pa_sink_input_request_rewind(i
, 0, FALSE
, TRUE
, TRUE
);
507 pa_atomic_store(&o
->max_request
, (int) pa_sink_input_get_max_request(i
));
509 c
= pa_sink_get_requested_latency_within_thread(i
->sink
);
510 pa_atomic_store(&o
->requested_latency
, (int) (c
== (pa_usec_t
) -1 ? 0 : c
));
512 pa_asyncmsgq_post(o
->outq
, PA_MSGOBJECT(o
->userdata
->sink
), SINK_MESSAGE_UPDATE_MAX_REQUEST
, NULL
, 0, NULL
, NULL
);
513 pa_asyncmsgq_post(o
->outq
, PA_MSGOBJECT(o
->userdata
->sink
), SINK_MESSAGE_UPDATE_REQUESTED_LATENCY
, NULL
, 0, NULL
, NULL
);
516 /* Called from I/O thread context */
517 static void sink_input_detach_cb(pa_sink_input
*i
) {
520 pa_sink_input_assert_ref(i
);
521 pa_assert_se(o
= i
->userdata
);
523 if (o
->inq_rtpoll_item_read
) {
524 pa_rtpoll_item_free(o
->inq_rtpoll_item_read
);
525 o
->inq_rtpoll_item_read
= NULL
;
528 if (o
->outq_rtpoll_item_write
) {
529 pa_rtpoll_item_free(o
->outq_rtpoll_item_write
);
530 o
->outq_rtpoll_item_write
= NULL
;
534 /* Called from main context */
535 static void sink_input_kill_cb(pa_sink_input
*i
) {
538 pa_sink_input_assert_ref(i
);
539 pa_assert_se(o
= i
->userdata
);
541 pa_module_unload_request(o
->userdata
->module
, TRUE
);
545 /* Called from thread context */
546 static int sink_input_process_msg(pa_msgobject
*obj
, int code
, void *data
, int64_t offset
, pa_memchunk
*chunk
) {
547 struct output
*o
= PA_SINK_INPUT(obj
)->userdata
;
551 case PA_SINK_INPUT_MESSAGE_GET_LATENCY
: {
554 *r
= pa_bytes_to_usec(pa_memblockq_get_length(o
->memblockq
), &o
->sink_input
->sample_spec
);
556 /* Fall through, the default handler will add in the extra
557 * latency added by the resampler */
561 case SINK_INPUT_MESSAGE_POST
:
563 if (PA_SINK_IS_OPENED(o
->sink_input
->sink
->thread_info
.state
))
564 pa_memblockq_push_align(o
->memblockq
, chunk
);
566 pa_memblockq_flush_write(o
->memblockq
);
571 return pa_sink_input_process_msg(obj
, code
, data
, offset
, chunk
);
574 /* Called from main context */
575 static void suspend(struct userdata
*u
) {
581 /* Let's suspend by unlinking all streams */
582 PA_IDXSET_FOREACH(o
, u
->outputs
, idx
)
585 pa_log_info("Device suspended...");
588 /* Called from main context */
589 static void unsuspend(struct userdata
*u
) {
596 PA_IDXSET_FOREACH(o
, u
->outputs
, idx
)
599 pa_log_info("Resumed successfully...");
602 /* Called from main context */
603 static int sink_set_state(pa_sink
*sink
, pa_sink_state_t state
) {
606 pa_sink_assert_ref(sink
);
607 pa_assert_se(u
= sink
->userdata
);
609 /* Please note that in contrast to the ALSA modules we call
610 * suspend/unsuspend from main context here! */
613 case PA_SINK_SUSPENDED
:
614 pa_assert(PA_SINK_IS_OPENED(pa_sink_get_state(u
->sink
)));
620 case PA_SINK_RUNNING
:
622 if (pa_sink_get_state(u
->sink
) == PA_SINK_SUSPENDED
)
627 case PA_SINK_UNLINKED
:
629 case PA_SINK_INVALID_STATE
:
636 /* Called from IO context */
637 static void update_max_request(struct userdata
*u
) {
638 size_t max_request
= 0;
642 pa_sink_assert_io_context(u
->sink
);
644 /* Collects the max_request values of all streams and sets the
645 * largest one locally */
647 PA_LLIST_FOREACH(o
, u
->thread_info
.active_outputs
) {
648 size_t mr
= (size_t) pa_atomic_load(&o
->max_request
);
650 if (mr
> max_request
)
654 if (max_request
<= 0)
655 max_request
= pa_usec_to_bytes(u
->block_usec
, &u
->sink
->sample_spec
);
657 pa_sink_set_max_request_within_thread(u
->sink
, max_request
);
660 /* Called from IO context */
661 static void update_fixed_latency(struct userdata
*u
) {
662 pa_usec_t fixed_latency
= 0;
666 pa_sink_assert_io_context(u
->sink
);
668 /* Collects the requested_latency values of all streams and sets
669 * the largest one as fixed_latency locally */
671 PA_LLIST_FOREACH(o
, u
->thread_info
.active_outputs
) {
672 pa_usec_t rl
= (size_t) pa_atomic_load(&o
->requested_latency
);
674 if (rl
> fixed_latency
)
678 if (fixed_latency
<= 0)
679 fixed_latency
= u
->block_usec
;
681 pa_sink_set_fixed_latency_within_thread(u
->sink
, fixed_latency
);
684 /* Called from thread context of the io thread */
685 static void output_add_within_thread(struct output
*o
) {
687 pa_sink_assert_io_context(o
->sink
);
689 PA_LLIST_PREPEND(struct output
, o
->userdata
->thread_info
.active_outputs
, o
);
691 pa_assert(!o
->outq_rtpoll_item_read
&& !o
->inq_rtpoll_item_write
);
693 o
->outq_rtpoll_item_read
= pa_rtpoll_item_new_asyncmsgq_read(
695 PA_RTPOLL_EARLY
-1, /* This item is very important */
697 o
->inq_rtpoll_item_write
= pa_rtpoll_item_new_asyncmsgq_write(
703 /* Called from thread context of the io thread */
704 static void output_remove_within_thread(struct output
*o
) {
706 pa_sink_assert_io_context(o
->sink
);
708 PA_LLIST_REMOVE(struct output
, o
->userdata
->thread_info
.active_outputs
, o
);
710 if (o
->outq_rtpoll_item_read
) {
711 pa_rtpoll_item_free(o
->outq_rtpoll_item_read
);
712 o
->outq_rtpoll_item_read
= NULL
;
715 if (o
->inq_rtpoll_item_write
) {
716 pa_rtpoll_item_free(o
->inq_rtpoll_item_write
);
717 o
->inq_rtpoll_item_write
= NULL
;
721 /* Called from thread context of the io thread */
722 static int sink_process_msg(pa_msgobject
*o
, int code
, void *data
, int64_t offset
, pa_memchunk
*chunk
) {
723 struct userdata
*u
= PA_SINK(o
)->userdata
;
727 case PA_SINK_MESSAGE_SET_STATE
:
728 pa_atomic_store(&u
->thread_info
.running
, PA_PTR_TO_UINT(data
) == PA_SINK_RUNNING
);
730 if (PA_PTR_TO_UINT(data
) == PA_SINK_SUSPENDED
)
731 pa_smoother_pause(u
->thread_info
.smoother
, pa_rtclock_now());
733 pa_smoother_resume(u
->thread_info
.smoother
, pa_rtclock_now(), TRUE
);
737 case PA_SINK_MESSAGE_GET_LATENCY
: {
738 pa_usec_t x
, y
, c
, *delay
= data
;
740 x
= pa_rtclock_now();
741 y
= pa_smoother_get(u
->thread_info
.smoother
, x
);
743 c
= pa_bytes_to_usec(u
->thread_info
.counter
, &u
->sink
->sample_spec
);
753 case SINK_MESSAGE_ADD_OUTPUT
:
754 output_add_within_thread(data
);
755 update_max_request(u
);
756 update_fixed_latency(u
);
759 case SINK_MESSAGE_REMOVE_OUTPUT
:
760 output_remove_within_thread(data
);
761 update_max_request(u
);
762 update_fixed_latency(u
);
765 case SINK_MESSAGE_NEED
:
766 render_memblock(u
, (struct output
*) data
, (size_t) offset
);
769 case SINK_MESSAGE_UPDATE_LATENCY
: {
770 pa_usec_t x
, y
, latency
= (pa_usec_t
) offset
;
772 x
= pa_rtclock_now();
773 y
= pa_bytes_to_usec(u
->thread_info
.counter
, &u
->sink
->sample_spec
);
780 pa_smoother_put(u
->thread_info
.smoother
, x
, y
);
784 case SINK_MESSAGE_UPDATE_MAX_REQUEST
:
785 update_max_request(u
);
788 case SINK_MESSAGE_UPDATE_REQUESTED_LATENCY
:
789 update_fixed_latency(u
);
793 return pa_sink_process_msg(o
, code
, data
, offset
, chunk
);
796 static void update_description(struct userdata
*u
) {
797 pa_bool_t first
= TRUE
;
807 if (pa_idxset_isempty(u
->outputs
)) {
808 pa_sink_set_description(u
->sink
, "Simultaneous output");
812 t
= pa_xstrdup("Simultaneous output to");
814 PA_IDXSET_FOREACH(o
, u
->outputs
, idx
) {
818 e
= pa_sprintf_malloc("%s %s", t
, pa_strnull(pa_proplist_gets(o
->sink
->proplist
, PA_PROP_DEVICE_DESCRIPTION
)));
821 e
= pa_sprintf_malloc("%s, %s", t
, pa_strnull(pa_proplist_gets(o
->sink
->proplist
, PA_PROP_DEVICE_DESCRIPTION
)));
827 pa_sink_set_description(u
->sink
, t
);
831 static int output_create_sink_input(struct output
*o
) {
832 pa_sink_input_new_data data
;
839 pa_sink_input_new_data_init(&data
);
841 data
.driver
= __FILE__
;
842 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
)));
843 pa_proplist_sets(data
.proplist
, PA_PROP_MEDIA_ROLE
, "filter");
844 pa_sink_input_new_data_set_sample_spec(&data
, &o
->userdata
->sink
->sample_spec
);
845 pa_sink_input_new_data_set_channel_map(&data
, &o
->userdata
->sink
->channel_map
);
846 data
.module
= o
->userdata
->module
;
847 data
.resample_method
= o
->userdata
->resample_method
;
849 pa_sink_input_new(&o
->sink_input
, o
->userdata
->core
, &data
, PA_SINK_INPUT_VARIABLE_RATE
|PA_SINK_INPUT_DONT_MOVE
|PA_SINK_INPUT_NO_CREATE_ON_SUSPEND
);
851 pa_sink_input_new_data_done(&data
);
856 o
->sink_input
->parent
.process_msg
= sink_input_process_msg
;
857 o
->sink_input
->pop
= sink_input_pop_cb
;
858 o
->sink_input
->process_rewind
= sink_input_process_rewind_cb
;
859 o
->sink_input
->update_max_rewind
= sink_input_update_max_rewind_cb
;
860 o
->sink_input
->update_max_request
= sink_input_update_max_request_cb
;
861 o
->sink_input
->update_sink_requested_latency
= sink_input_update_sink_requested_latency_cb
;
862 o
->sink_input
->attach
= sink_input_attach_cb
;
863 o
->sink_input
->detach
= sink_input_detach_cb
;
864 o
->sink_input
->kill
= sink_input_kill_cb
;
865 o
->sink_input
->userdata
= o
;
867 pa_sink_input_set_requested_latency(o
->sink_input
, BLOCK_USEC
);
872 /* Called from main context */
873 static struct output
*output_new(struct userdata
*u
, pa_sink
*sink
) {
880 o
= pa_xnew0(struct output
, 1);
882 o
->inq
= pa_asyncmsgq_new(0);
883 o
->outq
= pa_asyncmsgq_new(0);
885 o
->memblockq
= pa_memblockq_new(
889 pa_frame_size(&u
->sink
->sample_spec
),
895 pa_assert_se(pa_idxset_put(u
->outputs
, o
, NULL
) == 0);
896 update_description(u
);
901 /* Called from main context */
902 static void output_free(struct output
*o
) {
907 pa_assert_se(pa_idxset_remove_by_data(o
->userdata
->outputs
, o
, NULL
));
908 update_description(o
->userdata
);
910 if (o
->inq_rtpoll_item_read
)
911 pa_rtpoll_item_free(o
->inq_rtpoll_item_read
);
912 if (o
->inq_rtpoll_item_write
)
913 pa_rtpoll_item_free(o
->inq_rtpoll_item_write
);
915 if (o
->outq_rtpoll_item_read
)
916 pa_rtpoll_item_free(o
->outq_rtpoll_item_read
);
917 if (o
->outq_rtpoll_item_write
)
918 pa_rtpoll_item_free(o
->outq_rtpoll_item_write
);
921 pa_asyncmsgq_unref(o
->inq
);
924 pa_asyncmsgq_unref(o
->outq
);
927 pa_memblockq_free(o
->memblockq
);
932 /* Called from main context */
933 static void output_enable(struct output
*o
) {
939 /* This might cause the sink to be resumed. The state change hook
940 * of the sink might hence be called from here, which might then
941 * cause us to be called in a loop. Make sure that state changes
942 * for this output don't cause this loop by setting a flag here */
943 o
->ignore_state_change
= TRUE
;
945 if (output_create_sink_input(o
) >= 0) {
947 if (pa_sink_get_state(o
->sink
) != PA_SINK_INIT
) {
949 /* First we register the output. That means that the sink
950 * will start to pass data to this output. */
951 pa_asyncmsgq_send(o
->userdata
->sink
->asyncmsgq
, PA_MSGOBJECT(o
->userdata
->sink
), SINK_MESSAGE_ADD_OUTPUT
, o
, 0, NULL
);
953 /* Then we enable the sink input. That means that the sink
954 * is now asked for new data. */
955 pa_sink_input_put(o
->sink_input
);
958 /* Hmm the sink is not yet started, do things right here */
959 output_add_within_thread(o
);
962 o
->ignore_state_change
= FALSE
;
965 /* Called from main context */
966 static void output_disable(struct output
*o
) {
972 /* First we disable the sink input. That means that the sink is
973 * not asked for new data anymore */
974 pa_sink_input_unlink(o
->sink_input
);
976 /* Then we unregister the output. That means that the sink doesn't
977 * pass any further data to this output */
978 pa_asyncmsgq_send(o
->userdata
->sink
->asyncmsgq
, PA_MSGOBJECT(o
->userdata
->sink
), SINK_MESSAGE_REMOVE_OUTPUT
, o
, 0, NULL
);
980 /* Now dellocate the stream */
981 pa_sink_input_unref(o
->sink_input
);
982 o
->sink_input
= NULL
;
984 /* Finally, drop all queued data */
985 pa_memblockq_flush_write(o
->memblockq
);
986 pa_asyncmsgq_flush(o
->inq
, FALSE
);
987 pa_asyncmsgq_flush(o
->outq
, FALSE
);
990 /* Called from main context */
991 static void output_verify(struct output
*o
) {
994 if (PA_SINK_IS_OPENED(pa_sink_get_state(o
->userdata
->sink
)))
1000 /* Called from main context */
1001 static pa_bool_t
is_suitable_sink(struct userdata
*u
, pa_sink
*s
) {
1004 pa_sink_assert_ref(s
);
1009 if (!(s
->flags
& PA_SINK_HARDWARE
))
1012 if (!(s
->flags
& PA_SINK_LATENCY
))
1015 if ((t
= pa_proplist_gets(s
->proplist
, PA_PROP_DEVICE_CLASS
)))
1016 if (!pa_streq(t
, "sound"))
1022 /* Called from main context */
1023 static pa_hook_result_t
sink_put_hook_cb(pa_core
*c
, pa_sink
*s
, struct userdata
* u
) {
1026 pa_core_assert_ref(c
);
1027 pa_sink_assert_ref(s
);
1029 pa_assert(u
->automatic
);
1031 if (!is_suitable_sink(u
, s
))
1034 pa_log_info("Configuring new sink: %s", s
->name
);
1035 if (!(o
= output_new(u
, s
))) {
1036 pa_log("Failed to create sink input on sink '%s'.", s
->name
);
1045 /* Called from main context */
1046 static struct output
* find_output(struct userdata
*u
, pa_sink
*s
) {
1056 PA_IDXSET_FOREACH(o
, u
->outputs
, idx
)
1063 /* Called from main context */
1064 static pa_hook_result_t
sink_unlink_hook_cb(pa_core
*c
, pa_sink
*s
, struct userdata
* u
) {
1068 pa_sink_assert_ref(s
);
1071 if (!(o
= find_output(u
, s
)))
1074 pa_log_info("Unconfiguring sink: %s", s
->name
);
1080 /* Called from main context */
1081 static pa_hook_result_t
sink_state_changed_hook_cb(pa_core
*c
, pa_sink
*s
, struct userdata
* u
) {
1084 if (!(o
= find_output(u
, s
)))
1087 /* This state change might be triggered because we are creating a
1088 * stream here, in that case we don't want to create it a second
1089 * time here and enter a loop */
1090 if (o
->ignore_state_change
)
1098 int pa__init(pa_module
*m
) {
1100 pa_modargs
*ma
= NULL
;
1101 const char *slaves
, *rm
;
1102 int resample_method
= PA_RESAMPLER_TRIVIAL
;
1107 pa_sink_new_data data
;
1111 if (!(ma
= pa_modargs_new(m
->argument
, valid_modargs
))) {
1112 pa_log("failed to parse module arguments");
1116 if ((rm
= pa_modargs_get_value(ma
, "resample_method", NULL
))) {
1117 if ((resample_method
= pa_parse_resample_method(rm
)) < 0) {
1118 pa_log("invalid resample method '%s'", rm
);
1123 m
->userdata
= u
= pa_xnew0(struct userdata
, 1);
1126 u
->adjust_time
= DEFAULT_ADJUST_TIME
;
1127 u
->rtpoll
= pa_rtpoll_new();
1128 pa_thread_mq_init(&u
->thread_mq
, m
->core
->mainloop
, u
->rtpoll
);
1129 u
->resample_method
= resample_method
;
1130 u
->outputs
= pa_idxset_new(NULL
, NULL
);
1131 u
->sink_put_slot
= u
->sink_unlink_slot
= u
->sink_state_changed_slot
= NULL
;
1132 PA_LLIST_HEAD_INIT(struct output
, u
->thread_info
.active_outputs
);
1133 pa_atomic_store(&u
->thread_info
.running
, FALSE
);
1134 u
->thread_info
.in_null_mode
= FALSE
;
1135 u
->thread_info
.counter
= 0;
1136 u
->thread_info
.smoother
= pa_smoother_new(
1145 if (pa_modargs_get_value_u32(ma
, "adjust_time", &u
->adjust_time
) < 0) {
1146 pa_log("Failed to parse adjust_time value");
1150 slaves
= pa_modargs_get_value(ma
, "slaves", NULL
);
1151 u
->automatic
= !slaves
;
1153 ss
= m
->core
->default_sample_spec
;
1154 map
= m
->core
->default_channel_map
;
1155 if ((pa_modargs_get_sample_spec_and_channel_map(ma
, &ss
, &map
, PA_CHANNEL_MAP_DEFAULT
) < 0)) {
1156 pa_log("Invalid sample specification.");
1160 pa_sink_new_data_init(&data
);
1161 data
.namereg_fail
= FALSE
;
1162 data
.driver
= __FILE__
;
1164 pa_sink_new_data_set_name(&data
, pa_modargs_get_value(ma
, "sink_name", DEFAULT_SINK_NAME
));
1165 pa_sink_new_data_set_sample_spec(&data
, &ss
);
1166 pa_sink_new_data_set_channel_map(&data
, &map
);
1167 pa_proplist_sets(data
.proplist
, PA_PROP_DEVICE_CLASS
, "filter");
1170 pa_proplist_sets(data
.proplist
, "combine.slaves", slaves
);
1172 if (pa_modargs_get_proplist(ma
, "sink_properties", data
.proplist
, PA_UPDATE_REPLACE
) < 0) {
1173 pa_log("Invalid properties");
1174 pa_sink_new_data_done(&data
);
1178 /* Check proplist for a description & fill in a default value if not */
1179 u
->auto_desc
= FALSE
;
1180 if (NULL
== pa_proplist_gets(data
.proplist
, PA_PROP_DEVICE_DESCRIPTION
)) {
1181 u
->auto_desc
= TRUE
;
1182 pa_proplist_sets(data
.proplist
, PA_PROP_DEVICE_DESCRIPTION
, "Simultaneous Output");
1185 u
->sink
= pa_sink_new(m
->core
, &data
, PA_SINK_LATENCY
);
1186 pa_sink_new_data_done(&data
);
1189 pa_log("Failed to create sink");
1193 u
->sink
->parent
.process_msg
= sink_process_msg
;
1194 u
->sink
->set_state
= sink_set_state
;
1195 u
->sink
->userdata
= u
;
1197 pa_sink_set_rtpoll(u
->sink
, u
->rtpoll
);
1198 pa_sink_set_asyncmsgq(u
->sink
, u
->thread_mq
.inq
);
1200 u
->block_usec
= BLOCK_USEC
;
1201 pa_sink_set_max_request(u
->sink
, pa_usec_to_bytes(u
->block_usec
, &u
->sink
->sample_spec
));
1203 if (!u
->automatic
) {
1204 const char*split_state
;
1208 /* The slaves have been specified manually */
1211 while ((n
= pa_split(slaves
, ",", &split_state
))) {
1212 pa_sink
*slave_sink
;
1214 if (!(slave_sink
= pa_namereg_get(m
->core
, n
, PA_NAMEREG_SINK
)) || slave_sink
== u
->sink
) {
1215 pa_log("Invalid slave sink '%s'", n
);
1222 if (!output_new(u
, slave_sink
)) {
1223 pa_log("Failed to create slave sink input on sink '%s'.", slave_sink
->name
);
1228 if (pa_idxset_size(u
->outputs
) <= 1)
1229 pa_log_warn("No slave sinks specified.");
1231 u
->sink_put_slot
= NULL
;
1236 /* We're in automatic mode, we add every sink that matches our needs */
1238 PA_IDXSET_FOREACH(s
, m
->core
->sinks
, idx
) {
1240 if (!is_suitable_sink(u
, s
))
1243 if (!output_new(u
, s
)) {
1244 pa_log("Failed to create sink input on sink '%s'.", s
->name
);
1249 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
);
1252 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
);
1253 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
);
1255 if (!(u
->thread
= pa_thread_new(thread_func
, u
))) {
1256 pa_log("Failed to create thread.");
1260 /* Activate the sink and the sink inputs */
1261 pa_sink_put(u
->sink
);
1263 PA_IDXSET_FOREACH(o
, u
->outputs
, idx
)
1266 if (u
->adjust_time
> 0)
1267 u
->time_event
= pa_core_rttime_new(m
->core
, pa_rtclock_now() + u
->adjust_time
* PA_USEC_PER_SEC
, time_callback
, u
);
1269 pa_modargs_free(ma
);
1276 pa_modargs_free(ma
);
1283 void pa__done(pa_module
*m
) {
1289 if (!(u
= m
->userdata
))
1292 if (u
->sink_put_slot
)
1293 pa_hook_slot_free(u
->sink_put_slot
);
1295 if (u
->sink_unlink_slot
)
1296 pa_hook_slot_free(u
->sink_unlink_slot
);
1298 if (u
->sink_state_changed_slot
)
1299 pa_hook_slot_free(u
->sink_state_changed_slot
);
1302 while ((o
= pa_idxset_first(u
->outputs
, NULL
)))
1305 pa_idxset_free(u
->outputs
, NULL
, NULL
);
1309 pa_sink_unlink(u
->sink
);
1312 pa_asyncmsgq_send(u
->thread_mq
.inq
, NULL
, PA_MESSAGE_SHUTDOWN
, NULL
, 0, NULL
);
1313 pa_thread_free(u
->thread
);
1316 pa_thread_mq_done(&u
->thread_mq
);
1319 pa_sink_unref(u
->sink
);
1322 pa_rtpoll_free(u
->rtpoll
);
1325 u
->core
->mainloop
->time_free(u
->time_event
);
1327 if (u
->thread_info
.smoother
)
1328 pa_smoother_free(u
->thread_info
.smoother
);