default: esd is obsolete, hence don't load it anymore by default
[pulseaudio-mirror.git] / src / pulsecore / sink.c
blob45761a6c5e7c2eec9e2d5db5f9dbca2add33ed53
1 /***
2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
7 PulseAudio is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published
9 by the Free Software Foundation; either version 2.1 of the License,
10 or (at your option) any later version.
12 PulseAudio is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with PulseAudio; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 USA.
21 ***/
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
31 #include <pulse/introspect.h>
32 #include <pulse/utf8.h>
33 #include <pulse/xmalloc.h>
34 #include <pulse/timeval.h>
35 #include <pulse/util.h>
36 #include <pulse/i18n.h>
37 #include <pulse/rtclock.h>
38 #include <pulse/internal.h>
40 #include <pulsecore/sink-input.h>
41 #include <pulsecore/namereg.h>
42 #include <pulsecore/core-util.h>
43 #include <pulsecore/sample-util.h>
44 #include <pulsecore/core-subscribe.h>
45 #include <pulsecore/log.h>
46 #include <pulsecore/macro.h>
47 #include <pulsecore/play-memblockq.h>
48 #include <pulsecore/flist.h>
50 #include "sink.h"
52 #define MAX_MIX_CHANNELS 32
53 #define MIX_BUFFER_LENGTH (PA_PAGE_SIZE)
54 #define ABSOLUTE_MIN_LATENCY (500)
55 #define ABSOLUTE_MAX_LATENCY (10*PA_USEC_PER_SEC)
56 #define DEFAULT_FIXED_LATENCY (250*PA_USEC_PER_MSEC)
58 PA_DEFINE_PUBLIC_CLASS(pa_sink, pa_msgobject);
60 struct pa_sink_volume_change {
61 pa_usec_t at;
62 pa_cvolume hw_volume;
64 PA_LLIST_FIELDS(pa_sink_volume_change);
67 struct sink_message_set_port {
68 pa_device_port *port;
69 int ret;
72 static void sink_free(pa_object *s);
74 static void pa_sink_volume_change_push(pa_sink *s);
75 static void pa_sink_volume_change_flush(pa_sink *s);
76 static void pa_sink_volume_change_rewind(pa_sink *s, size_t nbytes);
78 pa_sink_new_data* pa_sink_new_data_init(pa_sink_new_data *data) {
79 pa_assert(data);
81 pa_zero(*data);
82 data->proplist = pa_proplist_new();
84 return data;
87 void pa_sink_new_data_set_name(pa_sink_new_data *data, const char *name) {
88 pa_assert(data);
90 pa_xfree(data->name);
91 data->name = pa_xstrdup(name);
94 void pa_sink_new_data_set_sample_spec(pa_sink_new_data *data, const pa_sample_spec *spec) {
95 pa_assert(data);
97 if ((data->sample_spec_is_set = !!spec))
98 data->sample_spec = *spec;
101 void pa_sink_new_data_set_channel_map(pa_sink_new_data *data, const pa_channel_map *map) {
102 pa_assert(data);
104 if ((data->channel_map_is_set = !!map))
105 data->channel_map = *map;
108 void pa_sink_new_data_set_volume(pa_sink_new_data *data, const pa_cvolume *volume) {
109 pa_assert(data);
111 if ((data->volume_is_set = !!volume))
112 data->volume = *volume;
115 void pa_sink_new_data_set_muted(pa_sink_new_data *data, pa_bool_t mute) {
116 pa_assert(data);
118 data->muted_is_set = TRUE;
119 data->muted = !!mute;
122 void pa_sink_new_data_set_port(pa_sink_new_data *data, const char *port) {
123 pa_assert(data);
125 pa_xfree(data->active_port);
126 data->active_port = pa_xstrdup(port);
129 void pa_sink_new_data_done(pa_sink_new_data *data) {
130 pa_assert(data);
132 pa_proplist_free(data->proplist);
134 if (data->ports) {
135 pa_device_port *p;
137 while ((p = pa_hashmap_steal_first(data->ports)))
138 pa_device_port_free(p);
140 pa_hashmap_free(data->ports, NULL, NULL);
143 pa_xfree(data->name);
144 pa_xfree(data->active_port);
147 pa_device_port *pa_device_port_new(const char *name, const char *description, size_t extra) {
148 pa_device_port *p;
150 pa_assert(name);
152 p = pa_xmalloc(PA_ALIGN(sizeof(pa_device_port)) + extra);
153 p->name = pa_xstrdup(name);
154 p->description = pa_xstrdup(description);
156 p->priority = 0;
158 return p;
161 void pa_device_port_free(pa_device_port *p) {
162 pa_assert(p);
164 pa_xfree(p->name);
165 pa_xfree(p->description);
166 pa_xfree(p);
169 /* Called from main context */
170 static void reset_callbacks(pa_sink *s) {
171 pa_assert(s);
173 s->set_state = NULL;
174 s->get_volume = NULL;
175 s->set_volume = NULL;
176 s->get_mute = NULL;
177 s->set_mute = NULL;
178 s->request_rewind = NULL;
179 s->update_requested_latency = NULL;
180 s->set_port = NULL;
181 s->get_formats = NULL;
184 /* Called from main context */
185 pa_sink* pa_sink_new(
186 pa_core *core,
187 pa_sink_new_data *data,
188 pa_sink_flags_t flags) {
190 pa_sink *s;
191 const char *name;
192 char st[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
193 pa_source_new_data source_data;
194 const char *dn;
195 char *pt;
197 pa_assert(core);
198 pa_assert(data);
199 pa_assert(data->name);
200 pa_assert_ctl_context();
202 s = pa_msgobject_new(pa_sink);
204 if (!(name = pa_namereg_register(core, data->name, PA_NAMEREG_SINK, s, data->namereg_fail))) {
205 pa_log_debug("Failed to register name %s.", data->name);
206 pa_xfree(s);
207 return NULL;
210 pa_sink_new_data_set_name(data, name);
212 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_NEW], data) < 0) {
213 pa_xfree(s);
214 pa_namereg_unregister(core, name);
215 return NULL;
218 /* FIXME, need to free s here on failure */
220 pa_return_null_if_fail(!data->driver || pa_utf8_valid(data->driver));
221 pa_return_null_if_fail(data->name && pa_utf8_valid(data->name) && data->name[0]);
223 pa_return_null_if_fail(data->sample_spec_is_set && pa_sample_spec_valid(&data->sample_spec));
225 if (!data->channel_map_is_set)
226 pa_return_null_if_fail(pa_channel_map_init_auto(&data->channel_map, data->sample_spec.channels, PA_CHANNEL_MAP_DEFAULT));
228 pa_return_null_if_fail(pa_channel_map_valid(&data->channel_map));
229 pa_return_null_if_fail(data->channel_map.channels == data->sample_spec.channels);
231 /* FIXME: There should probably be a general function for checking whether
232 * the sink volume is allowed to be set, like there is for sink inputs. */
233 pa_assert(!data->volume_is_set || !(flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
235 if (!data->volume_is_set) {
236 pa_cvolume_reset(&data->volume, data->sample_spec.channels);
237 data->save_volume = FALSE;
240 pa_return_null_if_fail(pa_cvolume_valid(&data->volume));
241 pa_return_null_if_fail(pa_cvolume_compatible(&data->volume, &data->sample_spec));
243 if (!data->muted_is_set)
244 data->muted = FALSE;
246 if (data->card)
247 pa_proplist_update(data->proplist, PA_UPDATE_MERGE, data->card->proplist);
249 pa_device_init_description(data->proplist);
250 pa_device_init_icon(data->proplist, TRUE);
251 pa_device_init_intended_roles(data->proplist);
253 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_FIXATE], data) < 0) {
254 pa_xfree(s);
255 pa_namereg_unregister(core, name);
256 return NULL;
259 s->parent.parent.free = sink_free;
260 s->parent.process_msg = pa_sink_process_msg;
262 s->core = core;
263 s->state = PA_SINK_INIT;
264 s->flags = flags;
265 s->priority = 0;
266 s->suspend_cause = 0;
267 s->name = pa_xstrdup(name);
268 s->proplist = pa_proplist_copy(data->proplist);
269 s->driver = pa_xstrdup(pa_path_get_filename(data->driver));
270 s->module = data->module;
271 s->card = data->card;
273 s->priority = pa_device_init_priority(s->proplist);
275 s->sample_spec = data->sample_spec;
276 s->channel_map = data->channel_map;
278 s->inputs = pa_idxset_new(NULL, NULL);
279 s->n_corked = 0;
280 s->input_to_master = NULL;
282 s->reference_volume = s->real_volume = data->volume;
283 pa_cvolume_reset(&s->soft_volume, s->sample_spec.channels);
284 s->base_volume = PA_VOLUME_NORM;
285 s->n_volume_steps = PA_VOLUME_NORM+1;
286 s->muted = data->muted;
287 s->refresh_volume = s->refresh_muted = FALSE;
289 reset_callbacks(s);
290 s->userdata = NULL;
292 s->asyncmsgq = NULL;
294 /* As a minor optimization we just steal the list instead of
295 * copying it here */
296 s->ports = data->ports;
297 data->ports = NULL;
299 s->active_port = NULL;
300 s->save_port = FALSE;
302 if (data->active_port && s->ports)
303 if ((s->active_port = pa_hashmap_get(s->ports, data->active_port)))
304 s->save_port = data->save_port;
306 if (!s->active_port && s->ports) {
307 void *state;
308 pa_device_port *p;
310 PA_HASHMAP_FOREACH(p, s->ports, state)
311 if (!s->active_port || p->priority > s->active_port->priority)
312 s->active_port = p;
315 s->save_volume = data->save_volume;
316 s->save_muted = data->save_muted;
318 pa_silence_memchunk_get(
319 &core->silence_cache,
320 core->mempool,
321 &s->silence,
322 &s->sample_spec,
325 s->thread_info.rtpoll = NULL;
326 s->thread_info.inputs = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
327 s->thread_info.soft_volume = s->soft_volume;
328 s->thread_info.soft_muted = s->muted;
329 s->thread_info.state = s->state;
330 s->thread_info.rewind_nbytes = 0;
331 s->thread_info.rewind_requested = FALSE;
332 s->thread_info.max_rewind = 0;
333 s->thread_info.max_request = 0;
334 s->thread_info.requested_latency_valid = FALSE;
335 s->thread_info.requested_latency = 0;
336 s->thread_info.min_latency = ABSOLUTE_MIN_LATENCY;
337 s->thread_info.max_latency = ABSOLUTE_MAX_LATENCY;
338 s->thread_info.fixed_latency = flags & PA_SINK_DYNAMIC_LATENCY ? 0 : DEFAULT_FIXED_LATENCY;
340 PA_LLIST_HEAD_INIT(pa_sink_volume_change, s->thread_info.volume_changes);
341 s->thread_info.volume_changes_tail = NULL;
342 pa_sw_cvolume_multiply(&s->thread_info.current_hw_volume, &s->soft_volume, &s->real_volume);
343 s->thread_info.volume_change_safety_margin = core->sync_volume_safety_margin_usec;
344 s->thread_info.volume_change_extra_delay = core->sync_volume_extra_delay_usec;
346 /* FIXME: This should probably be moved to pa_sink_put() */
347 pa_assert_se(pa_idxset_put(core->sinks, s, &s->index) >= 0);
349 if (s->card)
350 pa_assert_se(pa_idxset_put(s->card->sinks, s, NULL) >= 0);
352 pt = pa_proplist_to_string_sep(s->proplist, "\n ");
353 pa_log_info("Created sink %u \"%s\" with sample spec %s and channel map %s\n %s",
354 s->index,
355 s->name,
356 pa_sample_spec_snprint(st, sizeof(st), &s->sample_spec),
357 pa_channel_map_snprint(cm, sizeof(cm), &s->channel_map),
358 pt);
359 pa_xfree(pt);
361 pa_source_new_data_init(&source_data);
362 pa_source_new_data_set_sample_spec(&source_data, &s->sample_spec);
363 pa_source_new_data_set_channel_map(&source_data, &s->channel_map);
364 source_data.name = pa_sprintf_malloc("%s.monitor", name);
365 source_data.driver = data->driver;
366 source_data.module = data->module;
367 source_data.card = data->card;
369 dn = pa_proplist_gets(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
370 pa_proplist_setf(source_data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Monitor of %s", dn ? dn : s->name);
371 pa_proplist_sets(source_data.proplist, PA_PROP_DEVICE_CLASS, "monitor");
373 s->monitor_source = pa_source_new(core, &source_data,
374 ((flags & PA_SINK_LATENCY) ? PA_SOURCE_LATENCY : 0) |
375 ((flags & PA_SINK_DYNAMIC_LATENCY) ? PA_SOURCE_DYNAMIC_LATENCY : 0));
377 pa_source_new_data_done(&source_data);
379 if (!s->monitor_source) {
380 pa_sink_unlink(s);
381 pa_sink_unref(s);
382 return NULL;
385 s->monitor_source->monitor_of = s;
387 pa_source_set_latency_range(s->monitor_source, s->thread_info.min_latency, s->thread_info.max_latency);
388 pa_source_set_fixed_latency(s->monitor_source, s->thread_info.fixed_latency);
389 pa_source_set_max_rewind(s->monitor_source, s->thread_info.max_rewind);
391 return s;
394 /* Called from main context */
395 static int sink_set_state(pa_sink *s, pa_sink_state_t state) {
396 int ret;
397 pa_bool_t suspend_change;
398 pa_sink_state_t original_state;
400 pa_assert(s);
401 pa_assert_ctl_context();
403 if (s->state == state)
404 return 0;
406 original_state = s->state;
408 suspend_change =
409 (original_state == PA_SINK_SUSPENDED && PA_SINK_IS_OPENED(state)) ||
410 (PA_SINK_IS_OPENED(original_state) && state == PA_SINK_SUSPENDED);
412 if (s->set_state)
413 if ((ret = s->set_state(s, state)) < 0)
414 return ret;
416 if (s->asyncmsgq)
417 if ((ret = pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_STATE, PA_UINT_TO_PTR(state), 0, NULL)) < 0) {
419 if (s->set_state)
420 s->set_state(s, original_state);
422 return ret;
425 s->state = state;
427 if (state != PA_SINK_UNLINKED) { /* if we enter UNLINKED state pa_sink_unlink() will fire the apropriate events */
428 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED], s);
429 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
432 if (suspend_change) {
433 pa_sink_input *i;
434 uint32_t idx;
436 /* We're suspending or resuming, tell everyone about it */
438 PA_IDXSET_FOREACH(i, s->inputs, idx)
439 if (s->state == PA_SINK_SUSPENDED &&
440 (i->flags & PA_SINK_INPUT_KILL_ON_SUSPEND))
441 pa_sink_input_kill(i);
442 else if (i->suspend)
443 i->suspend(i, state == PA_SINK_SUSPENDED);
445 if (s->monitor_source)
446 pa_source_sync_suspend(s->monitor_source);
449 return 0;
452 /* Called from main context */
453 void pa_sink_put(pa_sink* s) {
454 pa_sink_assert_ref(s);
455 pa_assert_ctl_context();
457 pa_assert(s->state == PA_SINK_INIT);
458 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER) || s->input_to_master);
460 /* The following fields must be initialized properly when calling _put() */
461 pa_assert(s->asyncmsgq);
462 pa_assert(s->thread_info.min_latency <= s->thread_info.max_latency);
464 /* Generally, flags should be initialized via pa_sink_new(). As a
465 * special exception we allow volume related flags to be set
466 * between _new() and _put(). */
468 /* XXX: Currently decibel volume is disabled for all sinks that use volume
469 * sharing. When the master sink supports decibel volume, it would be good
470 * to have the flag also in the filter sink, but currently we don't do that
471 * so that the flags of the filter sink never change when it's moved from
472 * a master sink to another. One solution for this problem would be to
473 * remove user-visible volume altogether from filter sinks when volume
474 * sharing is used, but the current approach was easier to implement... */
475 if (!(s->flags & PA_SINK_HW_VOLUME_CTRL) && !(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
476 s->flags |= PA_SINK_DECIBEL_VOLUME;
478 if ((s->flags & PA_SINK_DECIBEL_VOLUME) && s->core->flat_volumes)
479 s->flags |= PA_SINK_FLAT_VOLUME;
481 if (s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER) {
482 pa_sink *root_sink = s->input_to_master->sink;
484 while (root_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)
485 root_sink = root_sink->input_to_master->sink;
487 s->reference_volume = root_sink->reference_volume;
488 pa_cvolume_remap(&s->reference_volume, &root_sink->channel_map, &s->channel_map);
490 s->real_volume = root_sink->real_volume;
491 pa_cvolume_remap(&s->real_volume, &root_sink->channel_map, &s->channel_map);
492 } else
493 /* We assume that if the sink implementor changed the default
494 * volume he did so in real_volume, because that is the usual
495 * place where he is supposed to place his changes. */
496 s->reference_volume = s->real_volume;
498 s->thread_info.soft_volume = s->soft_volume;
499 s->thread_info.soft_muted = s->muted;
500 pa_sw_cvolume_multiply(&s->thread_info.current_hw_volume, &s->soft_volume, &s->real_volume);
502 pa_assert((s->flags & PA_SINK_HW_VOLUME_CTRL)
503 || (s->base_volume == PA_VOLUME_NORM
504 && ((s->flags & PA_SINK_DECIBEL_VOLUME || (s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)))));
505 pa_assert(!(s->flags & PA_SINK_DECIBEL_VOLUME) || s->n_volume_steps == PA_VOLUME_NORM+1);
506 pa_assert(!(s->flags & PA_SINK_DYNAMIC_LATENCY) == (s->thread_info.fixed_latency != 0));
507 pa_assert(!(s->flags & PA_SINK_LATENCY) == !(s->monitor_source->flags & PA_SOURCE_LATENCY));
508 pa_assert(!(s->flags & PA_SINK_DYNAMIC_LATENCY) == !(s->monitor_source->flags & PA_SOURCE_DYNAMIC_LATENCY));
509 pa_assert(!(s->flags & PA_SINK_HW_VOLUME_CTRL) || s->set_volume);
510 pa_assert(!(s->flags & PA_SINK_SYNC_VOLUME) || (s->flags & PA_SINK_HW_VOLUME_CTRL));
511 pa_assert(!(s->flags & PA_SINK_SYNC_VOLUME) || s->write_volume);
512 pa_assert(!(s->flags & PA_SINK_HW_MUTE_CTRL) || s->set_mute);
514 pa_assert(s->monitor_source->thread_info.fixed_latency == s->thread_info.fixed_latency);
515 pa_assert(s->monitor_source->thread_info.min_latency == s->thread_info.min_latency);
516 pa_assert(s->monitor_source->thread_info.max_latency == s->thread_info.max_latency);
518 pa_assert_se(sink_set_state(s, PA_SINK_IDLE) == 0);
520 pa_source_put(s->monitor_source);
522 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_NEW, s->index);
523 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PUT], s);
526 /* Called from main context */
527 void pa_sink_unlink(pa_sink* s) {
528 pa_bool_t linked;
529 pa_sink_input *i, *j = NULL;
531 pa_assert(s);
532 pa_assert_ctl_context();
534 /* Please note that pa_sink_unlink() does more than simply
535 * reversing pa_sink_put(). It also undoes the registrations
536 * already done in pa_sink_new()! */
538 /* All operations here shall be idempotent, i.e. pa_sink_unlink()
539 * may be called multiple times on the same sink without bad
540 * effects. */
542 linked = PA_SINK_IS_LINKED(s->state);
544 if (linked)
545 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_UNLINK], s);
547 if (s->state != PA_SINK_UNLINKED)
548 pa_namereg_unregister(s->core, s->name);
549 pa_idxset_remove_by_data(s->core->sinks, s, NULL);
551 if (s->card)
552 pa_idxset_remove_by_data(s->card->sinks, s, NULL);
554 while ((i = pa_idxset_first(s->inputs, NULL))) {
555 pa_assert(i != j);
556 pa_sink_input_kill(i);
557 j = i;
560 if (linked)
561 sink_set_state(s, PA_SINK_UNLINKED);
562 else
563 s->state = PA_SINK_UNLINKED;
565 reset_callbacks(s);
567 if (s->monitor_source)
568 pa_source_unlink(s->monitor_source);
570 if (linked) {
571 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_REMOVE, s->index);
572 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_UNLINK_POST], s);
576 /* Called from main context */
577 static void sink_free(pa_object *o) {
578 pa_sink *s = PA_SINK(o);
579 pa_sink_input *i;
581 pa_assert(s);
582 pa_assert_ctl_context();
583 pa_assert(pa_sink_refcnt(s) == 0);
585 if (PA_SINK_IS_LINKED(s->state))
586 pa_sink_unlink(s);
588 pa_log_info("Freeing sink %u \"%s\"", s->index, s->name);
590 if (s->monitor_source) {
591 pa_source_unref(s->monitor_source);
592 s->monitor_source = NULL;
595 pa_idxset_free(s->inputs, NULL, NULL);
597 while ((i = pa_hashmap_steal_first(s->thread_info.inputs)))
598 pa_sink_input_unref(i);
600 pa_hashmap_free(s->thread_info.inputs, NULL, NULL);
602 if (s->silence.memblock)
603 pa_memblock_unref(s->silence.memblock);
605 pa_xfree(s->name);
606 pa_xfree(s->driver);
608 if (s->proplist)
609 pa_proplist_free(s->proplist);
611 if (s->ports) {
612 pa_device_port *p;
614 while ((p = pa_hashmap_steal_first(s->ports)))
615 pa_device_port_free(p);
617 pa_hashmap_free(s->ports, NULL, NULL);
620 pa_xfree(s);
623 /* Called from main context, and not while the IO thread is active, please */
624 void pa_sink_set_asyncmsgq(pa_sink *s, pa_asyncmsgq *q) {
625 pa_sink_assert_ref(s);
626 pa_assert_ctl_context();
628 s->asyncmsgq = q;
630 if (s->monitor_source)
631 pa_source_set_asyncmsgq(s->monitor_source, q);
634 /* Called from main context, and not while the IO thread is active, please */
635 void pa_sink_update_flags(pa_sink *s, pa_sink_flags_t mask, pa_sink_flags_t value) {
636 pa_sink_assert_ref(s);
637 pa_assert_ctl_context();
639 if (mask == 0)
640 return;
642 /* For now, allow only a minimal set of flags to be changed. */
643 pa_assert((mask & ~(PA_SINK_DYNAMIC_LATENCY|PA_SINK_LATENCY)) == 0);
645 s->flags = (s->flags & ~mask) | (value & mask);
647 pa_source_update_flags(s->monitor_source,
648 ((mask & PA_SINK_LATENCY) ? PA_SOURCE_LATENCY : 0) |
649 ((mask & PA_SINK_DYNAMIC_LATENCY) ? PA_SOURCE_DYNAMIC_LATENCY : 0),
650 ((value & PA_SINK_LATENCY) ? PA_SOURCE_LATENCY : 0) |
651 ((value & PA_SINK_DYNAMIC_LATENCY) ? PA_SINK_DYNAMIC_LATENCY : 0));
654 /* Called from IO context, or before _put() from main context */
655 void pa_sink_set_rtpoll(pa_sink *s, pa_rtpoll *p) {
656 pa_sink_assert_ref(s);
657 pa_sink_assert_io_context(s);
659 s->thread_info.rtpoll = p;
661 if (s->monitor_source)
662 pa_source_set_rtpoll(s->monitor_source, p);
665 /* Called from main context */
666 int pa_sink_update_status(pa_sink*s) {
667 pa_sink_assert_ref(s);
668 pa_assert_ctl_context();
669 pa_assert(PA_SINK_IS_LINKED(s->state));
671 if (s->state == PA_SINK_SUSPENDED)
672 return 0;
674 return sink_set_state(s, pa_sink_used_by(s) ? PA_SINK_RUNNING : PA_SINK_IDLE);
677 /* Called from main context */
678 int pa_sink_suspend(pa_sink *s, pa_bool_t suspend, pa_suspend_cause_t cause) {
679 pa_sink_assert_ref(s);
680 pa_assert_ctl_context();
681 pa_assert(PA_SINK_IS_LINKED(s->state));
682 pa_assert(cause != 0);
684 if (suspend) {
685 s->suspend_cause |= cause;
686 s->monitor_source->suspend_cause |= cause;
687 } else {
688 s->suspend_cause &= ~cause;
689 s->monitor_source->suspend_cause &= ~cause;
692 if ((pa_sink_get_state(s) == PA_SINK_SUSPENDED) == !!s->suspend_cause)
693 return 0;
695 pa_log_debug("Suspend cause of sink %s is 0x%04x, %s", s->name, s->suspend_cause, s->suspend_cause ? "suspending" : "resuming");
697 if (s->suspend_cause)
698 return sink_set_state(s, PA_SINK_SUSPENDED);
699 else
700 return sink_set_state(s, pa_sink_used_by(s) ? PA_SINK_RUNNING : PA_SINK_IDLE);
703 /* Called from main context */
704 pa_queue *pa_sink_move_all_start(pa_sink *s, pa_queue *q) {
705 pa_sink_input *i, *n;
706 uint32_t idx;
708 pa_sink_assert_ref(s);
709 pa_assert_ctl_context();
710 pa_assert(PA_SINK_IS_LINKED(s->state));
712 if (!q)
713 q = pa_queue_new();
715 for (i = PA_SINK_INPUT(pa_idxset_first(s->inputs, &idx)); i; i = n) {
716 n = PA_SINK_INPUT(pa_idxset_next(s->inputs, &idx));
718 pa_sink_input_ref(i);
720 if (pa_sink_input_start_move(i) >= 0)
721 pa_queue_push(q, i);
722 else
723 pa_sink_input_unref(i);
726 return q;
729 /* Called from main context */
730 void pa_sink_move_all_finish(pa_sink *s, pa_queue *q, pa_bool_t save) {
731 pa_sink_input *i;
733 pa_sink_assert_ref(s);
734 pa_assert_ctl_context();
735 pa_assert(PA_SINK_IS_LINKED(s->state));
736 pa_assert(q);
738 while ((i = PA_SINK_INPUT(pa_queue_pop(q)))) {
739 if (pa_sink_input_finish_move(i, s, save) < 0)
740 pa_sink_input_fail_move(i);
742 pa_sink_input_unref(i);
745 pa_queue_free(q, NULL, NULL);
748 /* Called from main context */
749 void pa_sink_move_all_fail(pa_queue *q) {
750 pa_sink_input *i;
752 pa_assert_ctl_context();
753 pa_assert(q);
755 while ((i = PA_SINK_INPUT(pa_queue_pop(q)))) {
756 pa_sink_input_fail_move(i);
757 pa_sink_input_unref(i);
760 pa_queue_free(q, NULL, NULL);
763 /* Called from IO thread context */
764 void pa_sink_process_rewind(pa_sink *s, size_t nbytes) {
765 pa_sink_input *i;
766 void *state = NULL;
768 pa_sink_assert_ref(s);
769 pa_sink_assert_io_context(s);
770 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
772 /* If nobody requested this and this is actually no real rewind
773 * then we can short cut this. Please note that this means that
774 * not all rewind requests triggered upstream will always be
775 * translated in actual requests! */
776 if (!s->thread_info.rewind_requested && nbytes <= 0)
777 return;
779 s->thread_info.rewind_nbytes = 0;
780 s->thread_info.rewind_requested = FALSE;
782 if (s->thread_info.state == PA_SINK_SUSPENDED)
783 return;
785 if (nbytes > 0) {
786 pa_log_debug("Processing rewind...");
787 if (s->flags & PA_SINK_SYNC_VOLUME)
788 pa_sink_volume_change_rewind(s, nbytes);
791 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
792 pa_sink_input_assert_ref(i);
793 pa_sink_input_process_rewind(i, nbytes);
796 if (nbytes > 0) {
797 if (s->monitor_source && PA_SOURCE_IS_LINKED(s->monitor_source->thread_info.state))
798 pa_source_process_rewind(s->monitor_source, nbytes);
802 /* Called from IO thread context */
803 static unsigned fill_mix_info(pa_sink *s, size_t *length, pa_mix_info *info, unsigned maxinfo) {
804 pa_sink_input *i;
805 unsigned n = 0;
806 void *state = NULL;
807 size_t mixlength = *length;
809 pa_sink_assert_ref(s);
810 pa_sink_assert_io_context(s);
811 pa_assert(info);
813 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)) && maxinfo > 0) {
814 pa_sink_input_assert_ref(i);
816 pa_sink_input_peek(i, *length, &info->chunk, &info->volume);
818 if (mixlength == 0 || info->chunk.length < mixlength)
819 mixlength = info->chunk.length;
821 if (pa_memblock_is_silence(info->chunk.memblock)) {
822 pa_memblock_unref(info->chunk.memblock);
823 continue;
826 info->userdata = pa_sink_input_ref(i);
828 pa_assert(info->chunk.memblock);
829 pa_assert(info->chunk.length > 0);
831 info++;
832 n++;
833 maxinfo--;
836 if (mixlength > 0)
837 *length = mixlength;
839 return n;
842 /* Called from IO thread context */
843 static void inputs_drop(pa_sink *s, pa_mix_info *info, unsigned n, pa_memchunk *result) {
844 pa_sink_input *i;
845 void *state;
846 unsigned p = 0;
847 unsigned n_unreffed = 0;
849 pa_sink_assert_ref(s);
850 pa_sink_assert_io_context(s);
851 pa_assert(result);
852 pa_assert(result->memblock);
853 pa_assert(result->length > 0);
855 /* We optimize for the case where the order of the inputs has not changed */
857 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
858 unsigned j;
859 pa_mix_info* m = NULL;
861 pa_sink_input_assert_ref(i);
863 /* Let's try to find the matching entry info the pa_mix_info array */
864 for (j = 0; j < n; j ++) {
866 if (info[p].userdata == i) {
867 m = info + p;
868 break;
871 p++;
872 if (p >= n)
873 p = 0;
876 /* Drop read data */
877 pa_sink_input_drop(i, result->length);
879 if (s->monitor_source && PA_SOURCE_IS_LINKED(s->monitor_source->thread_info.state)) {
881 if (pa_hashmap_size(i->thread_info.direct_outputs) > 0) {
882 void *ostate = NULL;
883 pa_source_output *o;
884 pa_memchunk c;
886 if (m && m->chunk.memblock) {
887 c = m->chunk;
888 pa_memblock_ref(c.memblock);
889 pa_assert(result->length <= c.length);
890 c.length = result->length;
892 pa_memchunk_make_writable(&c, 0);
893 pa_volume_memchunk(&c, &s->sample_spec, &m->volume);
894 } else {
895 c = s->silence;
896 pa_memblock_ref(c.memblock);
897 pa_assert(result->length <= c.length);
898 c.length = result->length;
901 while ((o = pa_hashmap_iterate(i->thread_info.direct_outputs, &ostate, NULL))) {
902 pa_source_output_assert_ref(o);
903 pa_assert(o->direct_on_input == i);
904 pa_source_post_direct(s->monitor_source, o, &c);
907 pa_memblock_unref(c.memblock);
911 if (m) {
912 if (m->chunk.memblock)
913 pa_memblock_unref(m->chunk.memblock);
914 pa_memchunk_reset(&m->chunk);
916 pa_sink_input_unref(m->userdata);
917 m->userdata = NULL;
919 n_unreffed += 1;
923 /* Now drop references to entries that are included in the
924 * pa_mix_info array but don't exist anymore */
926 if (n_unreffed < n) {
927 for (; n > 0; info++, n--) {
928 if (info->userdata)
929 pa_sink_input_unref(info->userdata);
930 if (info->chunk.memblock)
931 pa_memblock_unref(info->chunk.memblock);
935 if (s->monitor_source && PA_SOURCE_IS_LINKED(s->monitor_source->thread_info.state))
936 pa_source_post(s->monitor_source, result);
939 /* Called from IO thread context */
940 void pa_sink_render(pa_sink*s, size_t length, pa_memchunk *result) {
941 pa_mix_info info[MAX_MIX_CHANNELS];
942 unsigned n;
943 size_t block_size_max;
945 pa_sink_assert_ref(s);
946 pa_sink_assert_io_context(s);
947 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
948 pa_assert(pa_frame_aligned(length, &s->sample_spec));
949 pa_assert(result);
951 pa_assert(!s->thread_info.rewind_requested);
952 pa_assert(s->thread_info.rewind_nbytes == 0);
954 if (s->thread_info.state == PA_SINK_SUSPENDED) {
955 result->memblock = pa_memblock_ref(s->silence.memblock);
956 result->index = s->silence.index;
957 result->length = PA_MIN(s->silence.length, length);
958 return;
961 pa_sink_ref(s);
963 if (length <= 0)
964 length = pa_frame_align(MIX_BUFFER_LENGTH, &s->sample_spec);
966 block_size_max = pa_mempool_block_size_max(s->core->mempool);
967 if (length > block_size_max)
968 length = pa_frame_align(block_size_max, &s->sample_spec);
970 pa_assert(length > 0);
972 n = fill_mix_info(s, &length, info, MAX_MIX_CHANNELS);
974 if (n == 0) {
976 *result = s->silence;
977 pa_memblock_ref(result->memblock);
979 if (result->length > length)
980 result->length = length;
982 } else if (n == 1) {
983 pa_cvolume volume;
985 *result = info[0].chunk;
986 pa_memblock_ref(result->memblock);
988 if (result->length > length)
989 result->length = length;
991 pa_sw_cvolume_multiply(&volume, &s->thread_info.soft_volume, &info[0].volume);
993 if (s->thread_info.soft_muted || pa_cvolume_is_muted(&volume)) {
994 pa_memblock_unref(result->memblock);
995 pa_silence_memchunk_get(&s->core->silence_cache,
996 s->core->mempool,
997 result,
998 &s->sample_spec,
999 result->length);
1000 } else if (!pa_cvolume_is_norm(&volume)) {
1001 pa_memchunk_make_writable(result, 0);
1002 pa_volume_memchunk(result, &s->sample_spec, &volume);
1004 } else {
1005 void *ptr;
1006 result->memblock = pa_memblock_new(s->core->mempool, length);
1008 ptr = pa_memblock_acquire(result->memblock);
1009 result->length = pa_mix(info, n,
1010 ptr, length,
1011 &s->sample_spec,
1012 &s->thread_info.soft_volume,
1013 s->thread_info.soft_muted);
1014 pa_memblock_release(result->memblock);
1016 result->index = 0;
1019 inputs_drop(s, info, n, result);
1021 pa_sink_unref(s);
1024 /* Called from IO thread context */
1025 void pa_sink_render_into(pa_sink*s, pa_memchunk *target) {
1026 pa_mix_info info[MAX_MIX_CHANNELS];
1027 unsigned n;
1028 size_t length, block_size_max;
1030 pa_sink_assert_ref(s);
1031 pa_sink_assert_io_context(s);
1032 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1033 pa_assert(target);
1034 pa_assert(target->memblock);
1035 pa_assert(target->length > 0);
1036 pa_assert(pa_frame_aligned(target->length, &s->sample_spec));
1038 pa_assert(!s->thread_info.rewind_requested);
1039 pa_assert(s->thread_info.rewind_nbytes == 0);
1041 if (s->thread_info.state == PA_SINK_SUSPENDED) {
1042 pa_silence_memchunk(target, &s->sample_spec);
1043 return;
1046 pa_sink_ref(s);
1048 length = target->length;
1049 block_size_max = pa_mempool_block_size_max(s->core->mempool);
1050 if (length > block_size_max)
1051 length = pa_frame_align(block_size_max, &s->sample_spec);
1053 pa_assert(length > 0);
1055 n = fill_mix_info(s, &length, info, MAX_MIX_CHANNELS);
1057 if (n == 0) {
1058 if (target->length > length)
1059 target->length = length;
1061 pa_silence_memchunk(target, &s->sample_spec);
1062 } else if (n == 1) {
1063 pa_cvolume volume;
1065 if (target->length > length)
1066 target->length = length;
1068 pa_sw_cvolume_multiply(&volume, &s->thread_info.soft_volume, &info[0].volume);
1070 if (s->thread_info.soft_muted || pa_cvolume_is_muted(&volume))
1071 pa_silence_memchunk(target, &s->sample_spec);
1072 else {
1073 pa_memchunk vchunk;
1075 vchunk = info[0].chunk;
1076 pa_memblock_ref(vchunk.memblock);
1078 if (vchunk.length > length)
1079 vchunk.length = length;
1081 if (!pa_cvolume_is_norm(&volume)) {
1082 pa_memchunk_make_writable(&vchunk, 0);
1083 pa_volume_memchunk(&vchunk, &s->sample_spec, &volume);
1086 pa_memchunk_memcpy(target, &vchunk);
1087 pa_memblock_unref(vchunk.memblock);
1090 } else {
1091 void *ptr;
1093 ptr = pa_memblock_acquire(target->memblock);
1095 target->length = pa_mix(info, n,
1096 (uint8_t*) ptr + target->index, length,
1097 &s->sample_spec,
1098 &s->thread_info.soft_volume,
1099 s->thread_info.soft_muted);
1101 pa_memblock_release(target->memblock);
1104 inputs_drop(s, info, n, target);
1106 pa_sink_unref(s);
1109 /* Called from IO thread context */
1110 void pa_sink_render_into_full(pa_sink *s, pa_memchunk *target) {
1111 pa_memchunk chunk;
1112 size_t l, d;
1114 pa_sink_assert_ref(s);
1115 pa_sink_assert_io_context(s);
1116 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1117 pa_assert(target);
1118 pa_assert(target->memblock);
1119 pa_assert(target->length > 0);
1120 pa_assert(pa_frame_aligned(target->length, &s->sample_spec));
1122 pa_assert(!s->thread_info.rewind_requested);
1123 pa_assert(s->thread_info.rewind_nbytes == 0);
1125 if (s->thread_info.state == PA_SINK_SUSPENDED) {
1126 pa_silence_memchunk(target, &s->sample_spec);
1127 return;
1130 pa_sink_ref(s);
1132 l = target->length;
1133 d = 0;
1134 while (l > 0) {
1135 chunk = *target;
1136 chunk.index += d;
1137 chunk.length -= d;
1139 pa_sink_render_into(s, &chunk);
1141 d += chunk.length;
1142 l -= chunk.length;
1145 pa_sink_unref(s);
1148 /* Called from IO thread context */
1149 void pa_sink_render_full(pa_sink *s, size_t length, pa_memchunk *result) {
1150 pa_sink_assert_ref(s);
1151 pa_sink_assert_io_context(s);
1152 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1153 pa_assert(length > 0);
1154 pa_assert(pa_frame_aligned(length, &s->sample_spec));
1155 pa_assert(result);
1157 pa_assert(!s->thread_info.rewind_requested);
1158 pa_assert(s->thread_info.rewind_nbytes == 0);
1160 pa_sink_ref(s);
1162 pa_sink_render(s, length, result);
1164 if (result->length < length) {
1165 pa_memchunk chunk;
1167 pa_memchunk_make_writable(result, length);
1169 chunk.memblock = result->memblock;
1170 chunk.index = result->index + result->length;
1171 chunk.length = length - result->length;
1173 pa_sink_render_into_full(s, &chunk);
1175 result->length = length;
1178 pa_sink_unref(s);
1181 /* Called from main thread */
1182 pa_usec_t pa_sink_get_latency(pa_sink *s) {
1183 pa_usec_t usec = 0;
1185 pa_sink_assert_ref(s);
1186 pa_assert_ctl_context();
1187 pa_assert(PA_SINK_IS_LINKED(s->state));
1189 /* The returned value is supposed to be in the time domain of the sound card! */
1191 if (s->state == PA_SINK_SUSPENDED)
1192 return 0;
1194 if (!(s->flags & PA_SINK_LATENCY))
1195 return 0;
1197 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY, &usec, 0, NULL) == 0);
1199 return usec;
1202 /* Called from IO thread */
1203 pa_usec_t pa_sink_get_latency_within_thread(pa_sink *s) {
1204 pa_usec_t usec = 0;
1205 pa_msgobject *o;
1207 pa_sink_assert_ref(s);
1208 pa_sink_assert_io_context(s);
1209 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1211 /* The returned value is supposed to be in the time domain of the sound card! */
1213 if (s->thread_info.state == PA_SINK_SUSPENDED)
1214 return 0;
1216 if (!(s->flags & PA_SINK_LATENCY))
1217 return 0;
1219 o = PA_MSGOBJECT(s);
1221 /* FIXME: We probably should make this a proper vtable callback instead of going through process_msg() */
1223 if (o->process_msg(o, PA_SINK_MESSAGE_GET_LATENCY, &usec, 0, NULL) < 0)
1224 return -1;
1226 return usec;
1229 /* Called from the main thread (and also from the IO thread while the main
1230 * thread is waiting).
1232 * When a sink uses volume sharing, it never has the PA_SINK_FLAT_VOLUME flag
1233 * set. Instead, flat volume mode is detected by checking whether the root sink
1234 * has the flag set. */
1235 pa_bool_t pa_sink_flat_volume_enabled(pa_sink *s) {
1236 pa_sink_assert_ref(s);
1238 while (s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)
1239 s = s->input_to_master->sink;
1241 return (s->flags & PA_SINK_FLAT_VOLUME);
1244 /* Called from main context */
1245 pa_bool_t pa_sink_is_passthrough(pa_sink *s) {
1246 pa_sink_input *alt_i;
1247 uint32_t idx;
1249 pa_sink_assert_ref(s);
1251 /* one and only one PASSTHROUGH input can possibly be connected */
1252 if (pa_idxset_size(s->inputs) == 1) {
1253 alt_i = pa_idxset_first(s->inputs, &idx);
1255 if (pa_sink_input_is_passthrough(alt_i))
1256 return TRUE;
1259 return FALSE;
1262 /* Called from main context. */
1263 static void compute_reference_ratio(pa_sink_input *i) {
1264 unsigned c = 0;
1265 pa_cvolume remapped;
1267 pa_assert(i);
1268 pa_assert(pa_sink_flat_volume_enabled(i->sink));
1271 * Calculates the reference ratio from the sink's reference
1272 * volume. This basically calculates:
1274 * i->reference_ratio = i->volume / i->sink->reference_volume
1277 remapped = i->sink->reference_volume;
1278 pa_cvolume_remap(&remapped, &i->sink->channel_map, &i->channel_map);
1280 i->reference_ratio.channels = i->sample_spec.channels;
1282 for (c = 0; c < i->sample_spec.channels; c++) {
1284 /* We don't update when the sink volume is 0 anyway */
1285 if (remapped.values[c] <= PA_VOLUME_MUTED)
1286 continue;
1288 /* Don't update the reference ratio unless necessary */
1289 if (pa_sw_volume_multiply(
1290 i->reference_ratio.values[c],
1291 remapped.values[c]) == i->volume.values[c])
1292 continue;
1294 i->reference_ratio.values[c] = pa_sw_volume_divide(
1295 i->volume.values[c],
1296 remapped.values[c]);
1300 /* Called from main context. Only called for the root sink in volume sharing
1301 * cases, except for internal recursive calls. */
1302 static void compute_reference_ratios(pa_sink *s) {
1303 uint32_t idx;
1304 pa_sink_input *i;
1306 pa_sink_assert_ref(s);
1307 pa_assert_ctl_context();
1308 pa_assert(PA_SINK_IS_LINKED(s->state));
1309 pa_assert(pa_sink_flat_volume_enabled(s));
1311 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1312 compute_reference_ratio(i);
1314 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1315 compute_reference_ratios(i->origin_sink);
1319 /* Called from main context. Only called for the root sink in volume sharing
1320 * cases, except for internal recursive calls. */
1321 static void compute_real_ratios(pa_sink *s) {
1322 pa_sink_input *i;
1323 uint32_t idx;
1325 pa_sink_assert_ref(s);
1326 pa_assert_ctl_context();
1327 pa_assert(PA_SINK_IS_LINKED(s->state));
1328 pa_assert(pa_sink_flat_volume_enabled(s));
1330 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1331 unsigned c;
1332 pa_cvolume remapped;
1334 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1335 /* The origin sink uses volume sharing, so this input's real ratio
1336 * is handled as a special case - the real ratio must be 0 dB, and
1337 * as a result i->soft_volume must equal i->volume_factor. */
1338 pa_cvolume_reset(&i->real_ratio, i->real_ratio.channels);
1339 i->soft_volume = i->volume_factor;
1341 compute_real_ratios(i->origin_sink);
1343 continue;
1347 * This basically calculates:
1349 * i->real_ratio := i->volume / s->real_volume
1350 * i->soft_volume := i->real_ratio * i->volume_factor
1353 remapped = s->real_volume;
1354 pa_cvolume_remap(&remapped, &s->channel_map, &i->channel_map);
1356 i->real_ratio.channels = i->sample_spec.channels;
1357 i->soft_volume.channels = i->sample_spec.channels;
1359 for (c = 0; c < i->sample_spec.channels; c++) {
1361 if (remapped.values[c] <= PA_VOLUME_MUTED) {
1362 /* We leave i->real_ratio untouched */
1363 i->soft_volume.values[c] = PA_VOLUME_MUTED;
1364 continue;
1367 /* Don't lose accuracy unless necessary */
1368 if (pa_sw_volume_multiply(
1369 i->real_ratio.values[c],
1370 remapped.values[c]) != i->volume.values[c])
1372 i->real_ratio.values[c] = pa_sw_volume_divide(
1373 i->volume.values[c],
1374 remapped.values[c]);
1376 i->soft_volume.values[c] = pa_sw_volume_multiply(
1377 i->real_ratio.values[c],
1378 i->volume_factor.values[c]);
1381 /* We don't copy the soft_volume to the thread_info data
1382 * here. That must be done by the caller */
1386 static pa_cvolume *cvolume_remap_minimal_impact(
1387 pa_cvolume *v,
1388 const pa_cvolume *template,
1389 const pa_channel_map *from,
1390 const pa_channel_map *to) {
1392 pa_cvolume t;
1394 pa_assert(v);
1395 pa_assert(template);
1396 pa_assert(from);
1397 pa_assert(to);
1398 pa_assert(pa_cvolume_compatible_with_channel_map(v, from));
1399 pa_assert(pa_cvolume_compatible_with_channel_map(template, to));
1401 /* Much like pa_cvolume_remap(), but tries to minimize impact when
1402 * mapping from sink input to sink volumes:
1404 * If template is a possible remapping from v it is used instead
1405 * of remapping anew.
1407 * If the channel maps don't match we set an all-channel volume on
1408 * the sink to ensure that changing a volume on one stream has no
1409 * effect that cannot be compensated for in another stream that
1410 * does not have the same channel map as the sink. */
1412 if (pa_channel_map_equal(from, to))
1413 return v;
1415 t = *template;
1416 if (pa_cvolume_equal(pa_cvolume_remap(&t, to, from), v)) {
1417 *v = *template;
1418 return v;
1421 pa_cvolume_set(v, to->channels, pa_cvolume_max(v));
1422 return v;
1425 /* Called from main thread. Only called for the root sink in volume sharing
1426 * cases, except for internal recursive calls. */
1427 static void get_maximum_input_volume(pa_sink *s, pa_cvolume *max_volume, const pa_channel_map *channel_map) {
1428 pa_sink_input *i;
1429 uint32_t idx;
1431 pa_sink_assert_ref(s);
1432 pa_assert(max_volume);
1433 pa_assert(channel_map);
1434 pa_assert(pa_sink_flat_volume_enabled(s));
1436 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1437 pa_cvolume remapped;
1439 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1440 get_maximum_input_volume(i->origin_sink, max_volume, channel_map);
1442 /* Ignore this input. The origin sink uses volume sharing, so this
1443 * input's volume will be set to be equal to the root sink's real
1444 * volume. Obviously this input's current volume must not then
1445 * affect what the root sink's real volume will be. */
1446 continue;
1449 remapped = i->volume;
1450 cvolume_remap_minimal_impact(&remapped, max_volume, &i->channel_map, channel_map);
1451 pa_cvolume_merge(max_volume, max_volume, &remapped);
1455 /* Called from main thread. Only called for the root sink in volume sharing
1456 * cases, except for internal recursive calls. */
1457 static pa_bool_t has_inputs(pa_sink *s) {
1458 pa_sink_input *i;
1459 uint32_t idx;
1461 pa_sink_assert_ref(s);
1463 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1464 if (!i->origin_sink || !(i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER) || has_inputs(i->origin_sink))
1465 return TRUE;
1468 return FALSE;
1471 /* Called from main thread. Only called for the root sink in volume sharing
1472 * cases, except for internal recursive calls. */
1473 static void update_real_volume(pa_sink *s, const pa_cvolume *new_volume, pa_channel_map *channel_map) {
1474 pa_sink_input *i;
1475 uint32_t idx;
1477 pa_sink_assert_ref(s);
1478 pa_assert(new_volume);
1479 pa_assert(channel_map);
1481 s->real_volume = *new_volume;
1482 pa_cvolume_remap(&s->real_volume, channel_map, &s->channel_map);
1484 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1485 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1486 if (pa_sink_flat_volume_enabled(s)) {
1487 pa_cvolume old_volume = i->volume;
1489 /* Follow the root sink's real volume. */
1490 i->volume = *new_volume;
1491 pa_cvolume_remap(&i->volume, channel_map, &i->channel_map);
1492 compute_reference_ratio(i);
1494 /* The volume changed, let's tell people so */
1495 if (!pa_cvolume_equal(&old_volume, &i->volume)) {
1496 if (i->volume_changed)
1497 i->volume_changed(i);
1499 pa_subscription_post(i->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
1503 update_real_volume(i->origin_sink, new_volume, channel_map);
1508 /* Called from main thread. Only called for the root sink in shared volume
1509 * cases. */
1510 static void compute_real_volume(pa_sink *s) {
1511 pa_sink_assert_ref(s);
1512 pa_assert_ctl_context();
1513 pa_assert(PA_SINK_IS_LINKED(s->state));
1514 pa_assert(pa_sink_flat_volume_enabled(s));
1515 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
1517 /* This determines the maximum volume of all streams and sets
1518 * s->real_volume accordingly. */
1520 if (!has_inputs(s)) {
1521 /* In the special case that we have no sink inputs we leave the
1522 * volume unmodified. */
1523 update_real_volume(s, &s->reference_volume, &s->channel_map);
1524 return;
1527 pa_cvolume_mute(&s->real_volume, s->channel_map.channels);
1529 /* First let's determine the new maximum volume of all inputs
1530 * connected to this sink */
1531 get_maximum_input_volume(s, &s->real_volume, &s->channel_map);
1532 update_real_volume(s, &s->real_volume, &s->channel_map);
1534 /* Then, let's update the real ratios/soft volumes of all inputs
1535 * connected to this sink */
1536 compute_real_ratios(s);
1539 /* Called from main thread. Only called for the root sink in shared volume
1540 * cases, except for internal recursive calls. */
1541 static void propagate_reference_volume(pa_sink *s) {
1542 pa_sink_input *i;
1543 uint32_t idx;
1545 pa_sink_assert_ref(s);
1546 pa_assert_ctl_context();
1547 pa_assert(PA_SINK_IS_LINKED(s->state));
1548 pa_assert(pa_sink_flat_volume_enabled(s));
1550 /* This is called whenever the sink volume changes that is not
1551 * caused by a sink input volume change. We need to fix up the
1552 * sink input volumes accordingly */
1554 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1555 pa_cvolume old_volume;
1557 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1558 propagate_reference_volume(i->origin_sink);
1560 /* Since the origin sink uses volume sharing, this input's volume
1561 * needs to be updated to match the root sink's real volume, but
1562 * that will be done later in update_shared_real_volume(). */
1563 continue;
1566 old_volume = i->volume;
1568 /* This basically calculates:
1570 * i->volume := s->reference_volume * i->reference_ratio */
1572 i->volume = s->reference_volume;
1573 pa_cvolume_remap(&i->volume, &s->channel_map, &i->channel_map);
1574 pa_sw_cvolume_multiply(&i->volume, &i->volume, &i->reference_ratio);
1576 /* The volume changed, let's tell people so */
1577 if (!pa_cvolume_equal(&old_volume, &i->volume)) {
1579 if (i->volume_changed)
1580 i->volume_changed(i);
1582 pa_subscription_post(i->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
1587 /* Called from main thread. Only called for the root sink in volume sharing
1588 * cases, except for internal recursive calls. The return value indicates
1589 * whether any reference volume actually changed. */
1590 static pa_bool_t update_reference_volume(pa_sink *s, const pa_cvolume *v, const pa_channel_map *channel_map, pa_bool_t save) {
1591 pa_cvolume volume;
1592 pa_bool_t reference_volume_changed;
1593 pa_sink_input *i;
1594 uint32_t idx;
1596 pa_sink_assert_ref(s);
1597 pa_assert(PA_SINK_IS_LINKED(s->state));
1598 pa_assert(v);
1599 pa_assert(channel_map);
1600 pa_assert(pa_cvolume_valid(v));
1602 volume = *v;
1603 pa_cvolume_remap(&volume, channel_map, &s->channel_map);
1605 reference_volume_changed = !pa_cvolume_equal(&volume, &s->reference_volume);
1606 s->reference_volume = volume;
1608 s->save_volume = (!reference_volume_changed && s->save_volume) || save;
1610 if (reference_volume_changed)
1611 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
1612 else if (!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1613 /* If the root sink's volume doesn't change, then there can't be any
1614 * changes in the other sinks in the sink tree either.
1616 * It's probably theoretically possible that even if the root sink's
1617 * volume changes slightly, some filter sink doesn't change its volume
1618 * due to rounding errors. If that happens, we still want to propagate
1619 * the changed root sink volume to the sinks connected to the
1620 * intermediate sink that didn't change its volume. This theoretical
1621 * possiblity is the reason why we have that !(s->flags &
1622 * PA_SINK_SHARE_VOLUME_WITH_MASTER) condition. Probably nobody would
1623 * notice even if we returned here FALSE always if
1624 * reference_volume_changed is FALSE. */
1625 return FALSE;
1627 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1628 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1629 update_reference_volume(i->origin_sink, v, channel_map, FALSE);
1632 return TRUE;
1635 /* Called from main thread */
1636 void pa_sink_set_volume(
1637 pa_sink *s,
1638 const pa_cvolume *volume,
1639 pa_bool_t send_msg,
1640 pa_bool_t save) {
1642 pa_cvolume new_reference_volume;
1643 pa_sink *root_sink = s;
1645 pa_sink_assert_ref(s);
1646 pa_assert_ctl_context();
1647 pa_assert(PA_SINK_IS_LINKED(s->state));
1648 pa_assert(!volume || pa_cvolume_valid(volume));
1649 pa_assert(volume || pa_sink_flat_volume_enabled(s));
1650 pa_assert(!volume || volume->channels == 1 || pa_cvolume_compatible(volume, &s->sample_spec));
1652 /* make sure we don't change the volume when a PASSTHROUGH input is connected */
1653 if (pa_sink_is_passthrough(s)) {
1654 /* FIXME: Need to notify client that volume control is disabled */
1655 pa_log_warn("Cannot change volume, Sink is connected to PASSTHROUGH input");
1656 return;
1659 /* In case of volume sharing, the volume is set for the root sink first,
1660 * from which it's then propagated to the sharing sinks. */
1661 while (root_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)
1662 root_sink = root_sink->input_to_master->sink;
1664 /* As a special exception we accept mono volumes on all sinks --
1665 * even on those with more complex channel maps */
1667 if (volume) {
1668 if (pa_cvolume_compatible(volume, &s->sample_spec))
1669 new_reference_volume = *volume;
1670 else {
1671 new_reference_volume = s->reference_volume;
1672 pa_cvolume_scale(&new_reference_volume, pa_cvolume_max(volume));
1675 pa_cvolume_remap(&new_reference_volume, &s->channel_map, &root_sink->channel_map);
1678 /* If volume is NULL we synchronize the sink's real and reference
1679 * volumes with the stream volumes. If it is not NULL we update
1680 * the reference_volume with it. */
1682 if (volume) {
1683 if (update_reference_volume(root_sink, &new_reference_volume, &root_sink->channel_map, save)) {
1684 if (pa_sink_flat_volume_enabled(root_sink)) {
1685 /* OK, propagate this volume change back to the inputs */
1686 propagate_reference_volume(root_sink);
1688 /* And now recalculate the real volume */
1689 compute_real_volume(root_sink);
1690 } else
1691 update_real_volume(root_sink, &root_sink->reference_volume, &root_sink->channel_map);
1694 } else {
1695 pa_assert(pa_sink_flat_volume_enabled(root_sink));
1697 /* Ok, let's determine the new real volume */
1698 compute_real_volume(root_sink);
1700 /* Let's 'push' the reference volume if necessary */
1701 pa_cvolume_merge(&new_reference_volume, &s->reference_volume, &root_sink->real_volume);
1702 update_reference_volume(root_sink, &new_reference_volume, &root_sink->channel_map, save);
1704 /* Now that the reference volume is updated, we can update the streams'
1705 * reference ratios. */
1706 compute_reference_ratios(root_sink);
1709 if (root_sink->set_volume) {
1710 /* If we have a function set_volume(), then we do not apply a
1711 * soft volume by default. However, set_volume() is free to
1712 * apply one to root_sink->soft_volume */
1714 pa_cvolume_reset(&root_sink->soft_volume, root_sink->sample_spec.channels);
1715 if (!(root_sink->flags & PA_SINK_SYNC_VOLUME))
1716 root_sink->set_volume(root_sink);
1718 } else
1719 /* If we have no function set_volume(), then the soft volume
1720 * becomes the real volume */
1721 root_sink->soft_volume = root_sink->real_volume;
1723 /* This tells the sink that soft volume and/or real volume changed */
1724 if (send_msg)
1725 pa_assert_se(pa_asyncmsgq_send(root_sink->asyncmsgq, PA_MSGOBJECT(root_sink), PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL) == 0);
1728 /* Called from the io thread if sync volume is used, otherwise from the main thread.
1729 * Only to be called by sink implementor */
1730 void pa_sink_set_soft_volume(pa_sink *s, const pa_cvolume *volume) {
1732 pa_sink_assert_ref(s);
1733 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
1735 if (s->flags & PA_SINK_SYNC_VOLUME)
1736 pa_sink_assert_io_context(s);
1737 else
1738 pa_assert_ctl_context();
1740 if (!volume)
1741 pa_cvolume_reset(&s->soft_volume, s->sample_spec.channels);
1742 else
1743 s->soft_volume = *volume;
1745 if (PA_SINK_IS_LINKED(s->state) && !(s->flags & PA_SINK_SYNC_VOLUME))
1746 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_VOLUME, NULL, 0, NULL) == 0);
1747 else
1748 s->thread_info.soft_volume = s->soft_volume;
1751 /* Called from the main thread. Only called for the root sink in volume sharing
1752 * cases, except for internal recursive calls. */
1753 static void propagate_real_volume(pa_sink *s, const pa_cvolume *old_real_volume) {
1754 pa_sink_input *i;
1755 uint32_t idx;
1757 pa_sink_assert_ref(s);
1758 pa_assert(old_real_volume);
1759 pa_assert_ctl_context();
1760 pa_assert(PA_SINK_IS_LINKED(s->state));
1762 /* This is called when the hardware's real volume changes due to
1763 * some external event. We copy the real volume into our
1764 * reference volume and then rebuild the stream volumes based on
1765 * i->real_ratio which should stay fixed. */
1767 if (!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1768 if (pa_cvolume_equal(old_real_volume, &s->real_volume))
1769 return;
1771 /* 1. Make the real volume the reference volume */
1772 update_reference_volume(s, &s->real_volume, &s->channel_map, TRUE);
1775 if (pa_sink_flat_volume_enabled(s)) {
1777 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1778 pa_cvolume old_volume = i->volume;
1780 /* 2. Since the sink's reference and real volumes are equal
1781 * now our ratios should be too. */
1782 i->reference_ratio = i->real_ratio;
1784 /* 3. Recalculate the new stream reference volume based on the
1785 * reference ratio and the sink's reference volume.
1787 * This basically calculates:
1789 * i->volume = s->reference_volume * i->reference_ratio
1791 * This is identical to propagate_reference_volume() */
1792 i->volume = s->reference_volume;
1793 pa_cvolume_remap(&i->volume, &s->channel_map, &i->channel_map);
1794 pa_sw_cvolume_multiply(&i->volume, &i->volume, &i->reference_ratio);
1796 /* Notify if something changed */
1797 if (!pa_cvolume_equal(&old_volume, &i->volume)) {
1799 if (i->volume_changed)
1800 i->volume_changed(i);
1802 pa_subscription_post(i->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
1805 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1806 propagate_real_volume(i->origin_sink, old_real_volume);
1810 /* Something got changed in the hardware. It probably makes sense
1811 * to save changed hw settings given that hw volume changes not
1812 * triggered by PA are almost certainly done by the user. */
1813 if (!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1814 s->save_volume = TRUE;
1817 /* Called from io thread */
1818 void pa_sink_update_volume_and_mute(pa_sink *s) {
1819 pa_assert(s);
1820 pa_sink_assert_io_context(s);
1822 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_UPDATE_VOLUME_AND_MUTE, NULL, 0, NULL, NULL);
1825 /* Called from main thread */
1826 const pa_cvolume *pa_sink_get_volume(pa_sink *s, pa_bool_t force_refresh) {
1827 pa_sink_assert_ref(s);
1828 pa_assert_ctl_context();
1829 pa_assert(PA_SINK_IS_LINKED(s->state));
1831 if (s->refresh_volume || force_refresh) {
1832 struct pa_cvolume old_real_volume;
1834 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
1836 old_real_volume = s->real_volume;
1838 if (!(s->flags & PA_SINK_SYNC_VOLUME) && s->get_volume)
1839 s->get_volume(s);
1841 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_VOLUME, NULL, 0, NULL) == 0);
1843 update_real_volume(s, &s->real_volume, &s->channel_map);
1844 propagate_real_volume(s, &old_real_volume);
1847 return &s->reference_volume;
1850 /* Called from main thread. In volume sharing cases, only the root sink may
1851 * call this. */
1852 void pa_sink_volume_changed(pa_sink *s, const pa_cvolume *new_real_volume) {
1853 pa_cvolume old_real_volume;
1855 pa_sink_assert_ref(s);
1856 pa_assert_ctl_context();
1857 pa_assert(PA_SINK_IS_LINKED(s->state));
1858 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
1860 /* The sink implementor may call this if the volume changed to make sure everyone is notified */
1862 old_real_volume = s->real_volume;
1863 update_real_volume(s, new_real_volume, &s->channel_map);
1864 propagate_real_volume(s, &old_real_volume);
1867 /* Called from main thread */
1868 void pa_sink_set_mute(pa_sink *s, pa_bool_t mute, pa_bool_t save) {
1869 pa_bool_t old_muted;
1871 pa_sink_assert_ref(s);
1872 pa_assert_ctl_context();
1873 pa_assert(PA_SINK_IS_LINKED(s->state));
1875 old_muted = s->muted;
1876 s->muted = mute;
1877 s->save_muted = (old_muted == s->muted && s->save_muted) || save;
1879 if (!(s->flags & PA_SINK_SYNC_VOLUME) && s->set_mute)
1880 s->set_mute(s);
1882 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MUTE, NULL, 0, NULL) == 0);
1884 if (old_muted != s->muted)
1885 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
1888 /* Called from main thread */
1889 pa_bool_t pa_sink_get_mute(pa_sink *s, pa_bool_t force_refresh) {
1891 pa_sink_assert_ref(s);
1892 pa_assert_ctl_context();
1893 pa_assert(PA_SINK_IS_LINKED(s->state));
1895 if (s->refresh_muted || force_refresh) {
1896 pa_bool_t old_muted = s->muted;
1898 if (!(s->flags & PA_SINK_SYNC_VOLUME) && s->get_mute)
1899 s->get_mute(s);
1901 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MUTE, NULL, 0, NULL) == 0);
1903 if (old_muted != s->muted) {
1904 s->save_muted = TRUE;
1906 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
1908 /* Make sure the soft mute status stays in sync */
1909 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MUTE, NULL, 0, NULL) == 0);
1913 return s->muted;
1916 /* Called from main thread */
1917 void pa_sink_mute_changed(pa_sink *s, pa_bool_t new_muted) {
1918 pa_sink_assert_ref(s);
1919 pa_assert_ctl_context();
1920 pa_assert(PA_SINK_IS_LINKED(s->state));
1922 /* The sink implementor may call this if the volume changed to make sure everyone is notified */
1924 if (s->muted == new_muted)
1925 return;
1927 s->muted = new_muted;
1928 s->save_muted = TRUE;
1930 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
1933 /* Called from main thread */
1934 pa_bool_t pa_sink_update_proplist(pa_sink *s, pa_update_mode_t mode, pa_proplist *p) {
1935 pa_sink_assert_ref(s);
1936 pa_assert_ctl_context();
1938 if (p)
1939 pa_proplist_update(s->proplist, mode, p);
1941 if (PA_SINK_IS_LINKED(s->state)) {
1942 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PROPLIST_CHANGED], s);
1943 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
1946 return TRUE;
1949 /* Called from main thread */
1950 /* FIXME -- this should be dropped and be merged into pa_sink_update_proplist() */
1951 void pa_sink_set_description(pa_sink *s, const char *description) {
1952 const char *old;
1953 pa_sink_assert_ref(s);
1954 pa_assert_ctl_context();
1956 if (!description && !pa_proplist_contains(s->proplist, PA_PROP_DEVICE_DESCRIPTION))
1957 return;
1959 old = pa_proplist_gets(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
1961 if (old && description && pa_streq(old, description))
1962 return;
1964 if (description)
1965 pa_proplist_sets(s->proplist, PA_PROP_DEVICE_DESCRIPTION, description);
1966 else
1967 pa_proplist_unset(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
1969 if (s->monitor_source) {
1970 char *n;
1972 n = pa_sprintf_malloc("Monitor Source of %s", description ? description : s->name);
1973 pa_source_set_description(s->monitor_source, n);
1974 pa_xfree(n);
1977 if (PA_SINK_IS_LINKED(s->state)) {
1978 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
1979 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PROPLIST_CHANGED], s);
1983 /* Called from main thread */
1984 unsigned pa_sink_linked_by(pa_sink *s) {
1985 unsigned ret;
1987 pa_sink_assert_ref(s);
1988 pa_assert_ctl_context();
1989 pa_assert(PA_SINK_IS_LINKED(s->state));
1991 ret = pa_idxset_size(s->inputs);
1993 /* We add in the number of streams connected to us here. Please
1994 * note the asymmmetry to pa_sink_used_by()! */
1996 if (s->monitor_source)
1997 ret += pa_source_linked_by(s->monitor_source);
1999 return ret;
2002 /* Called from main thread */
2003 unsigned pa_sink_used_by(pa_sink *s) {
2004 unsigned ret;
2006 pa_sink_assert_ref(s);
2007 pa_assert_ctl_context();
2008 pa_assert(PA_SINK_IS_LINKED(s->state));
2010 ret = pa_idxset_size(s->inputs);
2011 pa_assert(ret >= s->n_corked);
2013 /* Streams connected to our monitor source do not matter for
2014 * pa_sink_used_by()!.*/
2016 return ret - s->n_corked;
2019 /* Called from main thread */
2020 unsigned pa_sink_check_suspend(pa_sink *s) {
2021 unsigned ret;
2022 pa_sink_input *i;
2023 uint32_t idx;
2025 pa_sink_assert_ref(s);
2026 pa_assert_ctl_context();
2028 if (!PA_SINK_IS_LINKED(s->state))
2029 return 0;
2031 ret = 0;
2033 PA_IDXSET_FOREACH(i, s->inputs, idx) {
2034 pa_sink_input_state_t st;
2036 st = pa_sink_input_get_state(i);
2038 /* We do not assert here. It is perfectly valid for a sink input to
2039 * be in the INIT state (i.e. created, marked done but not yet put)
2040 * and we should not care if it's unlinked as it won't contribute
2041 * towarards our busy status.
2043 if (!PA_SINK_INPUT_IS_LINKED(st))
2044 continue;
2046 if (st == PA_SINK_INPUT_CORKED)
2047 continue;
2049 if (i->flags & PA_SINK_INPUT_DONT_INHIBIT_AUTO_SUSPEND)
2050 continue;
2052 ret ++;
2055 if (s->monitor_source)
2056 ret += pa_source_check_suspend(s->monitor_source);
2058 return ret;
2061 /* Called from the IO thread */
2062 static void sync_input_volumes_within_thread(pa_sink *s) {
2063 pa_sink_input *i;
2064 void *state = NULL;
2066 pa_sink_assert_ref(s);
2067 pa_sink_assert_io_context(s);
2069 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
2070 if (pa_cvolume_equal(&i->thread_info.soft_volume, &i->soft_volume))
2071 continue;
2073 i->thread_info.soft_volume = i->soft_volume;
2074 pa_sink_input_request_rewind(i, 0, TRUE, FALSE, FALSE);
2078 /* Called from the IO thread. Only called for the root sink in volume sharing
2079 * cases, except for internal recursive calls. */
2080 static void set_shared_volume_within_thread(pa_sink *s) {
2081 pa_sink_input *i = NULL;
2082 void *state = NULL;
2084 pa_sink_assert_ref(s);
2086 PA_MSGOBJECT(s)->process_msg(PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_VOLUME_SYNCED, NULL, 0, NULL);
2088 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
2089 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
2090 set_shared_volume_within_thread(i->origin_sink);
2094 /* Called from IO thread, except when it is not */
2095 int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
2096 pa_sink *s = PA_SINK(o);
2097 pa_sink_assert_ref(s);
2099 switch ((pa_sink_message_t) code) {
2101 case PA_SINK_MESSAGE_ADD_INPUT: {
2102 pa_sink_input *i = PA_SINK_INPUT(userdata);
2104 /* If you change anything here, make sure to change the
2105 * sink input handling a few lines down at
2106 * PA_SINK_MESSAGE_FINISH_MOVE, too. */
2108 pa_hashmap_put(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index), pa_sink_input_ref(i));
2110 /* Since the caller sleeps in pa_sink_input_put(), we can
2111 * safely access data outside of thread_info even though
2112 * it is mutable */
2114 if ((i->thread_info.sync_prev = i->sync_prev)) {
2115 pa_assert(i->sink == i->thread_info.sync_prev->sink);
2116 pa_assert(i->sync_prev->sync_next == i);
2117 i->thread_info.sync_prev->thread_info.sync_next = i;
2120 if ((i->thread_info.sync_next = i->sync_next)) {
2121 pa_assert(i->sink == i->thread_info.sync_next->sink);
2122 pa_assert(i->sync_next->sync_prev == i);
2123 i->thread_info.sync_next->thread_info.sync_prev = i;
2126 pa_assert(!i->thread_info.attached);
2127 i->thread_info.attached = TRUE;
2129 if (i->attach)
2130 i->attach(i);
2132 pa_sink_input_set_state_within_thread(i, i->state);
2134 /* The requested latency of the sink input needs to be
2135 * fixed up and then configured on the sink */
2137 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1)
2138 pa_sink_input_set_requested_latency_within_thread(i, i->thread_info.requested_sink_latency);
2140 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
2141 pa_sink_input_update_max_request(i, s->thread_info.max_request);
2143 /* We don't rewind here automatically. This is left to the
2144 * sink input implementor because some sink inputs need a
2145 * slow start, i.e. need some time to buffer client
2146 * samples before beginning streaming. */
2148 /* In flat volume mode we need to update the volume as
2149 * well */
2150 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2153 case PA_SINK_MESSAGE_REMOVE_INPUT: {
2154 pa_sink_input *i = PA_SINK_INPUT(userdata);
2156 /* If you change anything here, make sure to change the
2157 * sink input handling a few lines down at
2158 * PA_SINK_MESSAGE_START_MOVE, too. */
2160 if (i->detach)
2161 i->detach(i);
2163 pa_sink_input_set_state_within_thread(i, i->state);
2165 pa_assert(i->thread_info.attached);
2166 i->thread_info.attached = FALSE;
2168 /* Since the caller sleeps in pa_sink_input_unlink(),
2169 * we can safely access data outside of thread_info even
2170 * though it is mutable */
2172 pa_assert(!i->sync_prev);
2173 pa_assert(!i->sync_next);
2175 if (i->thread_info.sync_prev) {
2176 i->thread_info.sync_prev->thread_info.sync_next = i->thread_info.sync_prev->sync_next;
2177 i->thread_info.sync_prev = NULL;
2180 if (i->thread_info.sync_next) {
2181 i->thread_info.sync_next->thread_info.sync_prev = i->thread_info.sync_next->sync_prev;
2182 i->thread_info.sync_next = NULL;
2185 if (pa_hashmap_remove(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index)))
2186 pa_sink_input_unref(i);
2188 pa_sink_invalidate_requested_latency(s, TRUE);
2189 pa_sink_request_rewind(s, (size_t) -1);
2191 /* In flat volume mode we need to update the volume as
2192 * well */
2193 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2196 case PA_SINK_MESSAGE_START_MOVE: {
2197 pa_sink_input *i = PA_SINK_INPUT(userdata);
2199 /* We don't support moving synchronized streams. */
2200 pa_assert(!i->sync_prev);
2201 pa_assert(!i->sync_next);
2202 pa_assert(!i->thread_info.sync_next);
2203 pa_assert(!i->thread_info.sync_prev);
2205 if (i->thread_info.state != PA_SINK_INPUT_CORKED) {
2206 pa_usec_t usec = 0;
2207 size_t sink_nbytes, total_nbytes;
2209 /* Get the latency of the sink */
2210 usec = pa_sink_get_latency_within_thread(s);
2211 sink_nbytes = pa_usec_to_bytes(usec, &s->sample_spec);
2212 total_nbytes = sink_nbytes + pa_memblockq_get_length(i->thread_info.render_memblockq);
2214 if (total_nbytes > 0) {
2215 i->thread_info.rewrite_nbytes = i->thread_info.resampler ? pa_resampler_request(i->thread_info.resampler, total_nbytes) : total_nbytes;
2216 i->thread_info.rewrite_flush = TRUE;
2217 pa_sink_input_process_rewind(i, sink_nbytes);
2221 if (i->detach)
2222 i->detach(i);
2224 pa_assert(i->thread_info.attached);
2225 i->thread_info.attached = FALSE;
2227 /* Let's remove the sink input ...*/
2228 if (pa_hashmap_remove(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index)))
2229 pa_sink_input_unref(i);
2231 pa_sink_invalidate_requested_latency(s, TRUE);
2233 pa_log_debug("Requesting rewind due to started move");
2234 pa_sink_request_rewind(s, (size_t) -1);
2236 /* In flat volume mode we need to update the volume as
2237 * well */
2238 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2241 case PA_SINK_MESSAGE_FINISH_MOVE: {
2242 pa_sink_input *i = PA_SINK_INPUT(userdata);
2244 /* We don't support moving synchronized streams. */
2245 pa_assert(!i->sync_prev);
2246 pa_assert(!i->sync_next);
2247 pa_assert(!i->thread_info.sync_next);
2248 pa_assert(!i->thread_info.sync_prev);
2250 pa_hashmap_put(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index), pa_sink_input_ref(i));
2252 pa_assert(!i->thread_info.attached);
2253 i->thread_info.attached = TRUE;
2255 if (i->attach)
2256 i->attach(i);
2258 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1)
2259 pa_sink_input_set_requested_latency_within_thread(i, i->thread_info.requested_sink_latency);
2261 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
2262 pa_sink_input_update_max_request(i, s->thread_info.max_request);
2264 if (i->thread_info.state != PA_SINK_INPUT_CORKED) {
2265 pa_usec_t usec = 0;
2266 size_t nbytes;
2268 /* Get the latency of the sink */
2269 usec = pa_sink_get_latency_within_thread(s);
2270 nbytes = pa_usec_to_bytes(usec, &s->sample_spec);
2272 if (nbytes > 0)
2273 pa_sink_input_drop(i, nbytes);
2275 pa_log_debug("Requesting rewind due to finished move");
2276 pa_sink_request_rewind(s, nbytes);
2279 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2282 case PA_SINK_MESSAGE_SET_SHARED_VOLUME: {
2283 pa_sink *root_sink = s;
2285 while (root_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)
2286 root_sink = root_sink->input_to_master->sink;
2288 set_shared_volume_within_thread(root_sink);
2289 return 0;
2292 case PA_SINK_MESSAGE_SET_VOLUME_SYNCED:
2294 if (s->flags & PA_SINK_SYNC_VOLUME) {
2295 s->set_volume(s);
2296 pa_sink_volume_change_push(s);
2298 /* Fall through ... */
2300 case PA_SINK_MESSAGE_SET_VOLUME:
2302 if (!pa_cvolume_equal(&s->thread_info.soft_volume, &s->soft_volume)) {
2303 s->thread_info.soft_volume = s->soft_volume;
2304 pa_sink_request_rewind(s, (size_t) -1);
2307 /* Fall through ... */
2309 case PA_SINK_MESSAGE_SYNC_VOLUMES:
2310 sync_input_volumes_within_thread(s);
2311 return 0;
2313 case PA_SINK_MESSAGE_GET_VOLUME:
2315 if ((s->flags & PA_SINK_SYNC_VOLUME) && s->get_volume) {
2316 s->get_volume(s);
2317 pa_sink_volume_change_flush(s);
2318 pa_sw_cvolume_divide(&s->thread_info.current_hw_volume, &s->real_volume, &s->soft_volume);
2321 /* In case sink implementor reset SW volume. */
2322 if (!pa_cvolume_equal(&s->thread_info.soft_volume, &s->soft_volume)) {
2323 s->thread_info.soft_volume = s->soft_volume;
2324 pa_sink_request_rewind(s, (size_t) -1);
2327 return 0;
2329 case PA_SINK_MESSAGE_SET_MUTE:
2331 if (s->thread_info.soft_muted != s->muted) {
2332 s->thread_info.soft_muted = s->muted;
2333 pa_sink_request_rewind(s, (size_t) -1);
2336 if (s->flags & PA_SINK_SYNC_VOLUME && s->set_mute)
2337 s->set_mute(s);
2339 return 0;
2341 case PA_SINK_MESSAGE_GET_MUTE:
2343 if (s->flags & PA_SINK_SYNC_VOLUME && s->get_mute)
2344 s->get_mute(s);
2346 return 0;
2348 case PA_SINK_MESSAGE_SET_STATE: {
2350 pa_bool_t suspend_change =
2351 (s->thread_info.state == PA_SINK_SUSPENDED && PA_SINK_IS_OPENED(PA_PTR_TO_UINT(userdata))) ||
2352 (PA_SINK_IS_OPENED(s->thread_info.state) && PA_PTR_TO_UINT(userdata) == PA_SINK_SUSPENDED);
2354 s->thread_info.state = PA_PTR_TO_UINT(userdata);
2356 if (s->thread_info.state == PA_SINK_SUSPENDED) {
2357 s->thread_info.rewind_nbytes = 0;
2358 s->thread_info.rewind_requested = FALSE;
2361 if (suspend_change) {
2362 pa_sink_input *i;
2363 void *state = NULL;
2365 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
2366 if (i->suspend_within_thread)
2367 i->suspend_within_thread(i, s->thread_info.state == PA_SINK_SUSPENDED);
2370 return 0;
2373 case PA_SINK_MESSAGE_DETACH:
2375 /* Detach all streams */
2376 pa_sink_detach_within_thread(s);
2377 return 0;
2379 case PA_SINK_MESSAGE_ATTACH:
2381 /* Reattach all streams */
2382 pa_sink_attach_within_thread(s);
2383 return 0;
2385 case PA_SINK_MESSAGE_GET_REQUESTED_LATENCY: {
2387 pa_usec_t *usec = userdata;
2388 *usec = pa_sink_get_requested_latency_within_thread(s);
2390 /* Yes, that's right, the IO thread will see -1 when no
2391 * explicit requested latency is configured, the main
2392 * thread will see max_latency */
2393 if (*usec == (pa_usec_t) -1)
2394 *usec = s->thread_info.max_latency;
2396 return 0;
2399 case PA_SINK_MESSAGE_SET_LATENCY_RANGE: {
2400 pa_usec_t *r = userdata;
2402 pa_sink_set_latency_range_within_thread(s, r[0], r[1]);
2404 return 0;
2407 case PA_SINK_MESSAGE_GET_LATENCY_RANGE: {
2408 pa_usec_t *r = userdata;
2410 r[0] = s->thread_info.min_latency;
2411 r[1] = s->thread_info.max_latency;
2413 return 0;
2416 case PA_SINK_MESSAGE_GET_FIXED_LATENCY:
2418 *((pa_usec_t*) userdata) = s->thread_info.fixed_latency;
2419 return 0;
2421 case PA_SINK_MESSAGE_SET_FIXED_LATENCY:
2423 pa_sink_set_fixed_latency_within_thread(s, (pa_usec_t) offset);
2424 return 0;
2426 case PA_SINK_MESSAGE_GET_MAX_REWIND:
2428 *((size_t*) userdata) = s->thread_info.max_rewind;
2429 return 0;
2431 case PA_SINK_MESSAGE_GET_MAX_REQUEST:
2433 *((size_t*) userdata) = s->thread_info.max_request;
2434 return 0;
2436 case PA_SINK_MESSAGE_SET_MAX_REWIND:
2438 pa_sink_set_max_rewind_within_thread(s, (size_t) offset);
2439 return 0;
2441 case PA_SINK_MESSAGE_SET_MAX_REQUEST:
2443 pa_sink_set_max_request_within_thread(s, (size_t) offset);
2444 return 0;
2446 case PA_SINK_MESSAGE_SET_PORT:
2448 pa_assert(userdata);
2449 if (s->set_port) {
2450 struct sink_message_set_port *msg_data = userdata;
2451 msg_data->ret = s->set_port(s, msg_data->port);
2453 return 0;
2455 case PA_SINK_MESSAGE_UPDATE_VOLUME_AND_MUTE:
2456 /* This message is sent from IO-thread and handled in main thread. */
2457 pa_assert_ctl_context();
2459 pa_sink_get_volume(s, TRUE);
2460 pa_sink_get_mute(s, TRUE);
2461 return 0;
2463 case PA_SINK_MESSAGE_GET_LATENCY:
2464 case PA_SINK_MESSAGE_MAX:
2468 return -1;
2471 /* Called from main thread */
2472 int pa_sink_suspend_all(pa_core *c, pa_bool_t suspend, pa_suspend_cause_t cause) {
2473 pa_sink *sink;
2474 uint32_t idx;
2475 int ret = 0;
2477 pa_core_assert_ref(c);
2478 pa_assert_ctl_context();
2479 pa_assert(cause != 0);
2481 PA_IDXSET_FOREACH(sink, c->sinks, idx) {
2482 int r;
2484 if ((r = pa_sink_suspend(sink, suspend, cause)) < 0)
2485 ret = r;
2488 return ret;
2491 /* Called from main thread */
2492 void pa_sink_detach(pa_sink *s) {
2493 pa_sink_assert_ref(s);
2494 pa_assert_ctl_context();
2495 pa_assert(PA_SINK_IS_LINKED(s->state));
2497 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_DETACH, NULL, 0, NULL) == 0);
2500 /* Called from main thread */
2501 void pa_sink_attach(pa_sink *s) {
2502 pa_sink_assert_ref(s);
2503 pa_assert_ctl_context();
2504 pa_assert(PA_SINK_IS_LINKED(s->state));
2506 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_ATTACH, NULL, 0, NULL) == 0);
2509 /* Called from IO thread */
2510 void pa_sink_detach_within_thread(pa_sink *s) {
2511 pa_sink_input *i;
2512 void *state = NULL;
2514 pa_sink_assert_ref(s);
2515 pa_sink_assert_io_context(s);
2516 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
2518 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2519 if (i->detach)
2520 i->detach(i);
2522 if (s->monitor_source)
2523 pa_source_detach_within_thread(s->monitor_source);
2526 /* Called from IO thread */
2527 void pa_sink_attach_within_thread(pa_sink *s) {
2528 pa_sink_input *i;
2529 void *state = NULL;
2531 pa_sink_assert_ref(s);
2532 pa_sink_assert_io_context(s);
2533 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
2535 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2536 if (i->attach)
2537 i->attach(i);
2539 if (s->monitor_source)
2540 pa_source_attach_within_thread(s->monitor_source);
2543 /* Called from IO thread */
2544 void pa_sink_request_rewind(pa_sink*s, size_t nbytes) {
2545 pa_sink_assert_ref(s);
2546 pa_sink_assert_io_context(s);
2547 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
2549 if (s->thread_info.state == PA_SINK_SUSPENDED)
2550 return;
2552 if (nbytes == (size_t) -1)
2553 nbytes = s->thread_info.max_rewind;
2555 nbytes = PA_MIN(nbytes, s->thread_info.max_rewind);
2557 if (s->thread_info.rewind_requested &&
2558 nbytes <= s->thread_info.rewind_nbytes)
2559 return;
2561 s->thread_info.rewind_nbytes = nbytes;
2562 s->thread_info.rewind_requested = TRUE;
2564 if (s->request_rewind)
2565 s->request_rewind(s);
2568 /* Called from IO thread */
2569 pa_usec_t pa_sink_get_requested_latency_within_thread(pa_sink *s) {
2570 pa_usec_t result = (pa_usec_t) -1;
2571 pa_sink_input *i;
2572 void *state = NULL;
2573 pa_usec_t monitor_latency;
2575 pa_sink_assert_ref(s);
2576 pa_sink_assert_io_context(s);
2578 if (!(s->flags & PA_SINK_DYNAMIC_LATENCY))
2579 return PA_CLAMP(s->thread_info.fixed_latency, s->thread_info.min_latency, s->thread_info.max_latency);
2581 if (s->thread_info.requested_latency_valid)
2582 return s->thread_info.requested_latency;
2584 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2585 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1 &&
2586 (result == (pa_usec_t) -1 || result > i->thread_info.requested_sink_latency))
2587 result = i->thread_info.requested_sink_latency;
2589 monitor_latency = pa_source_get_requested_latency_within_thread(s->monitor_source);
2591 if (monitor_latency != (pa_usec_t) -1 &&
2592 (result == (pa_usec_t) -1 || result > monitor_latency))
2593 result = monitor_latency;
2595 if (result != (pa_usec_t) -1)
2596 result = PA_CLAMP(result, s->thread_info.min_latency, s->thread_info.max_latency);
2598 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
2599 /* Only cache if properly initialized */
2600 s->thread_info.requested_latency = result;
2601 s->thread_info.requested_latency_valid = TRUE;
2604 return result;
2607 /* Called from main thread */
2608 pa_usec_t pa_sink_get_requested_latency(pa_sink *s) {
2609 pa_usec_t usec = 0;
2611 pa_sink_assert_ref(s);
2612 pa_assert_ctl_context();
2613 pa_assert(PA_SINK_IS_LINKED(s->state));
2615 if (s->state == PA_SINK_SUSPENDED)
2616 return 0;
2618 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_REQUESTED_LATENCY, &usec, 0, NULL) == 0);
2620 return usec;
2623 /* Called from IO as well as the main thread -- the latter only before the IO thread started up */
2624 void pa_sink_set_max_rewind_within_thread(pa_sink *s, size_t max_rewind) {
2625 pa_sink_input *i;
2626 void *state = NULL;
2628 pa_sink_assert_ref(s);
2629 pa_sink_assert_io_context(s);
2631 if (max_rewind == s->thread_info.max_rewind)
2632 return;
2634 s->thread_info.max_rewind = max_rewind;
2636 if (PA_SINK_IS_LINKED(s->thread_info.state))
2637 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2638 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
2640 if (s->monitor_source)
2641 pa_source_set_max_rewind_within_thread(s->monitor_source, s->thread_info.max_rewind);
2644 /* Called from main thread */
2645 void pa_sink_set_max_rewind(pa_sink *s, size_t max_rewind) {
2646 pa_sink_assert_ref(s);
2647 pa_assert_ctl_context();
2649 if (PA_SINK_IS_LINKED(s->state))
2650 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MAX_REWIND, NULL, max_rewind, NULL) == 0);
2651 else
2652 pa_sink_set_max_rewind_within_thread(s, max_rewind);
2655 /* Called from IO as well as the main thread -- the latter only before the IO thread started up */
2656 void pa_sink_set_max_request_within_thread(pa_sink *s, size_t max_request) {
2657 void *state = NULL;
2659 pa_sink_assert_ref(s);
2660 pa_sink_assert_io_context(s);
2662 if (max_request == s->thread_info.max_request)
2663 return;
2665 s->thread_info.max_request = max_request;
2667 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
2668 pa_sink_input *i;
2670 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2671 pa_sink_input_update_max_request(i, s->thread_info.max_request);
2675 /* Called from main thread */
2676 void pa_sink_set_max_request(pa_sink *s, size_t max_request) {
2677 pa_sink_assert_ref(s);
2678 pa_assert_ctl_context();
2680 if (PA_SINK_IS_LINKED(s->state))
2681 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MAX_REQUEST, NULL, max_request, NULL) == 0);
2682 else
2683 pa_sink_set_max_request_within_thread(s, max_request);
2686 /* Called from IO thread */
2687 void pa_sink_invalidate_requested_latency(pa_sink *s, pa_bool_t dynamic) {
2688 pa_sink_input *i;
2689 void *state = NULL;
2691 pa_sink_assert_ref(s);
2692 pa_sink_assert_io_context(s);
2694 if ((s->flags & PA_SINK_DYNAMIC_LATENCY))
2695 s->thread_info.requested_latency_valid = FALSE;
2696 else if (dynamic)
2697 return;
2699 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
2701 if (s->update_requested_latency)
2702 s->update_requested_latency(s);
2704 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2705 if (i->update_sink_requested_latency)
2706 i->update_sink_requested_latency(i);
2710 /* Called from main thread */
2711 void pa_sink_set_latency_range(pa_sink *s, pa_usec_t min_latency, pa_usec_t max_latency) {
2712 pa_sink_assert_ref(s);
2713 pa_assert_ctl_context();
2715 /* min_latency == 0: no limit
2716 * min_latency anything else: specified limit
2718 * Similar for max_latency */
2720 if (min_latency < ABSOLUTE_MIN_LATENCY)
2721 min_latency = ABSOLUTE_MIN_LATENCY;
2723 if (max_latency <= 0 ||
2724 max_latency > ABSOLUTE_MAX_LATENCY)
2725 max_latency = ABSOLUTE_MAX_LATENCY;
2727 pa_assert(min_latency <= max_latency);
2729 /* Hmm, let's see if someone forgot to set PA_SINK_DYNAMIC_LATENCY here... */
2730 pa_assert((min_latency == ABSOLUTE_MIN_LATENCY &&
2731 max_latency == ABSOLUTE_MAX_LATENCY) ||
2732 (s->flags & PA_SINK_DYNAMIC_LATENCY));
2734 if (PA_SINK_IS_LINKED(s->state)) {
2735 pa_usec_t r[2];
2737 r[0] = min_latency;
2738 r[1] = max_latency;
2740 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_LATENCY_RANGE, r, 0, NULL) == 0);
2741 } else
2742 pa_sink_set_latency_range_within_thread(s, min_latency, max_latency);
2745 /* Called from main thread */
2746 void pa_sink_get_latency_range(pa_sink *s, pa_usec_t *min_latency, pa_usec_t *max_latency) {
2747 pa_sink_assert_ref(s);
2748 pa_assert_ctl_context();
2749 pa_assert(min_latency);
2750 pa_assert(max_latency);
2752 if (PA_SINK_IS_LINKED(s->state)) {
2753 pa_usec_t r[2] = { 0, 0 };
2755 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY_RANGE, r, 0, NULL) == 0);
2757 *min_latency = r[0];
2758 *max_latency = r[1];
2759 } else {
2760 *min_latency = s->thread_info.min_latency;
2761 *max_latency = s->thread_info.max_latency;
2765 /* Called from IO thread */
2766 void pa_sink_set_latency_range_within_thread(pa_sink *s, pa_usec_t min_latency, pa_usec_t max_latency) {
2767 pa_sink_assert_ref(s);
2768 pa_sink_assert_io_context(s);
2770 pa_assert(min_latency >= ABSOLUTE_MIN_LATENCY);
2771 pa_assert(max_latency <= ABSOLUTE_MAX_LATENCY);
2772 pa_assert(min_latency <= max_latency);
2774 /* Hmm, let's see if someone forgot to set PA_SINK_DYNAMIC_LATENCY here... */
2775 pa_assert((min_latency == ABSOLUTE_MIN_LATENCY &&
2776 max_latency == ABSOLUTE_MAX_LATENCY) ||
2777 (s->flags & PA_SINK_DYNAMIC_LATENCY));
2779 if (s->thread_info.min_latency == min_latency &&
2780 s->thread_info.max_latency == max_latency)
2781 return;
2783 s->thread_info.min_latency = min_latency;
2784 s->thread_info.max_latency = max_latency;
2786 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
2787 pa_sink_input *i;
2788 void *state = NULL;
2790 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2791 if (i->update_sink_latency_range)
2792 i->update_sink_latency_range(i);
2795 pa_sink_invalidate_requested_latency(s, FALSE);
2797 pa_source_set_latency_range_within_thread(s->monitor_source, min_latency, max_latency);
2800 /* Called from main thread */
2801 void pa_sink_set_fixed_latency(pa_sink *s, pa_usec_t latency) {
2802 pa_sink_assert_ref(s);
2803 pa_assert_ctl_context();
2805 if (s->flags & PA_SINK_DYNAMIC_LATENCY) {
2806 pa_assert(latency == 0);
2807 return;
2810 if (latency < ABSOLUTE_MIN_LATENCY)
2811 latency = ABSOLUTE_MIN_LATENCY;
2813 if (latency > ABSOLUTE_MAX_LATENCY)
2814 latency = ABSOLUTE_MAX_LATENCY;
2816 if (PA_SINK_IS_LINKED(s->state))
2817 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_FIXED_LATENCY, NULL, (int64_t) latency, NULL) == 0);
2818 else
2819 s->thread_info.fixed_latency = latency;
2821 pa_source_set_fixed_latency(s->monitor_source, latency);
2824 /* Called from main thread */
2825 pa_usec_t pa_sink_get_fixed_latency(pa_sink *s) {
2826 pa_usec_t latency;
2828 pa_sink_assert_ref(s);
2829 pa_assert_ctl_context();
2831 if (s->flags & PA_SINK_DYNAMIC_LATENCY)
2832 return 0;
2834 if (PA_SINK_IS_LINKED(s->state))
2835 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_FIXED_LATENCY, &latency, 0, NULL) == 0);
2836 else
2837 latency = s->thread_info.fixed_latency;
2839 return latency;
2842 /* Called from IO thread */
2843 void pa_sink_set_fixed_latency_within_thread(pa_sink *s, pa_usec_t latency) {
2844 pa_sink_assert_ref(s);
2845 pa_sink_assert_io_context(s);
2847 if (s->flags & PA_SINK_DYNAMIC_LATENCY) {
2848 pa_assert(latency == 0);
2849 return;
2852 pa_assert(latency >= ABSOLUTE_MIN_LATENCY);
2853 pa_assert(latency <= ABSOLUTE_MAX_LATENCY);
2855 if (s->thread_info.fixed_latency == latency)
2856 return;
2858 s->thread_info.fixed_latency = latency;
2860 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
2861 pa_sink_input *i;
2862 void *state = NULL;
2864 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2865 if (i->update_sink_fixed_latency)
2866 i->update_sink_fixed_latency(i);
2869 pa_sink_invalidate_requested_latency(s, FALSE);
2871 pa_source_set_fixed_latency_within_thread(s->monitor_source, latency);
2874 /* Called from main context */
2875 size_t pa_sink_get_max_rewind(pa_sink *s) {
2876 size_t r;
2877 pa_assert_ctl_context();
2878 pa_sink_assert_ref(s);
2880 if (!PA_SINK_IS_LINKED(s->state))
2881 return s->thread_info.max_rewind;
2883 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MAX_REWIND, &r, 0, NULL) == 0);
2885 return r;
2888 /* Called from main context */
2889 size_t pa_sink_get_max_request(pa_sink *s) {
2890 size_t r;
2891 pa_sink_assert_ref(s);
2892 pa_assert_ctl_context();
2894 if (!PA_SINK_IS_LINKED(s->state))
2895 return s->thread_info.max_request;
2897 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MAX_REQUEST, &r, 0, NULL) == 0);
2899 return r;
2902 /* Called from main context */
2903 int pa_sink_set_port(pa_sink *s, const char *name, pa_bool_t save) {
2904 pa_device_port *port;
2905 int ret;
2907 pa_sink_assert_ref(s);
2908 pa_assert_ctl_context();
2910 if (!s->set_port) {
2911 pa_log_debug("set_port() operation not implemented for sink %u \"%s\"", s->index, s->name);
2912 return -PA_ERR_NOTIMPLEMENTED;
2915 if (!s->ports)
2916 return -PA_ERR_NOENTITY;
2918 if (!(port = pa_hashmap_get(s->ports, name)))
2919 return -PA_ERR_NOENTITY;
2921 if (s->active_port == port) {
2922 s->save_port = s->save_port || save;
2923 return 0;
2926 if (s->flags & PA_SINK_SYNC_VOLUME) {
2927 struct sink_message_set_port msg = { .port = port, .ret = 0 };
2928 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_PORT, &msg, 0, NULL) == 0);
2929 ret = msg.ret;
2931 else
2932 ret = s->set_port(s, port);
2934 if (ret < 0)
2935 return -PA_ERR_NOENTITY;
2937 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
2939 pa_log_info("Changed port of sink %u \"%s\" to %s", s->index, s->name, port->name);
2941 s->active_port = port;
2942 s->save_port = save;
2944 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PORT_CHANGED], s);
2946 return 0;
2949 pa_bool_t pa_device_init_icon(pa_proplist *p, pa_bool_t is_sink) {
2950 const char *ff, *c, *t = NULL, *s = "", *profile, *bus;
2952 pa_assert(p);
2954 if (pa_proplist_contains(p, PA_PROP_DEVICE_ICON_NAME))
2955 return TRUE;
2957 if ((ff = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR))) {
2959 if (pa_streq(ff, "microphone"))
2960 t = "audio-input-microphone";
2961 else if (pa_streq(ff, "webcam"))
2962 t = "camera-web";
2963 else if (pa_streq(ff, "computer"))
2964 t = "computer";
2965 else if (pa_streq(ff, "handset"))
2966 t = "phone";
2967 else if (pa_streq(ff, "portable"))
2968 t = "multimedia-player";
2969 else if (pa_streq(ff, "tv"))
2970 t = "video-display";
2973 * The following icons are not part of the icon naming spec,
2974 * because Rodney Dawes sucks as the maintainer of that spec.
2976 * http://lists.freedesktop.org/archives/xdg/2009-May/010397.html
2978 else if (pa_streq(ff, "headset"))
2979 t = "audio-headset";
2980 else if (pa_streq(ff, "headphone"))
2981 t = "audio-headphones";
2982 else if (pa_streq(ff, "speaker"))
2983 t = "audio-speakers";
2984 else if (pa_streq(ff, "hands-free"))
2985 t = "audio-handsfree";
2988 if (!t)
2989 if ((c = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS)))
2990 if (pa_streq(c, "modem"))
2991 t = "modem";
2993 if (!t) {
2994 if (is_sink)
2995 t = "audio-card";
2996 else
2997 t = "audio-input-microphone";
3000 if ((profile = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_NAME))) {
3001 if (strstr(profile, "analog"))
3002 s = "-analog";
3003 else if (strstr(profile, "iec958"))
3004 s = "-iec958";
3005 else if (strstr(profile, "hdmi"))
3006 s = "-hdmi";
3009 bus = pa_proplist_gets(p, PA_PROP_DEVICE_BUS);
3011 pa_proplist_setf(p, PA_PROP_DEVICE_ICON_NAME, "%s%s%s%s", t, pa_strempty(s), bus ? "-" : "", pa_strempty(bus));
3013 return TRUE;
3016 pa_bool_t pa_device_init_description(pa_proplist *p) {
3017 const char *s, *d = NULL, *k;
3018 pa_assert(p);
3020 if (pa_proplist_contains(p, PA_PROP_DEVICE_DESCRIPTION))
3021 return TRUE;
3023 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR)))
3024 if (pa_streq(s, "internal"))
3025 d = _("Internal Audio");
3027 if (!d)
3028 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS)))
3029 if (pa_streq(s, "modem"))
3030 d = _("Modem");
3032 if (!d)
3033 d = pa_proplist_gets(p, PA_PROP_DEVICE_PRODUCT_NAME);
3035 if (!d)
3036 return FALSE;
3038 k = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_DESCRIPTION);
3040 if (d && k)
3041 pa_proplist_setf(p, PA_PROP_DEVICE_DESCRIPTION, _("%s %s"), d, k);
3042 else if (d)
3043 pa_proplist_sets(p, PA_PROP_DEVICE_DESCRIPTION, d);
3045 return TRUE;
3048 pa_bool_t pa_device_init_intended_roles(pa_proplist *p) {
3049 const char *s;
3050 pa_assert(p);
3052 if (pa_proplist_contains(p, PA_PROP_DEVICE_INTENDED_ROLES))
3053 return TRUE;
3055 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR)))
3056 if (pa_streq(s, "handset") || pa_streq(s, "hands-free")
3057 || pa_streq(s, "headset")) {
3058 pa_proplist_sets(p, PA_PROP_DEVICE_INTENDED_ROLES, "phone");
3059 return TRUE;
3062 return FALSE;
3065 unsigned pa_device_init_priority(pa_proplist *p) {
3066 const char *s;
3067 unsigned priority = 0;
3069 pa_assert(p);
3071 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS))) {
3073 if (pa_streq(s, "sound"))
3074 priority += 9000;
3075 else if (!pa_streq(s, "modem"))
3076 priority += 1000;
3079 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR))) {
3081 if (pa_streq(s, "internal"))
3082 priority += 900;
3083 else if (pa_streq(s, "speaker"))
3084 priority += 500;
3085 else if (pa_streq(s, "headphone"))
3086 priority += 400;
3089 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_BUS))) {
3091 if (pa_streq(s, "pci"))
3092 priority += 50;
3093 else if (pa_streq(s, "usb"))
3094 priority += 40;
3095 else if (pa_streq(s, "bluetooth"))
3096 priority += 30;
3099 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_NAME))) {
3101 if (pa_startswith(s, "analog-"))
3102 priority += 9;
3103 else if (pa_startswith(s, "iec958-"))
3104 priority += 8;
3107 return priority;
3110 PA_STATIC_FLIST_DECLARE(pa_sink_volume_change, 0, pa_xfree);
3112 /* Called from the IO thread. */
3113 static pa_sink_volume_change *pa_sink_volume_change_new(pa_sink *s) {
3114 pa_sink_volume_change *c;
3115 if (!(c = pa_flist_pop(PA_STATIC_FLIST_GET(pa_sink_volume_change))))
3116 c = pa_xnew(pa_sink_volume_change, 1);
3118 PA_LLIST_INIT(pa_sink_volume_change, c);
3119 c->at = 0;
3120 pa_cvolume_reset(&c->hw_volume, s->sample_spec.channels);
3121 return c;
3124 /* Called from the IO thread. */
3125 static void pa_sink_volume_change_free(pa_sink_volume_change *c) {
3126 pa_assert(c);
3127 if (pa_flist_push(PA_STATIC_FLIST_GET(pa_sink_volume_change), c) < 0)
3128 pa_xfree(c);
3131 /* Called from the IO thread. */
3132 void pa_sink_volume_change_push(pa_sink *s) {
3133 pa_sink_volume_change *c = NULL;
3134 pa_sink_volume_change *nc = NULL;
3135 uint32_t safety_margin = s->thread_info.volume_change_safety_margin;
3137 const char *direction = NULL;
3139 pa_assert(s);
3140 nc = pa_sink_volume_change_new(s);
3142 /* NOTE: There is already more different volumes in pa_sink that I can remember.
3143 * Adding one more volume for HW would get us rid of this, but I am trying
3144 * to survive with the ones we already have. */
3145 pa_sw_cvolume_divide(&nc->hw_volume, &s->real_volume, &s->soft_volume);
3147 if (!s->thread_info.volume_changes && pa_cvolume_equal(&nc->hw_volume, &s->thread_info.current_hw_volume)) {
3148 pa_log_debug("Volume not changing");
3149 pa_sink_volume_change_free(nc);
3150 return;
3153 nc->at = pa_sink_get_latency_within_thread(s);
3154 nc->at += pa_rtclock_now() + s->thread_info.volume_change_extra_delay;
3156 if (s->thread_info.volume_changes_tail) {
3157 for (c = s->thread_info.volume_changes_tail; c; c = c->prev) {
3158 /* If volume is going up let's do it a bit late. If it is going
3159 * down let's do it a bit early. */
3160 if (pa_cvolume_avg(&nc->hw_volume) > pa_cvolume_avg(&c->hw_volume)) {
3161 if (nc->at + safety_margin > c->at) {
3162 nc->at += safety_margin;
3163 direction = "up";
3164 break;
3167 else if (nc->at - safety_margin > c->at) {
3168 nc->at -= safety_margin;
3169 direction = "down";
3170 break;
3175 if (c == NULL) {
3176 if (pa_cvolume_avg(&nc->hw_volume) > pa_cvolume_avg(&s->thread_info.current_hw_volume)) {
3177 nc->at += safety_margin;
3178 direction = "up";
3179 } else {
3180 nc->at -= safety_margin;
3181 direction = "down";
3183 PA_LLIST_PREPEND(pa_sink_volume_change, s->thread_info.volume_changes, nc);
3185 else {
3186 PA_LLIST_INSERT_AFTER(pa_sink_volume_change, s->thread_info.volume_changes, c, nc);
3189 pa_log_debug("Volume going %s to %d at %llu", direction, pa_cvolume_avg(&nc->hw_volume), (long long unsigned) nc->at);
3191 /* We can ignore volume events that came earlier but should happen later than this. */
3192 PA_LLIST_FOREACH(c, nc->next) {
3193 pa_log_debug("Volume change to %d at %llu was dropped", pa_cvolume_avg(&c->hw_volume), (long long unsigned) c->at);
3194 pa_sink_volume_change_free(c);
3196 nc->next = NULL;
3197 s->thread_info.volume_changes_tail = nc;
3200 /* Called from the IO thread. */
3201 static void pa_sink_volume_change_flush(pa_sink *s) {
3202 pa_sink_volume_change *c = s->thread_info.volume_changes;
3203 pa_assert(s);
3204 s->thread_info.volume_changes = NULL;
3205 s->thread_info.volume_changes_tail = NULL;
3206 while (c) {
3207 pa_sink_volume_change *next = c->next;
3208 pa_sink_volume_change_free(c);
3209 c = next;
3213 /* Called from the IO thread. */
3214 pa_bool_t pa_sink_volume_change_apply(pa_sink *s, pa_usec_t *usec_to_next) {
3215 pa_usec_t now = pa_rtclock_now();
3216 pa_bool_t ret = FALSE;
3218 pa_assert(s);
3219 pa_assert(s->write_volume);
3221 while (s->thread_info.volume_changes && now >= s->thread_info.volume_changes->at) {
3222 pa_sink_volume_change *c = s->thread_info.volume_changes;
3223 PA_LLIST_REMOVE(pa_sink_volume_change, s->thread_info.volume_changes, c);
3224 pa_log_debug("Volume change to %d at %llu was written %llu usec late",
3225 pa_cvolume_avg(&c->hw_volume), (long long unsigned) c->at, (long long unsigned) (now - c->at));
3226 ret = TRUE;
3227 s->thread_info.current_hw_volume = c->hw_volume;
3228 pa_sink_volume_change_free(c);
3231 if (s->write_volume && ret)
3232 s->write_volume(s);
3234 if (s->thread_info.volume_changes) {
3235 if (usec_to_next)
3236 *usec_to_next = s->thread_info.volume_changes->at - now;
3237 if (pa_log_ratelimit(PA_LOG_DEBUG))
3238 pa_log_debug("Next volume change in %lld usec", (long long) (s->thread_info.volume_changes->at - now));
3240 else {
3241 if (usec_to_next)
3242 *usec_to_next = 0;
3243 s->thread_info.volume_changes_tail = NULL;
3245 return ret;
3248 /* Called from the IO thread. */
3249 static void pa_sink_volume_change_rewind(pa_sink *s, size_t nbytes) {
3250 /* All the queued volume events later than current latency are shifted to happen earlier. */
3251 pa_sink_volume_change *c;
3252 pa_volume_t prev_vol = pa_cvolume_avg(&s->thread_info.current_hw_volume);
3253 pa_usec_t rewound = pa_bytes_to_usec(nbytes, &s->sample_spec);
3254 pa_usec_t limit = pa_sink_get_latency_within_thread(s);
3256 pa_log_debug("latency = %lld", (long long) limit);
3257 limit += pa_rtclock_now() + s->thread_info.volume_change_extra_delay;
3259 PA_LLIST_FOREACH(c, s->thread_info.volume_changes) {
3260 pa_usec_t modified_limit = limit;
3261 if (prev_vol > pa_cvolume_avg(&c->hw_volume))
3262 modified_limit -= s->thread_info.volume_change_safety_margin;
3263 else
3264 modified_limit += s->thread_info.volume_change_safety_margin;
3265 if (c->at > modified_limit) {
3266 c->at -= rewound;
3267 if (c->at < modified_limit)
3268 c->at = modified_limit;
3270 prev_vol = pa_cvolume_avg(&c->hw_volume);
3272 pa_sink_volume_change_apply(s, NULL);
3275 /* Called from the main thread */
3276 /* Gets the list of formats supported by the sink. The members and idxset must
3277 * be freed by the caller. */
3278 pa_idxset* pa_sink_get_formats(pa_sink *s) {
3279 pa_idxset *ret;
3281 pa_assert(s);
3283 if (s->get_formats) {
3284 /* Sink supports format query, all is good */
3285 ret = s->get_formats(s);
3286 } else {
3287 /* Sink doesn't support format query, so assume it does PCM */
3288 pa_format_info *f = pa_format_info_new();
3289 f->encoding = PA_ENCODING_PCM;
3291 ret = pa_idxset_new(NULL, NULL);
3292 pa_idxset_put(ret, f, NULL);
3295 return ret;
3298 /* Called from the main thread */
3299 /* Checks if the sink can accept this format */
3300 pa_bool_t pa_sink_check_format(pa_sink *s, pa_format_info *f)
3302 pa_idxset *formats = NULL;
3303 pa_bool_t ret = FALSE;
3305 pa_assert(s);
3306 pa_assert(f);
3308 formats = pa_sink_get_formats(s);
3310 if (formats) {
3311 pa_format_info *finfo_device;
3312 uint32_t i;
3314 PA_IDXSET_FOREACH(finfo_device, formats, i) {
3315 if (pa_format_info_is_compatible(finfo_device, f)) {
3316 ret = TRUE;
3317 break;
3321 pa_idxset_free(formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
3324 return ret;
3327 /* Called from the main thread */
3328 /* Calculates the intersection between formats supported by the sink and
3329 * in_formats, and returns these, in the order of the sink's formats. */
3330 pa_idxset* pa_sink_check_formats(pa_sink *s, pa_idxset *in_formats) {
3331 pa_idxset *out_formats = pa_idxset_new(NULL, NULL), *sink_formats = NULL;
3332 pa_format_info *f_sink, *f_in;
3333 uint32_t i, j;
3335 pa_assert(s);
3337 if (!in_formats || pa_idxset_isempty(in_formats))
3338 goto done;
3340 sink_formats = pa_sink_get_formats(s);
3342 PA_IDXSET_FOREACH(f_sink, sink_formats, i) {
3343 PA_IDXSET_FOREACH(f_in, in_formats, j) {
3344 if (pa_format_info_is_compatible(f_sink, f_in))
3345 pa_idxset_put(out_formats, pa_format_info_copy(f_in), NULL);
3349 done:
3350 if (sink_formats)
3351 pa_idxset_free(sink_formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
3353 return out_formats;