]> code.delx.au - pulseaudio/blob - src/pulsecore/sink.c
Log the reason for every suspend/resume.
[pulseaudio] / src / pulsecore / sink.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
6
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.
11
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.
16
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 ***/
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include <pulse/introspect.h>
32 #include <pulse/format.h>
33 #include <pulse/utf8.h>
34 #include <pulse/xmalloc.h>
35 #include <pulse/timeval.h>
36 #include <pulse/util.h>
37 #include <pulse/rtclock.h>
38 #include <pulse/internal.h>
39
40 #include <pulsecore/i18n.h>
41 #include <pulsecore/sink-input.h>
42 #include <pulsecore/namereg.h>
43 #include <pulsecore/core-util.h>
44 #include <pulsecore/sample-util.h>
45 #include <pulsecore/core-subscribe.h>
46 #include <pulsecore/log.h>
47 #include <pulsecore/macro.h>
48 #include <pulsecore/play-memblockq.h>
49 #include <pulsecore/flist.h>
50
51 #include "sink.h"
52
53 #define MAX_MIX_CHANNELS 32
54 #define MIX_BUFFER_LENGTH (PA_PAGE_SIZE)
55 #define ABSOLUTE_MIN_LATENCY (500)
56 #define ABSOLUTE_MAX_LATENCY (10*PA_USEC_PER_SEC)
57 #define DEFAULT_FIXED_LATENCY (250*PA_USEC_PER_MSEC)
58
59 PA_DEFINE_PUBLIC_CLASS(pa_sink, pa_msgobject);
60
61 struct pa_sink_volume_change {
62 pa_usec_t at;
63 pa_cvolume hw_volume;
64
65 PA_LLIST_FIELDS(pa_sink_volume_change);
66 };
67
68 struct sink_message_set_port {
69 pa_device_port *port;
70 int ret;
71 };
72
73 static void sink_free(pa_object *s);
74
75 static void pa_sink_volume_change_push(pa_sink *s);
76 static void pa_sink_volume_change_flush(pa_sink *s);
77 static void pa_sink_volume_change_rewind(pa_sink *s, size_t nbytes);
78
79 pa_sink_new_data* pa_sink_new_data_init(pa_sink_new_data *data) {
80 pa_assert(data);
81
82 pa_zero(*data);
83 data->proplist = pa_proplist_new();
84 data->ports = pa_hashmap_new(pa_idxset_string_hash_func, pa_idxset_string_compare_func);
85
86 return data;
87 }
88
89 void pa_sink_new_data_set_name(pa_sink_new_data *data, const char *name) {
90 pa_assert(data);
91
92 pa_xfree(data->name);
93 data->name = pa_xstrdup(name);
94 }
95
96 void pa_sink_new_data_set_sample_spec(pa_sink_new_data *data, const pa_sample_spec *spec) {
97 pa_assert(data);
98
99 if ((data->sample_spec_is_set = !!spec))
100 data->sample_spec = *spec;
101 }
102
103 void pa_sink_new_data_set_channel_map(pa_sink_new_data *data, const pa_channel_map *map) {
104 pa_assert(data);
105
106 if ((data->channel_map_is_set = !!map))
107 data->channel_map = *map;
108 }
109
110 void pa_sink_new_data_set_alternate_sample_rate(pa_sink_new_data *data, const uint32_t alternate_sample_rate) {
111 pa_assert(data);
112
113 data->alternate_sample_rate_is_set = TRUE;
114 data->alternate_sample_rate = alternate_sample_rate;
115 }
116
117 void pa_sink_new_data_set_volume(pa_sink_new_data *data, const pa_cvolume *volume) {
118 pa_assert(data);
119
120 if ((data->volume_is_set = !!volume))
121 data->volume = *volume;
122 }
123
124 void pa_sink_new_data_set_muted(pa_sink_new_data *data, pa_bool_t mute) {
125 pa_assert(data);
126
127 data->muted_is_set = TRUE;
128 data->muted = !!mute;
129 }
130
131 void pa_sink_new_data_set_port(pa_sink_new_data *data, const char *port) {
132 pa_assert(data);
133
134 pa_xfree(data->active_port);
135 data->active_port = pa_xstrdup(port);
136 }
137
138 void pa_sink_new_data_done(pa_sink_new_data *data) {
139 pa_assert(data);
140
141 pa_proplist_free(data->proplist);
142
143 if (data->ports)
144 pa_device_port_hashmap_free(data->ports);
145
146 pa_xfree(data->name);
147 pa_xfree(data->active_port);
148 }
149
150
151 /* Called from main context */
152 static void reset_callbacks(pa_sink *s) {
153 pa_assert(s);
154
155 s->set_state = NULL;
156 s->get_volume = NULL;
157 s->set_volume = NULL;
158 s->write_volume = NULL;
159 s->get_mute = NULL;
160 s->set_mute = NULL;
161 s->request_rewind = NULL;
162 s->update_requested_latency = NULL;
163 s->set_port = NULL;
164 s->get_formats = NULL;
165 s->set_formats = NULL;
166 s->update_rate = NULL;
167 }
168
169 /* Called from main context */
170 pa_sink* pa_sink_new(
171 pa_core *core,
172 pa_sink_new_data *data,
173 pa_sink_flags_t flags) {
174
175 pa_sink *s;
176 const char *name;
177 char st[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
178 pa_source_new_data source_data;
179 const char *dn;
180 char *pt;
181
182 pa_assert(core);
183 pa_assert(data);
184 pa_assert(data->name);
185 pa_assert_ctl_context();
186
187 s = pa_msgobject_new(pa_sink);
188
189 if (!(name = pa_namereg_register(core, data->name, PA_NAMEREG_SINK, s, data->namereg_fail))) {
190 pa_log_debug("Failed to register name %s.", data->name);
191 pa_xfree(s);
192 return NULL;
193 }
194
195 pa_sink_new_data_set_name(data, name);
196
197 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_NEW], data) < 0) {
198 pa_xfree(s);
199 pa_namereg_unregister(core, name);
200 return NULL;
201 }
202
203 /* FIXME, need to free s here on failure */
204
205 pa_return_null_if_fail(!data->driver || pa_utf8_valid(data->driver));
206 pa_return_null_if_fail(data->name && pa_utf8_valid(data->name) && data->name[0]);
207
208 pa_return_null_if_fail(data->sample_spec_is_set && pa_sample_spec_valid(&data->sample_spec));
209
210 if (!data->channel_map_is_set)
211 pa_return_null_if_fail(pa_channel_map_init_auto(&data->channel_map, data->sample_spec.channels, PA_CHANNEL_MAP_DEFAULT));
212
213 pa_return_null_if_fail(pa_channel_map_valid(&data->channel_map));
214 pa_return_null_if_fail(data->channel_map.channels == data->sample_spec.channels);
215
216 /* FIXME: There should probably be a general function for checking whether
217 * the sink volume is allowed to be set, like there is for sink inputs. */
218 pa_assert(!data->volume_is_set || !(flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
219
220 if (!data->volume_is_set) {
221 pa_cvolume_reset(&data->volume, data->sample_spec.channels);
222 data->save_volume = FALSE;
223 }
224
225 pa_return_null_if_fail(pa_cvolume_valid(&data->volume));
226 pa_return_null_if_fail(pa_cvolume_compatible(&data->volume, &data->sample_spec));
227
228 if (!data->muted_is_set)
229 data->muted = FALSE;
230
231 if (data->card)
232 pa_proplist_update(data->proplist, PA_UPDATE_MERGE, data->card->proplist);
233
234 pa_device_init_description(data->proplist);
235 pa_device_init_icon(data->proplist, TRUE);
236 pa_device_init_intended_roles(data->proplist);
237
238 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_FIXATE], data) < 0) {
239 pa_xfree(s);
240 pa_namereg_unregister(core, name);
241 return NULL;
242 }
243
244 s->parent.parent.free = sink_free;
245 s->parent.process_msg = pa_sink_process_msg;
246
247 s->core = core;
248 s->state = PA_SINK_INIT;
249 s->flags = flags;
250 s->priority = 0;
251 s->suspend_cause = data->suspend_cause;
252 pa_sink_set_mixer_dirty(s, FALSE);
253 s->name = pa_xstrdup(name);
254 s->proplist = pa_proplist_copy(data->proplist);
255 s->driver = pa_xstrdup(pa_path_get_filename(data->driver));
256 s->module = data->module;
257 s->card = data->card;
258
259 s->priority = pa_device_init_priority(s->proplist);
260
261 s->sample_spec = data->sample_spec;
262 s->channel_map = data->channel_map;
263 s->default_sample_rate = s->sample_spec.rate;
264
265 if (data->alternate_sample_rate_is_set)
266 s->alternate_sample_rate = data->alternate_sample_rate;
267 else
268 s->alternate_sample_rate = s->core->alternate_sample_rate;
269
270 if (s->sample_spec.rate == s->alternate_sample_rate) {
271 pa_log_warn("Default and alternate sample rates are the same.");
272 s->alternate_sample_rate = 0;
273 }
274
275 s->inputs = pa_idxset_new(NULL, NULL);
276 s->n_corked = 0;
277 s->input_to_master = NULL;
278
279 s->reference_volume = s->real_volume = data->volume;
280 pa_cvolume_reset(&s->soft_volume, s->sample_spec.channels);
281 s->base_volume = PA_VOLUME_NORM;
282 s->n_volume_steps = PA_VOLUME_NORM+1;
283 s->muted = data->muted;
284 s->refresh_volume = s->refresh_muted = FALSE;
285
286 reset_callbacks(s);
287 s->userdata = NULL;
288
289 s->asyncmsgq = NULL;
290
291 /* As a minor optimization we just steal the list instead of
292 * copying it here */
293 s->ports = data->ports;
294 data->ports = NULL;
295
296 s->active_port = NULL;
297 s->save_port = FALSE;
298
299 if (data->active_port)
300 if ((s->active_port = pa_hashmap_get(s->ports, data->active_port)))
301 s->save_port = data->save_port;
302
303 if (!s->active_port) {
304 void *state;
305 pa_device_port *p;
306
307 PA_HASHMAP_FOREACH(p, s->ports, state)
308 if (!s->active_port || p->priority > s->active_port->priority)
309 s->active_port = p;
310 }
311
312 if (s->active_port)
313 s->latency_offset = s->active_port->latency_offset;
314 else
315 s->latency_offset = 0;
316
317 s->save_volume = data->save_volume;
318 s->save_muted = data->save_muted;
319
320 pa_silence_memchunk_get(
321 &core->silence_cache,
322 core->mempool,
323 &s->silence,
324 &s->sample_spec,
325 0);
326
327 s->thread_info.rtpoll = NULL;
328 s->thread_info.inputs = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
329 s->thread_info.soft_volume = s->soft_volume;
330 s->thread_info.soft_muted = s->muted;
331 s->thread_info.state = s->state;
332 s->thread_info.rewind_nbytes = 0;
333 s->thread_info.rewind_requested = FALSE;
334 s->thread_info.max_rewind = 0;
335 s->thread_info.max_request = 0;
336 s->thread_info.requested_latency_valid = FALSE;
337 s->thread_info.requested_latency = 0;
338 s->thread_info.min_latency = ABSOLUTE_MIN_LATENCY;
339 s->thread_info.max_latency = ABSOLUTE_MAX_LATENCY;
340 s->thread_info.fixed_latency = flags & PA_SINK_DYNAMIC_LATENCY ? 0 : DEFAULT_FIXED_LATENCY;
341
342 PA_LLIST_HEAD_INIT(pa_sink_volume_change, s->thread_info.volume_changes);
343 s->thread_info.volume_changes_tail = NULL;
344 pa_sw_cvolume_multiply(&s->thread_info.current_hw_volume, &s->soft_volume, &s->real_volume);
345 s->thread_info.volume_change_safety_margin = core->deferred_volume_safety_margin_usec;
346 s->thread_info.volume_change_extra_delay = core->deferred_volume_extra_delay_usec;
347 s->thread_info.latency_offset = s->latency_offset;
348
349 /* FIXME: This should probably be moved to pa_sink_put() */
350 pa_assert_se(pa_idxset_put(core->sinks, s, &s->index) >= 0);
351
352 if (s->card)
353 pa_assert_se(pa_idxset_put(s->card->sinks, s, NULL) >= 0);
354
355 pt = pa_proplist_to_string_sep(s->proplist, "\n ");
356 pa_log_info("Created sink %u \"%s\" with sample spec %s and channel map %s\n %s",
357 s->index,
358 s->name,
359 pa_sample_spec_snprint(st, sizeof(st), &s->sample_spec),
360 pa_channel_map_snprint(cm, sizeof(cm), &s->channel_map),
361 pt);
362 pa_xfree(pt);
363
364 pa_source_new_data_init(&source_data);
365 pa_source_new_data_set_sample_spec(&source_data, &s->sample_spec);
366 pa_source_new_data_set_channel_map(&source_data, &s->channel_map);
367 pa_source_new_data_set_alternate_sample_rate(&source_data, s->alternate_sample_rate);
368 source_data.name = pa_sprintf_malloc("%s.monitor", name);
369 source_data.driver = data->driver;
370 source_data.module = data->module;
371 source_data.card = data->card;
372
373 dn = pa_proplist_gets(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
374 pa_proplist_setf(source_data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Monitor of %s", dn ? dn : s->name);
375 pa_proplist_sets(source_data.proplist, PA_PROP_DEVICE_CLASS, "monitor");
376
377 s->monitor_source = pa_source_new(core, &source_data,
378 ((flags & PA_SINK_LATENCY) ? PA_SOURCE_LATENCY : 0) |
379 ((flags & PA_SINK_DYNAMIC_LATENCY) ? PA_SOURCE_DYNAMIC_LATENCY : 0));
380
381 pa_source_new_data_done(&source_data);
382
383 if (!s->monitor_source) {
384 pa_sink_unlink(s);
385 pa_sink_unref(s);
386 return NULL;
387 }
388
389 s->monitor_source->monitor_of = s;
390
391 pa_source_set_latency_range(s->monitor_source, s->thread_info.min_latency, s->thread_info.max_latency);
392 pa_source_set_fixed_latency(s->monitor_source, s->thread_info.fixed_latency);
393 pa_source_set_max_rewind(s->monitor_source, s->thread_info.max_rewind);
394
395 return s;
396 }
397
398 /* Called from main context */
399 static int sink_set_state(pa_sink *s, pa_sink_state_t state) {
400 int ret;
401 pa_bool_t suspend_change;
402 pa_sink_state_t original_state;
403
404 pa_assert(s);
405 pa_assert_ctl_context();
406
407 if (s->state == state)
408 return 0;
409
410 original_state = s->state;
411
412 suspend_change =
413 (original_state == PA_SINK_SUSPENDED && PA_SINK_IS_OPENED(state)) ||
414 (PA_SINK_IS_OPENED(original_state) && state == PA_SINK_SUSPENDED);
415
416 if (s->set_state)
417 if ((ret = s->set_state(s, state)) < 0)
418 return ret;
419
420 if (s->asyncmsgq)
421 if ((ret = pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_STATE, PA_UINT_TO_PTR(state), 0, NULL)) < 0) {
422
423 if (s->set_state)
424 s->set_state(s, original_state);
425
426 return ret;
427 }
428
429 s->state = state;
430
431 if (state != PA_SINK_UNLINKED) { /* if we enter UNLINKED state pa_sink_unlink() will fire the appropriate events */
432 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED], s);
433 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
434 }
435
436 if (suspend_change) {
437 pa_sink_input *i;
438 uint32_t idx;
439
440 /* We're suspending or resuming, tell everyone about it */
441
442 PA_IDXSET_FOREACH(i, s->inputs, idx)
443 if (s->state == PA_SINK_SUSPENDED &&
444 (i->flags & PA_SINK_INPUT_KILL_ON_SUSPEND))
445 pa_sink_input_kill(i);
446 else if (i->suspend)
447 i->suspend(i, state == PA_SINK_SUSPENDED);
448
449 if (s->monitor_source)
450 pa_source_sync_suspend(s->monitor_source);
451 }
452
453 return 0;
454 }
455
456 void pa_sink_set_get_volume_callback(pa_sink *s, pa_sink_cb_t cb) {
457 pa_assert(s);
458
459 s->get_volume = cb;
460 }
461
462 void pa_sink_set_set_volume_callback(pa_sink *s, pa_sink_cb_t cb) {
463 pa_sink_flags_t flags;
464
465 pa_assert(s);
466 pa_assert(!s->write_volume || cb);
467
468 s->set_volume = cb;
469
470 /* Save the current flags so we can tell if they've changed */
471 flags = s->flags;
472
473 if (cb) {
474 /* The sink implementor is responsible for setting decibel volume support */
475 s->flags |= PA_SINK_HW_VOLUME_CTRL;
476 } else {
477 s->flags &= ~PA_SINK_HW_VOLUME_CTRL;
478 /* See note below in pa_sink_put() about volume sharing and decibel volumes */
479 pa_sink_enable_decibel_volume(s, !(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
480 }
481
482 /* If the flags have changed after init, let any clients know via a change event */
483 if (s->state != PA_SINK_INIT && flags != s->flags)
484 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
485 }
486
487 void pa_sink_set_write_volume_callback(pa_sink *s, pa_sink_cb_t cb) {
488 pa_sink_flags_t flags;
489
490 pa_assert(s);
491 pa_assert(!cb || s->set_volume);
492
493 s->write_volume = cb;
494
495 /* Save the current flags so we can tell if they've changed */
496 flags = s->flags;
497
498 if (cb)
499 s->flags |= PA_SINK_DEFERRED_VOLUME;
500 else
501 s->flags &= ~PA_SINK_DEFERRED_VOLUME;
502
503 /* If the flags have changed after init, let any clients know via a change event */
504 if (s->state != PA_SINK_INIT && flags != s->flags)
505 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
506 }
507
508 void pa_sink_set_get_mute_callback(pa_sink *s, pa_sink_cb_t cb) {
509 pa_assert(s);
510
511 s->get_mute = cb;
512 }
513
514 void pa_sink_set_set_mute_callback(pa_sink *s, pa_sink_cb_t cb) {
515 pa_sink_flags_t flags;
516
517 pa_assert(s);
518
519 s->set_mute = cb;
520
521 /* Save the current flags so we can tell if they've changed */
522 flags = s->flags;
523
524 if (cb)
525 s->flags |= PA_SINK_HW_MUTE_CTRL;
526 else
527 s->flags &= ~PA_SINK_HW_MUTE_CTRL;
528
529 /* If the flags have changed after init, let any clients know via a change event */
530 if (s->state != PA_SINK_INIT && flags != s->flags)
531 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
532 }
533
534 static void enable_flat_volume(pa_sink *s, pa_bool_t enable) {
535 pa_sink_flags_t flags;
536
537 pa_assert(s);
538
539 /* Always follow the overall user preference here */
540 enable = enable && s->core->flat_volumes;
541
542 /* Save the current flags so we can tell if they've changed */
543 flags = s->flags;
544
545 if (enable)
546 s->flags |= PA_SINK_FLAT_VOLUME;
547 else
548 s->flags &= ~PA_SINK_FLAT_VOLUME;
549
550 /* If the flags have changed after init, let any clients know via a change event */
551 if (s->state != PA_SINK_INIT && flags != s->flags)
552 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
553 }
554
555 void pa_sink_enable_decibel_volume(pa_sink *s, pa_bool_t enable) {
556 pa_sink_flags_t flags;
557
558 pa_assert(s);
559
560 /* Save the current flags so we can tell if they've changed */
561 flags = s->flags;
562
563 if (enable) {
564 s->flags |= PA_SINK_DECIBEL_VOLUME;
565 enable_flat_volume(s, TRUE);
566 } else {
567 s->flags &= ~PA_SINK_DECIBEL_VOLUME;
568 enable_flat_volume(s, FALSE);
569 }
570
571 /* If the flags have changed after init, let any clients know via a change event */
572 if (s->state != PA_SINK_INIT && flags != s->flags)
573 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
574 }
575
576 /* Called from main context */
577 void pa_sink_put(pa_sink* s) {
578 pa_sink_assert_ref(s);
579 pa_assert_ctl_context();
580
581 pa_assert(s->state == PA_SINK_INIT);
582 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER) || s->input_to_master);
583
584 /* The following fields must be initialized properly when calling _put() */
585 pa_assert(s->asyncmsgq);
586 pa_assert(s->thread_info.min_latency <= s->thread_info.max_latency);
587
588 /* Generally, flags should be initialized via pa_sink_new(). As a
589 * special exception we allow some volume related flags to be set
590 * between _new() and _put() by the callback setter functions above.
591 *
592 * Thus we implement a couple safeguards here which ensure the above
593 * setters were used (or at least the implementor made manual changes
594 * in a compatible way).
595 *
596 * Note: All of these flags set here can change over the life time
597 * of the sink. */
598 pa_assert(!(s->flags & PA_SINK_HW_VOLUME_CTRL) || s->set_volume);
599 pa_assert(!(s->flags & PA_SINK_DEFERRED_VOLUME) || s->write_volume);
600 pa_assert(!(s->flags & PA_SINK_HW_MUTE_CTRL) || s->set_mute);
601
602 /* XXX: Currently decibel volume is disabled for all sinks that use volume
603 * sharing. When the master sink supports decibel volume, it would be good
604 * to have the flag also in the filter sink, but currently we don't do that
605 * so that the flags of the filter sink never change when it's moved from
606 * a master sink to another. One solution for this problem would be to
607 * remove user-visible volume altogether from filter sinks when volume
608 * sharing is used, but the current approach was easier to implement... */
609 /* We always support decibel volumes in software, otherwise we leave it to
610 * the sink implementor to set this flag as needed.
611 *
612 * Note: This flag can also change over the life time of the sink. */
613 if (!(s->flags & PA_SINK_HW_VOLUME_CTRL) && !(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
614 pa_sink_enable_decibel_volume(s, TRUE);
615
616 /* If the sink implementor support DB volumes by itself, we should always
617 * try and enable flat volumes too */
618 if ((s->flags & PA_SINK_DECIBEL_VOLUME))
619 enable_flat_volume(s, TRUE);
620
621 if (s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER) {
622 pa_sink *root_sink = pa_sink_get_master(s);
623
624 pa_assert(root_sink);
625
626 s->reference_volume = root_sink->reference_volume;
627 pa_cvolume_remap(&s->reference_volume, &root_sink->channel_map, &s->channel_map);
628
629 s->real_volume = root_sink->real_volume;
630 pa_cvolume_remap(&s->real_volume, &root_sink->channel_map, &s->channel_map);
631 } else
632 /* We assume that if the sink implementor changed the default
633 * volume he did so in real_volume, because that is the usual
634 * place where he is supposed to place his changes. */
635 s->reference_volume = s->real_volume;
636
637 s->thread_info.soft_volume = s->soft_volume;
638 s->thread_info.soft_muted = s->muted;
639 pa_sw_cvolume_multiply(&s->thread_info.current_hw_volume, &s->soft_volume, &s->real_volume);
640
641 pa_assert((s->flags & PA_SINK_HW_VOLUME_CTRL)
642 || (s->base_volume == PA_VOLUME_NORM
643 && ((s->flags & PA_SINK_DECIBEL_VOLUME || (s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)))));
644 pa_assert(!(s->flags & PA_SINK_DECIBEL_VOLUME) || s->n_volume_steps == PA_VOLUME_NORM+1);
645 pa_assert(!(s->flags & PA_SINK_DYNAMIC_LATENCY) == (s->thread_info.fixed_latency != 0));
646 pa_assert(!(s->flags & PA_SINK_LATENCY) == !(s->monitor_source->flags & PA_SOURCE_LATENCY));
647 pa_assert(!(s->flags & PA_SINK_DYNAMIC_LATENCY) == !(s->monitor_source->flags & PA_SOURCE_DYNAMIC_LATENCY));
648
649 pa_assert(s->monitor_source->thread_info.fixed_latency == s->thread_info.fixed_latency);
650 pa_assert(s->monitor_source->thread_info.min_latency == s->thread_info.min_latency);
651 pa_assert(s->monitor_source->thread_info.max_latency == s->thread_info.max_latency);
652
653 if (s->suspend_cause)
654 pa_assert_se(sink_set_state(s, PA_SINK_SUSPENDED) == 0);
655 else
656 pa_assert_se(sink_set_state(s, PA_SINK_IDLE) == 0);
657
658 pa_source_put(s->monitor_source);
659
660 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_NEW, s->index);
661 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PUT], s);
662 }
663
664 /* Called from main context */
665 void pa_sink_unlink(pa_sink* s) {
666 pa_bool_t linked;
667 pa_sink_input *i, *j = NULL;
668
669 pa_assert(s);
670 pa_assert_ctl_context();
671
672 /* Please note that pa_sink_unlink() does more than simply
673 * reversing pa_sink_put(). It also undoes the registrations
674 * already done in pa_sink_new()! */
675
676 /* All operations here shall be idempotent, i.e. pa_sink_unlink()
677 * may be called multiple times on the same sink without bad
678 * effects. */
679
680 linked = PA_SINK_IS_LINKED(s->state);
681
682 if (linked)
683 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_UNLINK], s);
684
685 if (s->state != PA_SINK_UNLINKED)
686 pa_namereg_unregister(s->core, s->name);
687 pa_idxset_remove_by_data(s->core->sinks, s, NULL);
688
689 if (s->card)
690 pa_idxset_remove_by_data(s->card->sinks, s, NULL);
691
692 while ((i = pa_idxset_first(s->inputs, NULL))) {
693 pa_assert(i != j);
694 pa_sink_input_kill(i);
695 j = i;
696 }
697
698 if (linked)
699 sink_set_state(s, PA_SINK_UNLINKED);
700 else
701 s->state = PA_SINK_UNLINKED;
702
703 reset_callbacks(s);
704
705 if (s->monitor_source)
706 pa_source_unlink(s->monitor_source);
707
708 if (linked) {
709 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_REMOVE, s->index);
710 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_UNLINK_POST], s);
711 }
712 }
713
714 /* Called from main context */
715 static void sink_free(pa_object *o) {
716 pa_sink *s = PA_SINK(o);
717 pa_sink_input *i;
718
719 pa_assert(s);
720 pa_assert_ctl_context();
721 pa_assert(pa_sink_refcnt(s) == 0);
722
723 if (PA_SINK_IS_LINKED(s->state))
724 pa_sink_unlink(s);
725
726 pa_log_info("Freeing sink %u \"%s\"", s->index, s->name);
727
728 if (s->monitor_source) {
729 pa_source_unref(s->monitor_source);
730 s->monitor_source = NULL;
731 }
732
733 pa_idxset_free(s->inputs, NULL, NULL);
734
735 while ((i = pa_hashmap_steal_first(s->thread_info.inputs)))
736 pa_sink_input_unref(i);
737
738 pa_hashmap_free(s->thread_info.inputs, NULL, NULL);
739
740 if (s->silence.memblock)
741 pa_memblock_unref(s->silence.memblock);
742
743 pa_xfree(s->name);
744 pa_xfree(s->driver);
745
746 if (s->proplist)
747 pa_proplist_free(s->proplist);
748
749 if (s->ports)
750 pa_device_port_hashmap_free(s->ports);
751
752 pa_xfree(s);
753 }
754
755 /* Called from main context, and not while the IO thread is active, please */
756 void pa_sink_set_asyncmsgq(pa_sink *s, pa_asyncmsgq *q) {
757 pa_sink_assert_ref(s);
758 pa_assert_ctl_context();
759
760 s->asyncmsgq = q;
761
762 if (s->monitor_source)
763 pa_source_set_asyncmsgq(s->monitor_source, q);
764 }
765
766 /* Called from main context, and not while the IO thread is active, please */
767 void pa_sink_update_flags(pa_sink *s, pa_sink_flags_t mask, pa_sink_flags_t value) {
768 pa_sink_assert_ref(s);
769 pa_assert_ctl_context();
770
771 if (mask == 0)
772 return;
773
774 /* For now, allow only a minimal set of flags to be changed. */
775 pa_assert((mask & ~(PA_SINK_DYNAMIC_LATENCY|PA_SINK_LATENCY)) == 0);
776
777 s->flags = (s->flags & ~mask) | (value & mask);
778
779 pa_source_update_flags(s->monitor_source,
780 ((mask & PA_SINK_LATENCY) ? PA_SOURCE_LATENCY : 0) |
781 ((mask & PA_SINK_DYNAMIC_LATENCY) ? PA_SOURCE_DYNAMIC_LATENCY : 0),
782 ((value & PA_SINK_LATENCY) ? PA_SOURCE_LATENCY : 0) |
783 ((value & PA_SINK_DYNAMIC_LATENCY) ? PA_SINK_DYNAMIC_LATENCY : 0));
784 }
785
786 /* Called from IO context, or before _put() from main context */
787 void pa_sink_set_rtpoll(pa_sink *s, pa_rtpoll *p) {
788 pa_sink_assert_ref(s);
789 pa_sink_assert_io_context(s);
790
791 s->thread_info.rtpoll = p;
792
793 if (s->monitor_source)
794 pa_source_set_rtpoll(s->monitor_source, p);
795 }
796
797 /* Called from main context */
798 int pa_sink_update_status(pa_sink*s) {
799 pa_sink_assert_ref(s);
800 pa_assert_ctl_context();
801 pa_assert(PA_SINK_IS_LINKED(s->state));
802
803 if (s->state == PA_SINK_SUSPENDED)
804 return 0;
805
806 return sink_set_state(s, pa_sink_used_by(s) ? PA_SINK_RUNNING : PA_SINK_IDLE);
807 }
808
809 /* Called from any context - must be threadsafe */
810 void pa_sink_set_mixer_dirty(pa_sink *s, pa_bool_t is_dirty)
811 {
812 pa_atomic_store(&s->mixer_dirty, is_dirty ? 1 : 0);
813 }
814
815 /* Called from main context */
816 int pa_sink_suspend(pa_sink *s, pa_bool_t suspend, pa_suspend_cause_t cause) {
817 pa_sink_assert_ref(s);
818 pa_assert_ctl_context();
819 pa_assert(PA_SINK_IS_LINKED(s->state));
820 pa_assert(cause != 0);
821
822 if (suspend) {
823 s->suspend_cause |= cause;
824 s->monitor_source->suspend_cause |= cause;
825 } else {
826 s->suspend_cause &= ~cause;
827 s->monitor_source->suspend_cause &= ~cause;
828 }
829
830 if (!(s->suspend_cause & PA_SUSPEND_SESSION) && (pa_atomic_load(&s->mixer_dirty) != 0)) {
831 /* This might look racy but isn't: If somebody sets mixer_dirty exactly here,
832 it'll be handled just fine. */
833 pa_sink_set_mixer_dirty(s, FALSE);
834 pa_log_debug("Mixer is now accessible. Updating alsa mixer settings.");
835 if (s->active_port && s->set_port) {
836 if (s->flags & PA_SINK_DEFERRED_VOLUME) {
837 struct sink_message_set_port msg = { .port = s->active_port, .ret = 0 };
838 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_PORT, &msg, 0, NULL) == 0);
839 }
840 else
841 s->set_port(s, s->active_port);
842 }
843 else {
844 if (s->set_mute)
845 s->set_mute(s);
846 if (s->set_volume)
847 s->set_volume(s);
848 }
849 }
850
851 if ((pa_sink_get_state(s) == PA_SINK_SUSPENDED) == !!s->suspend_cause)
852 return 0;
853
854 pa_log_debug("Suspend cause of sink %s is 0x%04x, %s", s->name, s->suspend_cause, s->suspend_cause ? "suspending" : "resuming");
855
856 if (s->suspend_cause)
857 return sink_set_state(s, PA_SINK_SUSPENDED);
858 else
859 return sink_set_state(s, pa_sink_used_by(s) ? PA_SINK_RUNNING : PA_SINK_IDLE);
860 }
861
862 /* Called from main context */
863 pa_queue *pa_sink_move_all_start(pa_sink *s, pa_queue *q) {
864 pa_sink_input *i, *n;
865 uint32_t idx;
866
867 pa_sink_assert_ref(s);
868 pa_assert_ctl_context();
869 pa_assert(PA_SINK_IS_LINKED(s->state));
870
871 if (!q)
872 q = pa_queue_new();
873
874 for (i = PA_SINK_INPUT(pa_idxset_first(s->inputs, &idx)); i; i = n) {
875 n = PA_SINK_INPUT(pa_idxset_next(s->inputs, &idx));
876
877 pa_sink_input_ref(i);
878
879 if (pa_sink_input_start_move(i) >= 0)
880 pa_queue_push(q, i);
881 else
882 pa_sink_input_unref(i);
883 }
884
885 return q;
886 }
887
888 /* Called from main context */
889 void pa_sink_move_all_finish(pa_sink *s, pa_queue *q, pa_bool_t save) {
890 pa_sink_input *i;
891
892 pa_sink_assert_ref(s);
893 pa_assert_ctl_context();
894 pa_assert(PA_SINK_IS_LINKED(s->state));
895 pa_assert(q);
896
897 while ((i = PA_SINK_INPUT(pa_queue_pop(q)))) {
898 if (pa_sink_input_finish_move(i, s, save) < 0)
899 pa_sink_input_fail_move(i);
900
901 pa_sink_input_unref(i);
902 }
903
904 pa_queue_free(q, NULL);
905 }
906
907 /* Called from main context */
908 void pa_sink_move_all_fail(pa_queue *q) {
909 pa_sink_input *i;
910
911 pa_assert_ctl_context();
912 pa_assert(q);
913
914 while ((i = PA_SINK_INPUT(pa_queue_pop(q)))) {
915 pa_sink_input_fail_move(i);
916 pa_sink_input_unref(i);
917 }
918
919 pa_queue_free(q, NULL);
920 }
921
922 /* Called from IO thread context */
923 void pa_sink_process_rewind(pa_sink *s, size_t nbytes) {
924 pa_sink_input *i;
925 void *state = NULL;
926
927 pa_sink_assert_ref(s);
928 pa_sink_assert_io_context(s);
929 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
930
931 /* If nobody requested this and this is actually no real rewind
932 * then we can short cut this. Please note that this means that
933 * not all rewind requests triggered upstream will always be
934 * translated in actual requests! */
935 if (!s->thread_info.rewind_requested && nbytes <= 0)
936 return;
937
938 s->thread_info.rewind_nbytes = 0;
939 s->thread_info.rewind_requested = FALSE;
940
941 if (nbytes > 0) {
942 pa_log_debug("Processing rewind...");
943 if (s->flags & PA_SINK_DEFERRED_VOLUME)
944 pa_sink_volume_change_rewind(s, nbytes);
945 }
946
947 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
948 pa_sink_input_assert_ref(i);
949 pa_sink_input_process_rewind(i, nbytes);
950 }
951
952 if (nbytes > 0) {
953 if (s->monitor_source && PA_SOURCE_IS_LINKED(s->monitor_source->thread_info.state))
954 pa_source_process_rewind(s->monitor_source, nbytes);
955 }
956 }
957
958 /* Called from IO thread context */
959 static unsigned fill_mix_info(pa_sink *s, size_t *length, pa_mix_info *info, unsigned maxinfo) {
960 pa_sink_input *i;
961 unsigned n = 0;
962 void *state = NULL;
963 size_t mixlength = *length;
964
965 pa_sink_assert_ref(s);
966 pa_sink_assert_io_context(s);
967 pa_assert(info);
968
969 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)) && maxinfo > 0) {
970 pa_sink_input_assert_ref(i);
971
972 pa_sink_input_peek(i, *length, &info->chunk, &info->volume);
973
974 if (mixlength == 0 || info->chunk.length < mixlength)
975 mixlength = info->chunk.length;
976
977 if (pa_memblock_is_silence(info->chunk.memblock)) {
978 pa_memblock_unref(info->chunk.memblock);
979 continue;
980 }
981
982 info->userdata = pa_sink_input_ref(i);
983
984 pa_assert(info->chunk.memblock);
985 pa_assert(info->chunk.length > 0);
986
987 info++;
988 n++;
989 maxinfo--;
990 }
991
992 if (mixlength > 0)
993 *length = mixlength;
994
995 return n;
996 }
997
998 /* Called from IO thread context */
999 static void inputs_drop(pa_sink *s, pa_mix_info *info, unsigned n, pa_memchunk *result) {
1000 pa_sink_input *i;
1001 void *state;
1002 unsigned p = 0;
1003 unsigned n_unreffed = 0;
1004
1005 pa_sink_assert_ref(s);
1006 pa_sink_assert_io_context(s);
1007 pa_assert(result);
1008 pa_assert(result->memblock);
1009 pa_assert(result->length > 0);
1010
1011 /* We optimize for the case where the order of the inputs has not changed */
1012
1013 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
1014 unsigned j;
1015 pa_mix_info* m = NULL;
1016
1017 pa_sink_input_assert_ref(i);
1018
1019 /* Let's try to find the matching entry info the pa_mix_info array */
1020 for (j = 0; j < n; j ++) {
1021
1022 if (info[p].userdata == i) {
1023 m = info + p;
1024 break;
1025 }
1026
1027 p++;
1028 if (p >= n)
1029 p = 0;
1030 }
1031
1032 /* Drop read data */
1033 pa_sink_input_drop(i, result->length);
1034
1035 if (s->monitor_source && PA_SOURCE_IS_LINKED(s->monitor_source->thread_info.state)) {
1036
1037 if (pa_hashmap_size(i->thread_info.direct_outputs) > 0) {
1038 void *ostate = NULL;
1039 pa_source_output *o;
1040 pa_memchunk c;
1041
1042 if (m && m->chunk.memblock) {
1043 c = m->chunk;
1044 pa_memblock_ref(c.memblock);
1045 pa_assert(result->length <= c.length);
1046 c.length = result->length;
1047
1048 pa_memchunk_make_writable(&c, 0);
1049 pa_volume_memchunk(&c, &s->sample_spec, &m->volume);
1050 } else {
1051 c = s->silence;
1052 pa_memblock_ref(c.memblock);
1053 pa_assert(result->length <= c.length);
1054 c.length = result->length;
1055 }
1056
1057 while ((o = pa_hashmap_iterate(i->thread_info.direct_outputs, &ostate, NULL))) {
1058 pa_source_output_assert_ref(o);
1059 pa_assert(o->direct_on_input == i);
1060 pa_source_post_direct(s->monitor_source, o, &c);
1061 }
1062
1063 pa_memblock_unref(c.memblock);
1064 }
1065 }
1066
1067 if (m) {
1068 if (m->chunk.memblock)
1069 pa_memblock_unref(m->chunk.memblock);
1070 pa_memchunk_reset(&m->chunk);
1071
1072 pa_sink_input_unref(m->userdata);
1073 m->userdata = NULL;
1074
1075 n_unreffed += 1;
1076 }
1077 }
1078
1079 /* Now drop references to entries that are included in the
1080 * pa_mix_info array but don't exist anymore */
1081
1082 if (n_unreffed < n) {
1083 for (; n > 0; info++, n--) {
1084 if (info->userdata)
1085 pa_sink_input_unref(info->userdata);
1086 if (info->chunk.memblock)
1087 pa_memblock_unref(info->chunk.memblock);
1088 }
1089 }
1090
1091 if (s->monitor_source && PA_SOURCE_IS_LINKED(s->monitor_source->thread_info.state))
1092 pa_source_post(s->monitor_source, result);
1093 }
1094
1095 /* Called from IO thread context */
1096 void pa_sink_render(pa_sink*s, size_t length, pa_memchunk *result) {
1097 pa_mix_info info[MAX_MIX_CHANNELS];
1098 unsigned n;
1099 size_t block_size_max;
1100
1101 pa_sink_assert_ref(s);
1102 pa_sink_assert_io_context(s);
1103 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1104 pa_assert(pa_frame_aligned(length, &s->sample_spec));
1105 pa_assert(result);
1106
1107 pa_assert(!s->thread_info.rewind_requested);
1108 pa_assert(s->thread_info.rewind_nbytes == 0);
1109
1110 if (s->thread_info.state == PA_SINK_SUSPENDED) {
1111 result->memblock = pa_memblock_ref(s->silence.memblock);
1112 result->index = s->silence.index;
1113 result->length = PA_MIN(s->silence.length, length);
1114 return;
1115 }
1116
1117 pa_sink_ref(s);
1118
1119 if (length <= 0)
1120 length = pa_frame_align(MIX_BUFFER_LENGTH, &s->sample_spec);
1121
1122 block_size_max = pa_mempool_block_size_max(s->core->mempool);
1123 if (length > block_size_max)
1124 length = pa_frame_align(block_size_max, &s->sample_spec);
1125
1126 pa_assert(length > 0);
1127
1128 n = fill_mix_info(s, &length, info, MAX_MIX_CHANNELS);
1129
1130 if (n == 0) {
1131
1132 *result = s->silence;
1133 pa_memblock_ref(result->memblock);
1134
1135 if (result->length > length)
1136 result->length = length;
1137
1138 } else if (n == 1) {
1139 pa_cvolume volume;
1140
1141 *result = info[0].chunk;
1142 pa_memblock_ref(result->memblock);
1143
1144 if (result->length > length)
1145 result->length = length;
1146
1147 pa_sw_cvolume_multiply(&volume, &s->thread_info.soft_volume, &info[0].volume);
1148
1149 if (s->thread_info.soft_muted || pa_cvolume_is_muted(&volume)) {
1150 pa_memblock_unref(result->memblock);
1151 pa_silence_memchunk_get(&s->core->silence_cache,
1152 s->core->mempool,
1153 result,
1154 &s->sample_spec,
1155 result->length);
1156 } else if (!pa_cvolume_is_norm(&volume)) {
1157 pa_memchunk_make_writable(result, 0);
1158 pa_volume_memchunk(result, &s->sample_spec, &volume);
1159 }
1160 } else {
1161 void *ptr;
1162 result->memblock = pa_memblock_new(s->core->mempool, length);
1163
1164 ptr = pa_memblock_acquire(result->memblock);
1165 result->length = pa_mix(info, n,
1166 ptr, length,
1167 &s->sample_spec,
1168 &s->thread_info.soft_volume,
1169 s->thread_info.soft_muted);
1170 pa_memblock_release(result->memblock);
1171
1172 result->index = 0;
1173 }
1174
1175 inputs_drop(s, info, n, result);
1176
1177 pa_sink_unref(s);
1178 }
1179
1180 /* Called from IO thread context */
1181 void pa_sink_render_into(pa_sink*s, pa_memchunk *target) {
1182 pa_mix_info info[MAX_MIX_CHANNELS];
1183 unsigned n;
1184 size_t length, block_size_max;
1185
1186 pa_sink_assert_ref(s);
1187 pa_sink_assert_io_context(s);
1188 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1189 pa_assert(target);
1190 pa_assert(target->memblock);
1191 pa_assert(target->length > 0);
1192 pa_assert(pa_frame_aligned(target->length, &s->sample_spec));
1193
1194 pa_assert(!s->thread_info.rewind_requested);
1195 pa_assert(s->thread_info.rewind_nbytes == 0);
1196
1197 if (s->thread_info.state == PA_SINK_SUSPENDED) {
1198 pa_silence_memchunk(target, &s->sample_spec);
1199 return;
1200 }
1201
1202 pa_sink_ref(s);
1203
1204 length = target->length;
1205 block_size_max = pa_mempool_block_size_max(s->core->mempool);
1206 if (length > block_size_max)
1207 length = pa_frame_align(block_size_max, &s->sample_spec);
1208
1209 pa_assert(length > 0);
1210
1211 n = fill_mix_info(s, &length, info, MAX_MIX_CHANNELS);
1212
1213 if (n == 0) {
1214 if (target->length > length)
1215 target->length = length;
1216
1217 pa_silence_memchunk(target, &s->sample_spec);
1218 } else if (n == 1) {
1219 pa_cvolume volume;
1220
1221 if (target->length > length)
1222 target->length = length;
1223
1224 pa_sw_cvolume_multiply(&volume, &s->thread_info.soft_volume, &info[0].volume);
1225
1226 if (s->thread_info.soft_muted || pa_cvolume_is_muted(&volume))
1227 pa_silence_memchunk(target, &s->sample_spec);
1228 else {
1229 pa_memchunk vchunk;
1230
1231 vchunk = info[0].chunk;
1232 pa_memblock_ref(vchunk.memblock);
1233
1234 if (vchunk.length > length)
1235 vchunk.length = length;
1236
1237 if (!pa_cvolume_is_norm(&volume)) {
1238 pa_memchunk_make_writable(&vchunk, 0);
1239 pa_volume_memchunk(&vchunk, &s->sample_spec, &volume);
1240 }
1241
1242 pa_memchunk_memcpy(target, &vchunk);
1243 pa_memblock_unref(vchunk.memblock);
1244 }
1245
1246 } else {
1247 void *ptr;
1248
1249 ptr = pa_memblock_acquire(target->memblock);
1250
1251 target->length = pa_mix(info, n,
1252 (uint8_t*) ptr + target->index, length,
1253 &s->sample_spec,
1254 &s->thread_info.soft_volume,
1255 s->thread_info.soft_muted);
1256
1257 pa_memblock_release(target->memblock);
1258 }
1259
1260 inputs_drop(s, info, n, target);
1261
1262 pa_sink_unref(s);
1263 }
1264
1265 /* Called from IO thread context */
1266 void pa_sink_render_into_full(pa_sink *s, pa_memchunk *target) {
1267 pa_memchunk chunk;
1268 size_t l, d;
1269
1270 pa_sink_assert_ref(s);
1271 pa_sink_assert_io_context(s);
1272 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1273 pa_assert(target);
1274 pa_assert(target->memblock);
1275 pa_assert(target->length > 0);
1276 pa_assert(pa_frame_aligned(target->length, &s->sample_spec));
1277
1278 pa_assert(!s->thread_info.rewind_requested);
1279 pa_assert(s->thread_info.rewind_nbytes == 0);
1280
1281 if (s->thread_info.state == PA_SINK_SUSPENDED) {
1282 pa_silence_memchunk(target, &s->sample_spec);
1283 return;
1284 }
1285
1286 pa_sink_ref(s);
1287
1288 l = target->length;
1289 d = 0;
1290 while (l > 0) {
1291 chunk = *target;
1292 chunk.index += d;
1293 chunk.length -= d;
1294
1295 pa_sink_render_into(s, &chunk);
1296
1297 d += chunk.length;
1298 l -= chunk.length;
1299 }
1300
1301 pa_sink_unref(s);
1302 }
1303
1304 /* Called from IO thread context */
1305 void pa_sink_render_full(pa_sink *s, size_t length, pa_memchunk *result) {
1306 pa_sink_assert_ref(s);
1307 pa_sink_assert_io_context(s);
1308 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1309 pa_assert(length > 0);
1310 pa_assert(pa_frame_aligned(length, &s->sample_spec));
1311 pa_assert(result);
1312
1313 pa_assert(!s->thread_info.rewind_requested);
1314 pa_assert(s->thread_info.rewind_nbytes == 0);
1315
1316 pa_sink_ref(s);
1317
1318 pa_sink_render(s, length, result);
1319
1320 if (result->length < length) {
1321 pa_memchunk chunk;
1322
1323 pa_memchunk_make_writable(result, length);
1324
1325 chunk.memblock = result->memblock;
1326 chunk.index = result->index + result->length;
1327 chunk.length = length - result->length;
1328
1329 pa_sink_render_into_full(s, &chunk);
1330
1331 result->length = length;
1332 }
1333
1334 pa_sink_unref(s);
1335 }
1336
1337 /* Called from main thread */
1338 pa_bool_t pa_sink_update_rate(pa_sink *s, uint32_t rate, pa_bool_t passthrough)
1339 {
1340 if (s->update_rate) {
1341 uint32_t desired_rate = rate;
1342 uint32_t default_rate = s->default_sample_rate;
1343 uint32_t alternate_rate = s->alternate_sample_rate;
1344 uint32_t idx;
1345 pa_sink_input *i;
1346 pa_bool_t use_alternate = FALSE;
1347
1348 if (PA_UNLIKELY(default_rate == alternate_rate)) {
1349 pa_log_warn("Default and alternate sample rates are the same.");
1350 return FALSE;
1351 }
1352
1353 if (PA_SINK_IS_RUNNING(s->state)) {
1354 pa_log_info("Cannot update rate, SINK_IS_RUNNING, will keep using %u Hz",
1355 s->sample_spec.rate);
1356 return FALSE;
1357 }
1358
1359 if (s->monitor_source) {
1360 if (PA_SOURCE_IS_RUNNING(s->monitor_source->state) == TRUE) {
1361 pa_log_info("Cannot update rate, monitor source is RUNNING");
1362 return FALSE;
1363 }
1364 }
1365
1366 if (PA_UNLIKELY (desired_rate < 8000 ||
1367 desired_rate > PA_RATE_MAX))
1368 return FALSE;
1369
1370 if (!passthrough) {
1371 pa_assert(default_rate % 4000 || default_rate % 11025);
1372 pa_assert(alternate_rate % 4000 || alternate_rate % 11025);
1373
1374 if (default_rate % 4000) {
1375 /* default is a 11025 multiple */
1376 if ((alternate_rate % 4000 == 0) && (desired_rate % 4000 == 0))
1377 use_alternate=TRUE;
1378 } else {
1379 /* default is 4000 multiple */
1380 if ((alternate_rate % 11025 == 0) && (desired_rate % 11025 == 0))
1381 use_alternate=TRUE;
1382 }
1383
1384 if (use_alternate)
1385 desired_rate = alternate_rate;
1386 else
1387 desired_rate = default_rate;
1388 } else {
1389 desired_rate = rate; /* use stream sampling rate, discard default/alternate settings */
1390 }
1391
1392 if (desired_rate == s->sample_spec.rate)
1393 return FALSE;
1394
1395 if (!passthrough && pa_sink_used_by(s) > 0)
1396 return FALSE;
1397
1398 pa_log_debug("Suspending sink %s due to changing the sample rate.", s->name);
1399 pa_sink_suspend(s, TRUE, PA_SUSPEND_IDLE); /* needed before rate update, will be resumed automatically */
1400
1401 if (s->update_rate(s, desired_rate) == TRUE) {
1402 /* update monitor source as well */
1403 if (s->monitor_source && !passthrough)
1404 pa_source_update_rate(s->monitor_source, desired_rate, FALSE);
1405 pa_log_info("Changed sampling rate successfully");
1406
1407 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1408 if (i->state == PA_SINK_INPUT_CORKED)
1409 pa_sink_input_update_rate(i);
1410 }
1411
1412 return TRUE;
1413 }
1414 }
1415 return FALSE;
1416 }
1417
1418 /* Called from main thread */
1419 pa_usec_t pa_sink_get_latency(pa_sink *s) {
1420 pa_usec_t usec = 0;
1421
1422 pa_sink_assert_ref(s);
1423 pa_assert_ctl_context();
1424 pa_assert(PA_SINK_IS_LINKED(s->state));
1425
1426 /* The returned value is supposed to be in the time domain of the sound card! */
1427
1428 if (s->state == PA_SINK_SUSPENDED)
1429 return 0;
1430
1431 if (!(s->flags & PA_SINK_LATENCY))
1432 return 0;
1433
1434 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY, &usec, 0, NULL) == 0);
1435
1436 /* usec is unsigned, so check that the offset can be added to usec without
1437 * underflowing. */
1438 if (-s->latency_offset <= (int64_t) usec)
1439 usec += s->latency_offset;
1440 else
1441 usec = 0;
1442
1443 return usec;
1444 }
1445
1446 /* Called from IO thread */
1447 pa_usec_t pa_sink_get_latency_within_thread(pa_sink *s) {
1448 pa_usec_t usec = 0;
1449 pa_msgobject *o;
1450
1451 pa_sink_assert_ref(s);
1452 pa_sink_assert_io_context(s);
1453 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1454
1455 /* The returned value is supposed to be in the time domain of the sound card! */
1456
1457 if (s->thread_info.state == PA_SINK_SUSPENDED)
1458 return 0;
1459
1460 if (!(s->flags & PA_SINK_LATENCY))
1461 return 0;
1462
1463 o = PA_MSGOBJECT(s);
1464
1465 /* FIXME: We probably should make this a proper vtable callback instead of going through process_msg() */
1466
1467 if (o->process_msg(o, PA_SINK_MESSAGE_GET_LATENCY, &usec, 0, NULL) < 0)
1468 return -1;
1469
1470 /* usec is unsigned, so check that the offset can be added to usec without
1471 * underflowing. */
1472 if (-s->thread_info.latency_offset <= (int64_t) usec)
1473 usec += s->thread_info.latency_offset;
1474 else
1475 usec = 0;
1476
1477 return usec;
1478 }
1479
1480 /* Called from the main thread (and also from the IO thread while the main
1481 * thread is waiting).
1482 *
1483 * When a sink uses volume sharing, it never has the PA_SINK_FLAT_VOLUME flag
1484 * set. Instead, flat volume mode is detected by checking whether the root sink
1485 * has the flag set. */
1486 pa_bool_t pa_sink_flat_volume_enabled(pa_sink *s) {
1487 pa_sink_assert_ref(s);
1488
1489 s = pa_sink_get_master(s);
1490
1491 if (PA_LIKELY(s))
1492 return (s->flags & PA_SINK_FLAT_VOLUME);
1493 else
1494 return FALSE;
1495 }
1496
1497 /* Called from the main thread (and also from the IO thread while the main
1498 * thread is waiting). */
1499 pa_sink *pa_sink_get_master(pa_sink *s) {
1500 pa_sink_assert_ref(s);
1501
1502 while (s && (s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1503 if (PA_UNLIKELY(!s->input_to_master))
1504 return NULL;
1505
1506 s = s->input_to_master->sink;
1507 }
1508
1509 return s;
1510 }
1511
1512 /* Called from main context */
1513 pa_bool_t pa_sink_is_passthrough(pa_sink *s) {
1514 pa_sink_input *alt_i;
1515 uint32_t idx;
1516
1517 pa_sink_assert_ref(s);
1518
1519 /* one and only one PASSTHROUGH input can possibly be connected */
1520 if (pa_idxset_size(s->inputs) == 1) {
1521 alt_i = pa_idxset_first(s->inputs, &idx);
1522
1523 if (pa_sink_input_is_passthrough(alt_i))
1524 return TRUE;
1525 }
1526
1527 return FALSE;
1528 }
1529
1530 /* Called from main context */
1531 void pa_sink_enter_passthrough(pa_sink *s) {
1532 pa_cvolume volume;
1533
1534 /* disable the monitor in passthrough mode */
1535 if (s->monitor_source) {
1536 pa_log_debug("Suspending monitor source %s, because the sink is entering the passthrough mode.", s->monitor_source->name);
1537 pa_source_suspend(s->monitor_source, TRUE, PA_SUSPEND_PASSTHROUGH);
1538 }
1539
1540 /* set the volume to NORM */
1541 s->saved_volume = *pa_sink_get_volume(s, TRUE);
1542 s->saved_save_volume = s->save_volume;
1543
1544 pa_cvolume_set(&volume, s->sample_spec.channels, PA_MIN(s->base_volume, PA_VOLUME_NORM));
1545 pa_sink_set_volume(s, &volume, TRUE, FALSE);
1546 }
1547
1548 /* Called from main context */
1549 void pa_sink_leave_passthrough(pa_sink *s) {
1550 /* Unsuspend monitor */
1551 if (s->monitor_source) {
1552 pa_log_debug("Resuming monitor source %s, because the sink is leaving the passthrough mode.", s->monitor_source->name);
1553 pa_source_suspend(s->monitor_source, FALSE, PA_SUSPEND_PASSTHROUGH);
1554 }
1555
1556 /* Restore sink volume to what it was before we entered passthrough mode */
1557 pa_sink_set_volume(s, &s->saved_volume, TRUE, s->saved_save_volume);
1558
1559 pa_cvolume_init(&s->saved_volume);
1560 s->saved_save_volume = FALSE;
1561 }
1562
1563 /* Called from main context. */
1564 static void compute_reference_ratio(pa_sink_input *i) {
1565 unsigned c = 0;
1566 pa_cvolume remapped;
1567
1568 pa_assert(i);
1569 pa_assert(pa_sink_flat_volume_enabled(i->sink));
1570
1571 /*
1572 * Calculates the reference ratio from the sink's reference
1573 * volume. This basically calculates:
1574 *
1575 * i->reference_ratio = i->volume / i->sink->reference_volume
1576 */
1577
1578 remapped = i->sink->reference_volume;
1579 pa_cvolume_remap(&remapped, &i->sink->channel_map, &i->channel_map);
1580
1581 i->reference_ratio.channels = i->sample_spec.channels;
1582
1583 for (c = 0; c < i->sample_spec.channels; c++) {
1584
1585 /* We don't update when the sink volume is 0 anyway */
1586 if (remapped.values[c] <= PA_VOLUME_MUTED)
1587 continue;
1588
1589 /* Don't update the reference ratio unless necessary */
1590 if (pa_sw_volume_multiply(
1591 i->reference_ratio.values[c],
1592 remapped.values[c]) == i->volume.values[c])
1593 continue;
1594
1595 i->reference_ratio.values[c] = pa_sw_volume_divide(
1596 i->volume.values[c],
1597 remapped.values[c]);
1598 }
1599 }
1600
1601 /* Called from main context. Only called for the root sink in volume sharing
1602 * cases, except for internal recursive calls. */
1603 static void compute_reference_ratios(pa_sink *s) {
1604 uint32_t idx;
1605 pa_sink_input *i;
1606
1607 pa_sink_assert_ref(s);
1608 pa_assert_ctl_context();
1609 pa_assert(PA_SINK_IS_LINKED(s->state));
1610 pa_assert(pa_sink_flat_volume_enabled(s));
1611
1612 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1613 compute_reference_ratio(i);
1614
1615 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1616 compute_reference_ratios(i->origin_sink);
1617 }
1618 }
1619
1620 /* Called from main context. Only called for the root sink in volume sharing
1621 * cases, except for internal recursive calls. */
1622 static void compute_real_ratios(pa_sink *s) {
1623 pa_sink_input *i;
1624 uint32_t idx;
1625
1626 pa_sink_assert_ref(s);
1627 pa_assert_ctl_context();
1628 pa_assert(PA_SINK_IS_LINKED(s->state));
1629 pa_assert(pa_sink_flat_volume_enabled(s));
1630
1631 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1632 unsigned c;
1633 pa_cvolume remapped;
1634
1635 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1636 /* The origin sink uses volume sharing, so this input's real ratio
1637 * is handled as a special case - the real ratio must be 0 dB, and
1638 * as a result i->soft_volume must equal i->volume_factor. */
1639 pa_cvolume_reset(&i->real_ratio, i->real_ratio.channels);
1640 i->soft_volume = i->volume_factor;
1641
1642 compute_real_ratios(i->origin_sink);
1643
1644 continue;
1645 }
1646
1647 /*
1648 * This basically calculates:
1649 *
1650 * i->real_ratio := i->volume / s->real_volume
1651 * i->soft_volume := i->real_ratio * i->volume_factor
1652 */
1653
1654 remapped = s->real_volume;
1655 pa_cvolume_remap(&remapped, &s->channel_map, &i->channel_map);
1656
1657 i->real_ratio.channels = i->sample_spec.channels;
1658 i->soft_volume.channels = i->sample_spec.channels;
1659
1660 for (c = 0; c < i->sample_spec.channels; c++) {
1661
1662 if (remapped.values[c] <= PA_VOLUME_MUTED) {
1663 /* We leave i->real_ratio untouched */
1664 i->soft_volume.values[c] = PA_VOLUME_MUTED;
1665 continue;
1666 }
1667
1668 /* Don't lose accuracy unless necessary */
1669 if (pa_sw_volume_multiply(
1670 i->real_ratio.values[c],
1671 remapped.values[c]) != i->volume.values[c])
1672
1673 i->real_ratio.values[c] = pa_sw_volume_divide(
1674 i->volume.values[c],
1675 remapped.values[c]);
1676
1677 i->soft_volume.values[c] = pa_sw_volume_multiply(
1678 i->real_ratio.values[c],
1679 i->volume_factor.values[c]);
1680 }
1681
1682 /* We don't copy the soft_volume to the thread_info data
1683 * here. That must be done by the caller */
1684 }
1685 }
1686
1687 static pa_cvolume *cvolume_remap_minimal_impact(
1688 pa_cvolume *v,
1689 const pa_cvolume *template,
1690 const pa_channel_map *from,
1691 const pa_channel_map *to) {
1692
1693 pa_cvolume t;
1694
1695 pa_assert(v);
1696 pa_assert(template);
1697 pa_assert(from);
1698 pa_assert(to);
1699 pa_assert(pa_cvolume_compatible_with_channel_map(v, from));
1700 pa_assert(pa_cvolume_compatible_with_channel_map(template, to));
1701
1702 /* Much like pa_cvolume_remap(), but tries to minimize impact when
1703 * mapping from sink input to sink volumes:
1704 *
1705 * If template is a possible remapping from v it is used instead
1706 * of remapping anew.
1707 *
1708 * If the channel maps don't match we set an all-channel volume on
1709 * the sink to ensure that changing a volume on one stream has no
1710 * effect that cannot be compensated for in another stream that
1711 * does not have the same channel map as the sink. */
1712
1713 if (pa_channel_map_equal(from, to))
1714 return v;
1715
1716 t = *template;
1717 if (pa_cvolume_equal(pa_cvolume_remap(&t, to, from), v)) {
1718 *v = *template;
1719 return v;
1720 }
1721
1722 pa_cvolume_set(v, to->channels, pa_cvolume_max(v));
1723 return v;
1724 }
1725
1726 /* Called from main thread. Only called for the root sink in volume sharing
1727 * cases, except for internal recursive calls. */
1728 static void get_maximum_input_volume(pa_sink *s, pa_cvolume *max_volume, const pa_channel_map *channel_map) {
1729 pa_sink_input *i;
1730 uint32_t idx;
1731
1732 pa_sink_assert_ref(s);
1733 pa_assert(max_volume);
1734 pa_assert(channel_map);
1735 pa_assert(pa_sink_flat_volume_enabled(s));
1736
1737 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1738 pa_cvolume remapped;
1739
1740 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1741 get_maximum_input_volume(i->origin_sink, max_volume, channel_map);
1742
1743 /* Ignore this input. The origin sink uses volume sharing, so this
1744 * input's volume will be set to be equal to the root sink's real
1745 * volume. Obviously this input's current volume must not then
1746 * affect what the root sink's real volume will be. */
1747 continue;
1748 }
1749
1750 remapped = i->volume;
1751 cvolume_remap_minimal_impact(&remapped, max_volume, &i->channel_map, channel_map);
1752 pa_cvolume_merge(max_volume, max_volume, &remapped);
1753 }
1754 }
1755
1756 /* Called from main thread. Only called for the root sink in volume sharing
1757 * cases, except for internal recursive calls. */
1758 static pa_bool_t has_inputs(pa_sink *s) {
1759 pa_sink_input *i;
1760 uint32_t idx;
1761
1762 pa_sink_assert_ref(s);
1763
1764 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1765 if (!i->origin_sink || !(i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER) || has_inputs(i->origin_sink))
1766 return TRUE;
1767 }
1768
1769 return FALSE;
1770 }
1771
1772 /* Called from main thread. Only called for the root sink in volume sharing
1773 * cases, except for internal recursive calls. */
1774 static void update_real_volume(pa_sink *s, const pa_cvolume *new_volume, pa_channel_map *channel_map) {
1775 pa_sink_input *i;
1776 uint32_t idx;
1777
1778 pa_sink_assert_ref(s);
1779 pa_assert(new_volume);
1780 pa_assert(channel_map);
1781
1782 s->real_volume = *new_volume;
1783 pa_cvolume_remap(&s->real_volume, channel_map, &s->channel_map);
1784
1785 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1786 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1787 if (pa_sink_flat_volume_enabled(s)) {
1788 pa_cvolume old_volume = i->volume;
1789
1790 /* Follow the root sink's real volume. */
1791 i->volume = *new_volume;
1792 pa_cvolume_remap(&i->volume, channel_map, &i->channel_map);
1793 compute_reference_ratio(i);
1794
1795 /* The volume changed, let's tell people so */
1796 if (!pa_cvolume_equal(&old_volume, &i->volume)) {
1797 if (i->volume_changed)
1798 i->volume_changed(i);
1799
1800 pa_subscription_post(i->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
1801 }
1802 }
1803
1804 update_real_volume(i->origin_sink, new_volume, channel_map);
1805 }
1806 }
1807 }
1808
1809 /* Called from main thread. Only called for the root sink in shared volume
1810 * cases. */
1811 static void compute_real_volume(pa_sink *s) {
1812 pa_sink_assert_ref(s);
1813 pa_assert_ctl_context();
1814 pa_assert(PA_SINK_IS_LINKED(s->state));
1815 pa_assert(pa_sink_flat_volume_enabled(s));
1816 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
1817
1818 /* This determines the maximum volume of all streams and sets
1819 * s->real_volume accordingly. */
1820
1821 if (!has_inputs(s)) {
1822 /* In the special case that we have no sink inputs we leave the
1823 * volume unmodified. */
1824 update_real_volume(s, &s->reference_volume, &s->channel_map);
1825 return;
1826 }
1827
1828 pa_cvolume_mute(&s->real_volume, s->channel_map.channels);
1829
1830 /* First let's determine the new maximum volume of all inputs
1831 * connected to this sink */
1832 get_maximum_input_volume(s, &s->real_volume, &s->channel_map);
1833 update_real_volume(s, &s->real_volume, &s->channel_map);
1834
1835 /* Then, let's update the real ratios/soft volumes of all inputs
1836 * connected to this sink */
1837 compute_real_ratios(s);
1838 }
1839
1840 /* Called from main thread. Only called for the root sink in shared volume
1841 * cases, except for internal recursive calls. */
1842 static void propagate_reference_volume(pa_sink *s) {
1843 pa_sink_input *i;
1844 uint32_t idx;
1845
1846 pa_sink_assert_ref(s);
1847 pa_assert_ctl_context();
1848 pa_assert(PA_SINK_IS_LINKED(s->state));
1849 pa_assert(pa_sink_flat_volume_enabled(s));
1850
1851 /* This is called whenever the sink volume changes that is not
1852 * caused by a sink input volume change. We need to fix up the
1853 * sink input volumes accordingly */
1854
1855 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1856 pa_cvolume old_volume;
1857
1858 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
1859 propagate_reference_volume(i->origin_sink);
1860
1861 /* Since the origin sink uses volume sharing, this input's volume
1862 * needs to be updated to match the root sink's real volume, but
1863 * that will be done later in update_shared_real_volume(). */
1864 continue;
1865 }
1866
1867 old_volume = i->volume;
1868
1869 /* This basically calculates:
1870 *
1871 * i->volume := s->reference_volume * i->reference_ratio */
1872
1873 i->volume = s->reference_volume;
1874 pa_cvolume_remap(&i->volume, &s->channel_map, &i->channel_map);
1875 pa_sw_cvolume_multiply(&i->volume, &i->volume, &i->reference_ratio);
1876
1877 /* The volume changed, let's tell people so */
1878 if (!pa_cvolume_equal(&old_volume, &i->volume)) {
1879
1880 if (i->volume_changed)
1881 i->volume_changed(i);
1882
1883 pa_subscription_post(i->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
1884 }
1885 }
1886 }
1887
1888 /* Called from main thread. Only called for the root sink in volume sharing
1889 * cases, except for internal recursive calls. The return value indicates
1890 * whether any reference volume actually changed. */
1891 static pa_bool_t update_reference_volume(pa_sink *s, const pa_cvolume *v, const pa_channel_map *channel_map, pa_bool_t save) {
1892 pa_cvolume volume;
1893 pa_bool_t reference_volume_changed;
1894 pa_sink_input *i;
1895 uint32_t idx;
1896
1897 pa_sink_assert_ref(s);
1898 pa_assert(PA_SINK_IS_LINKED(s->state));
1899 pa_assert(v);
1900 pa_assert(channel_map);
1901 pa_assert(pa_cvolume_valid(v));
1902
1903 volume = *v;
1904 pa_cvolume_remap(&volume, channel_map, &s->channel_map);
1905
1906 reference_volume_changed = !pa_cvolume_equal(&volume, &s->reference_volume);
1907 s->reference_volume = volume;
1908
1909 s->save_volume = (!reference_volume_changed && s->save_volume) || save;
1910
1911 if (reference_volume_changed)
1912 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
1913 else if (!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1914 /* If the root sink's volume doesn't change, then there can't be any
1915 * changes in the other sinks in the sink tree either.
1916 *
1917 * It's probably theoretically possible that even if the root sink's
1918 * volume changes slightly, some filter sink doesn't change its volume
1919 * due to rounding errors. If that happens, we still want to propagate
1920 * the changed root sink volume to the sinks connected to the
1921 * intermediate sink that didn't change its volume. This theoretical
1922 * possibility is the reason why we have that !(s->flags &
1923 * PA_SINK_SHARE_VOLUME_WITH_MASTER) condition. Probably nobody would
1924 * notice even if we returned here FALSE always if
1925 * reference_volume_changed is FALSE. */
1926 return FALSE;
1927
1928 PA_IDXSET_FOREACH(i, s->inputs, idx) {
1929 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
1930 update_reference_volume(i->origin_sink, v, channel_map, FALSE);
1931 }
1932
1933 return TRUE;
1934 }
1935
1936 /* Called from main thread */
1937 void pa_sink_set_volume(
1938 pa_sink *s,
1939 const pa_cvolume *volume,
1940 pa_bool_t send_msg,
1941 pa_bool_t save) {
1942
1943 pa_cvolume new_reference_volume;
1944 pa_sink *root_sink;
1945
1946 pa_sink_assert_ref(s);
1947 pa_assert_ctl_context();
1948 pa_assert(PA_SINK_IS_LINKED(s->state));
1949 pa_assert(!volume || pa_cvolume_valid(volume));
1950 pa_assert(volume || pa_sink_flat_volume_enabled(s));
1951 pa_assert(!volume || volume->channels == 1 || pa_cvolume_compatible(volume, &s->sample_spec));
1952
1953 /* make sure we don't change the volume when a PASSTHROUGH input is connected ...
1954 * ... *except* if we're being invoked to reset the volume to ensure 0 dB gain */
1955 if (pa_sink_is_passthrough(s) && (!volume || !pa_cvolume_is_norm(volume))) {
1956 pa_log_warn("Cannot change volume, Sink is connected to PASSTHROUGH input");
1957 return;
1958 }
1959
1960 /* In case of volume sharing, the volume is set for the root sink first,
1961 * from which it's then propagated to the sharing sinks. */
1962 root_sink = pa_sink_get_master(s);
1963
1964 if (PA_UNLIKELY(!root_sink))
1965 return;
1966
1967 /* As a special exception we accept mono volumes on all sinks --
1968 * even on those with more complex channel maps */
1969
1970 if (volume) {
1971 if (pa_cvolume_compatible(volume, &s->sample_spec))
1972 new_reference_volume = *volume;
1973 else {
1974 new_reference_volume = s->reference_volume;
1975 pa_cvolume_scale(&new_reference_volume, pa_cvolume_max(volume));
1976 }
1977
1978 pa_cvolume_remap(&new_reference_volume, &s->channel_map, &root_sink->channel_map);
1979
1980 if (update_reference_volume(root_sink, &new_reference_volume, &root_sink->channel_map, save)) {
1981 if (pa_sink_flat_volume_enabled(root_sink)) {
1982 /* OK, propagate this volume change back to the inputs */
1983 propagate_reference_volume(root_sink);
1984
1985 /* And now recalculate the real volume */
1986 compute_real_volume(root_sink);
1987 } else
1988 update_real_volume(root_sink, &root_sink->reference_volume, &root_sink->channel_map);
1989 }
1990
1991 } else {
1992 /* If volume is NULL we synchronize the sink's real and
1993 * reference volumes with the stream volumes. */
1994
1995 pa_assert(pa_sink_flat_volume_enabled(root_sink));
1996
1997 /* Ok, let's determine the new real volume */
1998 compute_real_volume(root_sink);
1999
2000 /* Let's 'push' the reference volume if necessary */
2001 pa_cvolume_merge(&new_reference_volume, &s->reference_volume, &root_sink->real_volume);
2002 /* If the sink and it's root don't have the same number of channels, we need to remap */
2003 if (s != root_sink && !pa_channel_map_equal(&s->channel_map, &root_sink->channel_map))
2004 pa_cvolume_remap(&new_reference_volume, &s->channel_map, &root_sink->channel_map);
2005 update_reference_volume(root_sink, &new_reference_volume, &root_sink->channel_map, save);
2006
2007 /* Now that the reference volume is updated, we can update the streams'
2008 * reference ratios. */
2009 compute_reference_ratios(root_sink);
2010 }
2011
2012 if (root_sink->set_volume) {
2013 /* If we have a function set_volume(), then we do not apply a
2014 * soft volume by default. However, set_volume() is free to
2015 * apply one to root_sink->soft_volume */
2016
2017 pa_cvolume_reset(&root_sink->soft_volume, root_sink->sample_spec.channels);
2018 if (!(root_sink->flags & PA_SINK_DEFERRED_VOLUME))
2019 root_sink->set_volume(root_sink);
2020
2021 } else
2022 /* If we have no function set_volume(), then the soft volume
2023 * becomes the real volume */
2024 root_sink->soft_volume = root_sink->real_volume;
2025
2026 /* This tells the sink that soft volume and/or real volume changed */
2027 if (send_msg)
2028 pa_assert_se(pa_asyncmsgq_send(root_sink->asyncmsgq, PA_MSGOBJECT(root_sink), PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL) == 0);
2029 }
2030
2031 /* Called from the io thread if sync volume is used, otherwise from the main thread.
2032 * Only to be called by sink implementor */
2033 void pa_sink_set_soft_volume(pa_sink *s, const pa_cvolume *volume) {
2034
2035 pa_sink_assert_ref(s);
2036 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
2037
2038 if (s->flags & PA_SINK_DEFERRED_VOLUME)
2039 pa_sink_assert_io_context(s);
2040 else
2041 pa_assert_ctl_context();
2042
2043 if (!volume)
2044 pa_cvolume_reset(&s->soft_volume, s->sample_spec.channels);
2045 else
2046 s->soft_volume = *volume;
2047
2048 if (PA_SINK_IS_LINKED(s->state) && !(s->flags & PA_SINK_DEFERRED_VOLUME))
2049 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_VOLUME, NULL, 0, NULL) == 0);
2050 else
2051 s->thread_info.soft_volume = s->soft_volume;
2052 }
2053
2054 /* Called from the main thread. Only called for the root sink in volume sharing
2055 * cases, except for internal recursive calls. */
2056 static void propagate_real_volume(pa_sink *s, const pa_cvolume *old_real_volume) {
2057 pa_sink_input *i;
2058 uint32_t idx;
2059
2060 pa_sink_assert_ref(s);
2061 pa_assert(old_real_volume);
2062 pa_assert_ctl_context();
2063 pa_assert(PA_SINK_IS_LINKED(s->state));
2064
2065 /* This is called when the hardware's real volume changes due to
2066 * some external event. We copy the real volume into our
2067 * reference volume and then rebuild the stream volumes based on
2068 * i->real_ratio which should stay fixed. */
2069
2070 if (!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER)) {
2071 if (pa_cvolume_equal(old_real_volume, &s->real_volume))
2072 return;
2073
2074 /* 1. Make the real volume the reference volume */
2075 update_reference_volume(s, &s->real_volume, &s->channel_map, TRUE);
2076 }
2077
2078 if (pa_sink_flat_volume_enabled(s)) {
2079
2080 PA_IDXSET_FOREACH(i, s->inputs, idx) {
2081 pa_cvolume old_volume = i->volume;
2082
2083 /* 2. Since the sink's reference and real volumes are equal
2084 * now our ratios should be too. */
2085 i->reference_ratio = i->real_ratio;
2086
2087 /* 3. Recalculate the new stream reference volume based on the
2088 * reference ratio and the sink's reference volume.
2089 *
2090 * This basically calculates:
2091 *
2092 * i->volume = s->reference_volume * i->reference_ratio
2093 *
2094 * This is identical to propagate_reference_volume() */
2095 i->volume = s->reference_volume;
2096 pa_cvolume_remap(&i->volume, &s->channel_map, &i->channel_map);
2097 pa_sw_cvolume_multiply(&i->volume, &i->volume, &i->reference_ratio);
2098
2099 /* Notify if something changed */
2100 if (!pa_cvolume_equal(&old_volume, &i->volume)) {
2101
2102 if (i->volume_changed)
2103 i->volume_changed(i);
2104
2105 pa_subscription_post(i->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
2106 }
2107
2108 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
2109 propagate_real_volume(i->origin_sink, old_real_volume);
2110 }
2111 }
2112
2113 /* Something got changed in the hardware. It probably makes sense
2114 * to save changed hw settings given that hw volume changes not
2115 * triggered by PA are almost certainly done by the user. */
2116 if (!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
2117 s->save_volume = TRUE;
2118 }
2119
2120 /* Called from io thread */
2121 void pa_sink_update_volume_and_mute(pa_sink *s) {
2122 pa_assert(s);
2123 pa_sink_assert_io_context(s);
2124
2125 pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_UPDATE_VOLUME_AND_MUTE, NULL, 0, NULL, NULL);
2126 }
2127
2128 /* Called from main thread */
2129 const pa_cvolume *pa_sink_get_volume(pa_sink *s, pa_bool_t force_refresh) {
2130 pa_sink_assert_ref(s);
2131 pa_assert_ctl_context();
2132 pa_assert(PA_SINK_IS_LINKED(s->state));
2133
2134 if (s->refresh_volume || force_refresh) {
2135 struct pa_cvolume old_real_volume;
2136
2137 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
2138
2139 old_real_volume = s->real_volume;
2140
2141 if (!(s->flags & PA_SINK_DEFERRED_VOLUME) && s->get_volume)
2142 s->get_volume(s);
2143
2144 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_VOLUME, NULL, 0, NULL) == 0);
2145
2146 update_real_volume(s, &s->real_volume, &s->channel_map);
2147 propagate_real_volume(s, &old_real_volume);
2148 }
2149
2150 return &s->reference_volume;
2151 }
2152
2153 /* Called from main thread. In volume sharing cases, only the root sink may
2154 * call this. */
2155 void pa_sink_volume_changed(pa_sink *s, const pa_cvolume *new_real_volume) {
2156 pa_cvolume old_real_volume;
2157
2158 pa_sink_assert_ref(s);
2159 pa_assert_ctl_context();
2160 pa_assert(PA_SINK_IS_LINKED(s->state));
2161 pa_assert(!(s->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER));
2162
2163 /* The sink implementor may call this if the volume changed to make sure everyone is notified */
2164
2165 old_real_volume = s->real_volume;
2166 update_real_volume(s, new_real_volume, &s->channel_map);
2167 propagate_real_volume(s, &old_real_volume);
2168 }
2169
2170 /* Called from main thread */
2171 void pa_sink_set_mute(pa_sink *s, pa_bool_t mute, pa_bool_t save) {
2172 pa_bool_t old_muted;
2173
2174 pa_sink_assert_ref(s);
2175 pa_assert_ctl_context();
2176 pa_assert(PA_SINK_IS_LINKED(s->state));
2177
2178 old_muted = s->muted;
2179 s->muted = mute;
2180 s->save_muted = (old_muted == s->muted && s->save_muted) || save;
2181
2182 if (!(s->flags & PA_SINK_DEFERRED_VOLUME) && s->set_mute)
2183 s->set_mute(s);
2184
2185 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MUTE, NULL, 0, NULL) == 0);
2186
2187 if (old_muted != s->muted)
2188 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
2189 }
2190
2191 /* Called from main thread */
2192 pa_bool_t pa_sink_get_mute(pa_sink *s, pa_bool_t force_refresh) {
2193
2194 pa_sink_assert_ref(s);
2195 pa_assert_ctl_context();
2196 pa_assert(PA_SINK_IS_LINKED(s->state));
2197
2198 if (s->refresh_muted || force_refresh) {
2199 pa_bool_t old_muted = s->muted;
2200
2201 if (!(s->flags & PA_SINK_DEFERRED_VOLUME) && s->get_mute)
2202 s->get_mute(s);
2203
2204 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MUTE, NULL, 0, NULL) == 0);
2205
2206 if (old_muted != s->muted) {
2207 s->save_muted = TRUE;
2208
2209 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
2210
2211 /* Make sure the soft mute status stays in sync */
2212 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MUTE, NULL, 0, NULL) == 0);
2213 }
2214 }
2215
2216 return s->muted;
2217 }
2218
2219 /* Called from main thread */
2220 void pa_sink_mute_changed(pa_sink *s, pa_bool_t new_muted) {
2221 pa_sink_assert_ref(s);
2222 pa_assert_ctl_context();
2223 pa_assert(PA_SINK_IS_LINKED(s->state));
2224
2225 /* The sink implementor may call this if the volume changed to make sure everyone is notified */
2226
2227 if (s->muted == new_muted)
2228 return;
2229
2230 s->muted = new_muted;
2231 s->save_muted = TRUE;
2232
2233 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
2234 }
2235
2236 /* Called from main thread */
2237 pa_bool_t pa_sink_update_proplist(pa_sink *s, pa_update_mode_t mode, pa_proplist *p) {
2238 pa_sink_assert_ref(s);
2239 pa_assert_ctl_context();
2240
2241 if (p)
2242 pa_proplist_update(s->proplist, mode, p);
2243
2244 if (PA_SINK_IS_LINKED(s->state)) {
2245 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PROPLIST_CHANGED], s);
2246 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
2247 }
2248
2249 return TRUE;
2250 }
2251
2252 /* Called from main thread */
2253 /* FIXME -- this should be dropped and be merged into pa_sink_update_proplist() */
2254 void pa_sink_set_description(pa_sink *s, const char *description) {
2255 const char *old;
2256 pa_sink_assert_ref(s);
2257 pa_assert_ctl_context();
2258
2259 if (!description && !pa_proplist_contains(s->proplist, PA_PROP_DEVICE_DESCRIPTION))
2260 return;
2261
2262 old = pa_proplist_gets(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
2263
2264 if (old && description && pa_streq(old, description))
2265 return;
2266
2267 if (description)
2268 pa_proplist_sets(s->proplist, PA_PROP_DEVICE_DESCRIPTION, description);
2269 else
2270 pa_proplist_unset(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
2271
2272 if (s->monitor_source) {
2273 char *n;
2274
2275 n = pa_sprintf_malloc("Monitor Source of %s", description ? description : s->name);
2276 pa_source_set_description(s->monitor_source, n);
2277 pa_xfree(n);
2278 }
2279
2280 if (PA_SINK_IS_LINKED(s->state)) {
2281 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
2282 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PROPLIST_CHANGED], s);
2283 }
2284 }
2285
2286 /* Called from main thread */
2287 unsigned pa_sink_linked_by(pa_sink *s) {
2288 unsigned ret;
2289
2290 pa_sink_assert_ref(s);
2291 pa_assert_ctl_context();
2292 pa_assert(PA_SINK_IS_LINKED(s->state));
2293
2294 ret = pa_idxset_size(s->inputs);
2295
2296 /* We add in the number of streams connected to us here. Please
2297 * note the asymmetry to pa_sink_used_by()! */
2298
2299 if (s->monitor_source)
2300 ret += pa_source_linked_by(s->monitor_source);
2301
2302 return ret;
2303 }
2304
2305 /* Called from main thread */
2306 unsigned pa_sink_used_by(pa_sink *s) {
2307 unsigned ret;
2308
2309 pa_sink_assert_ref(s);
2310 pa_assert_ctl_context();
2311 pa_assert(PA_SINK_IS_LINKED(s->state));
2312
2313 ret = pa_idxset_size(s->inputs);
2314 pa_assert(ret >= s->n_corked);
2315
2316 /* Streams connected to our monitor source do not matter for
2317 * pa_sink_used_by()!.*/
2318
2319 return ret - s->n_corked;
2320 }
2321
2322 /* Called from main thread */
2323 unsigned pa_sink_check_suspend(pa_sink *s) {
2324 unsigned ret;
2325 pa_sink_input *i;
2326 uint32_t idx;
2327
2328 pa_sink_assert_ref(s);
2329 pa_assert_ctl_context();
2330
2331 if (!PA_SINK_IS_LINKED(s->state))
2332 return 0;
2333
2334 ret = 0;
2335
2336 PA_IDXSET_FOREACH(i, s->inputs, idx) {
2337 pa_sink_input_state_t st;
2338
2339 st = pa_sink_input_get_state(i);
2340
2341 /* We do not assert here. It is perfectly valid for a sink input to
2342 * be in the INIT state (i.e. created, marked done but not yet put)
2343 * and we should not care if it's unlinked as it won't contribute
2344 * towards our busy status.
2345 */
2346 if (!PA_SINK_INPUT_IS_LINKED(st))
2347 continue;
2348
2349 if (st == PA_SINK_INPUT_CORKED)
2350 continue;
2351
2352 if (i->flags & PA_SINK_INPUT_DONT_INHIBIT_AUTO_SUSPEND)
2353 continue;
2354
2355 ret ++;
2356 }
2357
2358 if (s->monitor_source)
2359 ret += pa_source_check_suspend(s->monitor_source);
2360
2361 return ret;
2362 }
2363
2364 /* Called from the IO thread */
2365 static void sync_input_volumes_within_thread(pa_sink *s) {
2366 pa_sink_input *i;
2367 void *state = NULL;
2368
2369 pa_sink_assert_ref(s);
2370 pa_sink_assert_io_context(s);
2371
2372 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
2373 if (pa_cvolume_equal(&i->thread_info.soft_volume, &i->soft_volume))
2374 continue;
2375
2376 i->thread_info.soft_volume = i->soft_volume;
2377 pa_sink_input_request_rewind(i, 0, TRUE, FALSE, FALSE);
2378 }
2379 }
2380
2381 /* Called from the IO thread. Only called for the root sink in volume sharing
2382 * cases, except for internal recursive calls. */
2383 static void set_shared_volume_within_thread(pa_sink *s) {
2384 pa_sink_input *i = NULL;
2385 void *state = NULL;
2386
2387 pa_sink_assert_ref(s);
2388
2389 PA_MSGOBJECT(s)->process_msg(PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_VOLUME_SYNCED, NULL, 0, NULL);
2390
2391 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state) {
2392 if (i->origin_sink && (i->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
2393 set_shared_volume_within_thread(i->origin_sink);
2394 }
2395 }
2396
2397 /* Called from IO thread, except when it is not */
2398 int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
2399 pa_sink *s = PA_SINK(o);
2400 pa_sink_assert_ref(s);
2401
2402 switch ((pa_sink_message_t) code) {
2403
2404 case PA_SINK_MESSAGE_ADD_INPUT: {
2405 pa_sink_input *i = PA_SINK_INPUT(userdata);
2406
2407 /* If you change anything here, make sure to change the
2408 * sink input handling a few lines down at
2409 * PA_SINK_MESSAGE_FINISH_MOVE, too. */
2410
2411 pa_hashmap_put(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index), pa_sink_input_ref(i));
2412
2413 /* Since the caller sleeps in pa_sink_input_put(), we can
2414 * safely access data outside of thread_info even though
2415 * it is mutable */
2416
2417 if ((i->thread_info.sync_prev = i->sync_prev)) {
2418 pa_assert(i->sink == i->thread_info.sync_prev->sink);
2419 pa_assert(i->sync_prev->sync_next == i);
2420 i->thread_info.sync_prev->thread_info.sync_next = i;
2421 }
2422
2423 if ((i->thread_info.sync_next = i->sync_next)) {
2424 pa_assert(i->sink == i->thread_info.sync_next->sink);
2425 pa_assert(i->sync_next->sync_prev == i);
2426 i->thread_info.sync_next->thread_info.sync_prev = i;
2427 }
2428
2429 pa_assert(!i->thread_info.attached);
2430 i->thread_info.attached = TRUE;
2431
2432 if (i->attach)
2433 i->attach(i);
2434
2435 pa_sink_input_set_state_within_thread(i, i->state);
2436
2437 /* The requested latency of the sink input needs to be fixed up and
2438 * then configured on the sink. If this causes the sink latency to
2439 * go down, the sink implementor is responsible for doing a rewind
2440 * in the update_requested_latency() callback to ensure that the
2441 * sink buffer doesn't contain more data than what the new latency
2442 * allows.
2443 *
2444 * XXX: Does it really make sense to push this responsibility to
2445 * the sink implementors? Wouldn't it be better to do it once in
2446 * the core than many times in the modules? */
2447
2448 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1)
2449 pa_sink_input_set_requested_latency_within_thread(i, i->thread_info.requested_sink_latency);
2450
2451 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
2452 pa_sink_input_update_max_request(i, s->thread_info.max_request);
2453
2454 /* We don't rewind here automatically. This is left to the
2455 * sink input implementor because some sink inputs need a
2456 * slow start, i.e. need some time to buffer client
2457 * samples before beginning streaming.
2458 *
2459 * XXX: Does it really make sense to push this functionality to
2460 * the sink implementors? Wouldn't it be better to do it once in
2461 * the core than many times in the modules? */
2462
2463 /* In flat volume mode we need to update the volume as
2464 * well */
2465 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2466 }
2467
2468 case PA_SINK_MESSAGE_REMOVE_INPUT: {
2469 pa_sink_input *i = PA_SINK_INPUT(userdata);
2470
2471 /* If you change anything here, make sure to change the
2472 * sink input handling a few lines down at
2473 * PA_SINK_MESSAGE_START_MOVE, too. */
2474
2475 if (i->detach)
2476 i->detach(i);
2477
2478 pa_sink_input_set_state_within_thread(i, i->state);
2479
2480 pa_assert(i->thread_info.attached);
2481 i->thread_info.attached = FALSE;
2482
2483 /* Since the caller sleeps in pa_sink_input_unlink(),
2484 * we can safely access data outside of thread_info even
2485 * though it is mutable */
2486
2487 pa_assert(!i->sync_prev);
2488 pa_assert(!i->sync_next);
2489
2490 if (i->thread_info.sync_prev) {
2491 i->thread_info.sync_prev->thread_info.sync_next = i->thread_info.sync_prev->sync_next;
2492 i->thread_info.sync_prev = NULL;
2493 }
2494
2495 if (i->thread_info.sync_next) {
2496 i->thread_info.sync_next->thread_info.sync_prev = i->thread_info.sync_next->sync_prev;
2497 i->thread_info.sync_next = NULL;
2498 }
2499
2500 if (pa_hashmap_remove(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index)))
2501 pa_sink_input_unref(i);
2502
2503 pa_sink_invalidate_requested_latency(s, TRUE);
2504 pa_sink_request_rewind(s, (size_t) -1);
2505
2506 /* In flat volume mode we need to update the volume as
2507 * well */
2508 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2509 }
2510
2511 case PA_SINK_MESSAGE_START_MOVE: {
2512 pa_sink_input *i = PA_SINK_INPUT(userdata);
2513
2514 /* We don't support moving synchronized streams. */
2515 pa_assert(!i->sync_prev);
2516 pa_assert(!i->sync_next);
2517 pa_assert(!i->thread_info.sync_next);
2518 pa_assert(!i->thread_info.sync_prev);
2519
2520 if (i->thread_info.state != PA_SINK_INPUT_CORKED) {
2521 pa_usec_t usec = 0;
2522 size_t sink_nbytes, total_nbytes;
2523
2524 /* The old sink probably has some audio from this
2525 * stream in its buffer. We want to "take it back" as
2526 * much as possible and play it to the new sink. We
2527 * don't know at this point how much the old sink can
2528 * rewind. We have to pick something, and that
2529 * something is the full latency of the old sink here.
2530 * So we rewind the stream buffer by the sink latency
2531 * amount, which may be more than what we should
2532 * rewind. This can result in a chunk of audio being
2533 * played both to the old sink and the new sink.
2534 *
2535 * FIXME: Fix this code so that we don't have to make
2536 * guesses about how much the sink will actually be
2537 * able to rewind. If someone comes up with a solution
2538 * for this, something to note is that the part of the
2539 * latency that the old sink couldn't rewind should
2540 * ideally be compensated after the stream has moved
2541 * to the new sink by adding silence. The new sink
2542 * most likely can't start playing the moved stream
2543 * immediately, and that gap should be removed from
2544 * the "compensation silence" (at least at the time of
2545 * writing this, the move finish code will actually
2546 * already take care of dropping the new sink's
2547 * unrewindable latency, so taking into account the
2548 * unrewindable latency of the old sink is the only
2549 * problem).
2550 *
2551 * The render_memblockq contents are discarded,
2552 * because when the sink changes, the format of the
2553 * audio stored in the render_memblockq may change
2554 * too, making the stored audio invalid. FIXME:
2555 * However, the read and write indices are moved back
2556 * the same amount, so if they are not the same now,
2557 * they won't be the same after the rewind either. If
2558 * the write index of the render_memblockq is ahead of
2559 * the read index, then the render_memblockq will feed
2560 * the new sink some silence first, which it shouldn't
2561 * do. The write index should be flushed to be the
2562 * same as the read index. */
2563
2564 /* Get the latency of the sink */
2565 usec = pa_sink_get_latency_within_thread(s);
2566 sink_nbytes = pa_usec_to_bytes(usec, &s->sample_spec);
2567 total_nbytes = sink_nbytes + pa_memblockq_get_length(i->thread_info.render_memblockq);
2568
2569 if (total_nbytes > 0) {
2570 i->thread_info.rewrite_nbytes = i->thread_info.resampler ? pa_resampler_request(i->thread_info.resampler, total_nbytes) : total_nbytes;
2571 i->thread_info.rewrite_flush = TRUE;
2572 pa_sink_input_process_rewind(i, sink_nbytes);
2573 }
2574 }
2575
2576 if (i->detach)
2577 i->detach(i);
2578
2579 pa_assert(i->thread_info.attached);
2580 i->thread_info.attached = FALSE;
2581
2582 /* Let's remove the sink input ...*/
2583 if (pa_hashmap_remove(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index)))
2584 pa_sink_input_unref(i);
2585
2586 pa_sink_invalidate_requested_latency(s, TRUE);
2587
2588 pa_log_debug("Requesting rewind due to started move");
2589 pa_sink_request_rewind(s, (size_t) -1);
2590
2591 /* In flat volume mode we need to update the volume as
2592 * well */
2593 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2594 }
2595
2596 case PA_SINK_MESSAGE_FINISH_MOVE: {
2597 pa_sink_input *i = PA_SINK_INPUT(userdata);
2598
2599 /* We don't support moving synchronized streams. */
2600 pa_assert(!i->sync_prev);
2601 pa_assert(!i->sync_next);
2602 pa_assert(!i->thread_info.sync_next);
2603 pa_assert(!i->thread_info.sync_prev);
2604
2605 pa_hashmap_put(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index), pa_sink_input_ref(i));
2606
2607 pa_assert(!i->thread_info.attached);
2608 i->thread_info.attached = TRUE;
2609
2610 if (i->attach)
2611 i->attach(i);
2612
2613 if (i->thread_info.state != PA_SINK_INPUT_CORKED) {
2614 pa_usec_t usec = 0;
2615 size_t nbytes;
2616
2617 /* In the ideal case the new sink would start playing
2618 * the stream immediately. That requires the sink to
2619 * be able to rewind all of its latency, which usually
2620 * isn't possible, so there will probably be some gap
2621 * before the moved stream becomes audible. We then
2622 * have two possibilities: 1) start playing the stream
2623 * from where it is now, or 2) drop the unrewindable
2624 * latency of the sink from the stream. With option 1
2625 * we won't lose any audio but the stream will have a
2626 * pause. With option 2 we may lose some audio but the
2627 * stream time will be somewhat in sync with the wall
2628 * clock. Lennart seems to have chosen option 2 (one
2629 * of the reasons might have been that option 1 is
2630 * actually much harder to implement), so we drop the
2631 * latency of the new sink from the moved stream and
2632 * hope that the sink will undo most of that in the
2633 * rewind. */
2634
2635 /* Get the latency of the sink */
2636 usec = pa_sink_get_latency_within_thread(s);
2637 nbytes = pa_usec_to_bytes(usec, &s->sample_spec);
2638
2639 if (nbytes > 0)
2640 pa_sink_input_drop(i, nbytes);
2641
2642 pa_log_debug("Requesting rewind due to finished move");
2643 pa_sink_request_rewind(s, nbytes);
2644 }
2645
2646 /* Updating the requested sink latency has to be done
2647 * after the sink rewind request, not before, because
2648 * otherwise the sink may limit the rewind amount
2649 * needlessly. */
2650
2651 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1)
2652 pa_sink_input_set_requested_latency_within_thread(i, i->thread_info.requested_sink_latency);
2653
2654 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
2655 pa_sink_input_update_max_request(i, s->thread_info.max_request);
2656
2657 return o->process_msg(o, PA_SINK_MESSAGE_SET_SHARED_VOLUME, NULL, 0, NULL);
2658 }
2659
2660 case PA_SINK_MESSAGE_SET_SHARED_VOLUME: {
2661 pa_sink *root_sink = pa_sink_get_master(s);
2662
2663 if (PA_LIKELY(root_sink))
2664 set_shared_volume_within_thread(root_sink);
2665
2666 return 0;
2667 }
2668
2669 case PA_SINK_MESSAGE_SET_VOLUME_SYNCED:
2670
2671 if (s->flags & PA_SINK_DEFERRED_VOLUME) {
2672 s->set_volume(s);
2673 pa_sink_volume_change_push(s);
2674 }
2675 /* Fall through ... */
2676
2677 case PA_SINK_MESSAGE_SET_VOLUME:
2678
2679 if (!pa_cvolume_equal(&s->thread_info.soft_volume, &s->soft_volume)) {
2680 s->thread_info.soft_volume = s->soft_volume;
2681 pa_sink_request_rewind(s, (size_t) -1);
2682 }
2683
2684 /* Fall through ... */
2685
2686 case PA_SINK_MESSAGE_SYNC_VOLUMES:
2687 sync_input_volumes_within_thread(s);
2688 return 0;
2689
2690 case PA_SINK_MESSAGE_GET_VOLUME:
2691
2692 if ((s->flags & PA_SINK_DEFERRED_VOLUME) && s->get_volume) {
2693 s->get_volume(s);
2694 pa_sink_volume_change_flush(s);
2695 pa_sw_cvolume_divide(&s->thread_info.current_hw_volume, &s->real_volume, &s->soft_volume);
2696 }
2697
2698 /* In case sink implementor reset SW volume. */
2699 if (!pa_cvolume_equal(&s->thread_info.soft_volume, &s->soft_volume)) {
2700 s->thread_info.soft_volume = s->soft_volume;
2701 pa_sink_request_rewind(s, (size_t) -1);
2702 }
2703
2704 return 0;
2705
2706 case PA_SINK_MESSAGE_SET_MUTE:
2707
2708 if (s->thread_info.soft_muted != s->muted) {
2709 s->thread_info.soft_muted = s->muted;
2710 pa_sink_request_rewind(s, (size_t) -1);
2711 }
2712
2713 if (s->flags & PA_SINK_DEFERRED_VOLUME && s->set_mute)
2714 s->set_mute(s);
2715
2716 return 0;
2717
2718 case PA_SINK_MESSAGE_GET_MUTE:
2719
2720 if (s->flags & PA_SINK_DEFERRED_VOLUME && s->get_mute)
2721 s->get_mute(s);
2722
2723 return 0;
2724
2725 case PA_SINK_MESSAGE_SET_STATE: {
2726
2727 pa_bool_t suspend_change =
2728 (s->thread_info.state == PA_SINK_SUSPENDED && PA_SINK_IS_OPENED(PA_PTR_TO_UINT(userdata))) ||
2729 (PA_SINK_IS_OPENED(s->thread_info.state) && PA_PTR_TO_UINT(userdata) == PA_SINK_SUSPENDED);
2730
2731 s->thread_info.state = PA_PTR_TO_UINT(userdata);
2732
2733 if (s->thread_info.state == PA_SINK_SUSPENDED) {
2734 s->thread_info.rewind_nbytes = 0;
2735 s->thread_info.rewind_requested = FALSE;
2736 }
2737
2738 if (suspend_change) {
2739 pa_sink_input *i;
2740 void *state = NULL;
2741
2742 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
2743 if (i->suspend_within_thread)
2744 i->suspend_within_thread(i, s->thread_info.state == PA_SINK_SUSPENDED);
2745 }
2746
2747 return 0;
2748 }
2749
2750 case PA_SINK_MESSAGE_DETACH:
2751
2752 /* Detach all streams */
2753 pa_sink_detach_within_thread(s);
2754 return 0;
2755
2756 case PA_SINK_MESSAGE_ATTACH:
2757
2758 /* Reattach all streams */
2759 pa_sink_attach_within_thread(s);
2760 return 0;
2761
2762 case PA_SINK_MESSAGE_GET_REQUESTED_LATENCY: {
2763
2764 pa_usec_t *usec = userdata;
2765 *usec = pa_sink_get_requested_latency_within_thread(s);
2766
2767 /* Yes, that's right, the IO thread will see -1 when no
2768 * explicit requested latency is configured, the main
2769 * thread will see max_latency */
2770 if (*usec == (pa_usec_t) -1)
2771 *usec = s->thread_info.max_latency;
2772
2773 return 0;
2774 }
2775
2776 case PA_SINK_MESSAGE_SET_LATENCY_RANGE: {
2777 pa_usec_t *r = userdata;
2778
2779 pa_sink_set_latency_range_within_thread(s, r[0], r[1]);
2780
2781 return 0;
2782 }
2783
2784 case PA_SINK_MESSAGE_GET_LATENCY_RANGE: {
2785 pa_usec_t *r = userdata;
2786
2787 r[0] = s->thread_info.min_latency;
2788 r[1] = s->thread_info.max_latency;
2789
2790 return 0;
2791 }
2792
2793 case PA_SINK_MESSAGE_GET_FIXED_LATENCY:
2794
2795 *((pa_usec_t*) userdata) = s->thread_info.fixed_latency;
2796 return 0;
2797
2798 case PA_SINK_MESSAGE_SET_FIXED_LATENCY:
2799
2800 pa_sink_set_fixed_latency_within_thread(s, (pa_usec_t) offset);
2801 return 0;
2802
2803 case PA_SINK_MESSAGE_GET_MAX_REWIND:
2804
2805 *((size_t*) userdata) = s->thread_info.max_rewind;
2806 return 0;
2807
2808 case PA_SINK_MESSAGE_GET_MAX_REQUEST:
2809
2810 *((size_t*) userdata) = s->thread_info.max_request;
2811 return 0;
2812
2813 case PA_SINK_MESSAGE_SET_MAX_REWIND:
2814
2815 pa_sink_set_max_rewind_within_thread(s, (size_t) offset);
2816 return 0;
2817
2818 case PA_SINK_MESSAGE_SET_MAX_REQUEST:
2819
2820 pa_sink_set_max_request_within_thread(s, (size_t) offset);
2821 return 0;
2822
2823 case PA_SINK_MESSAGE_SET_PORT:
2824
2825 pa_assert(userdata);
2826 if (s->set_port) {
2827 struct sink_message_set_port *msg_data = userdata;
2828 msg_data->ret = s->set_port(s, msg_data->port);
2829 }
2830 return 0;
2831
2832 case PA_SINK_MESSAGE_UPDATE_VOLUME_AND_MUTE:
2833 /* This message is sent from IO-thread and handled in main thread. */
2834 pa_assert_ctl_context();
2835
2836 /* Make sure we're not messing with main thread when no longer linked */
2837 if (!PA_SINK_IS_LINKED(s->state))
2838 return 0;
2839
2840 pa_sink_get_volume(s, TRUE);
2841 pa_sink_get_mute(s, TRUE);
2842 return 0;
2843
2844 case PA_SINK_MESSAGE_SET_LATENCY_OFFSET:
2845 s->thread_info.latency_offset = offset;
2846 return 0;
2847
2848 case PA_SINK_MESSAGE_GET_LATENCY:
2849 case PA_SINK_MESSAGE_MAX:
2850 ;
2851 }
2852
2853 return -1;
2854 }
2855
2856 /* Called from main thread */
2857 int pa_sink_suspend_all(pa_core *c, pa_bool_t suspend, pa_suspend_cause_t cause) {
2858 pa_sink *sink;
2859 uint32_t idx;
2860 int ret = 0;
2861
2862 pa_core_assert_ref(c);
2863 pa_assert_ctl_context();
2864 pa_assert(cause != 0);
2865
2866 PA_IDXSET_FOREACH(sink, c->sinks, idx) {
2867 int r;
2868
2869 if ((r = pa_sink_suspend(sink, suspend, cause)) < 0)
2870 ret = r;
2871 }
2872
2873 return ret;
2874 }
2875
2876 /* Called from main thread */
2877 void pa_sink_detach(pa_sink *s) {
2878 pa_sink_assert_ref(s);
2879 pa_assert_ctl_context();
2880 pa_assert(PA_SINK_IS_LINKED(s->state));
2881
2882 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_DETACH, NULL, 0, NULL) == 0);
2883 }
2884
2885 /* Called from main thread */
2886 void pa_sink_attach(pa_sink *s) {
2887 pa_sink_assert_ref(s);
2888 pa_assert_ctl_context();
2889 pa_assert(PA_SINK_IS_LINKED(s->state));
2890
2891 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_ATTACH, NULL, 0, NULL) == 0);
2892 }
2893
2894 /* Called from IO thread */
2895 void pa_sink_detach_within_thread(pa_sink *s) {
2896 pa_sink_input *i;
2897 void *state = NULL;
2898
2899 pa_sink_assert_ref(s);
2900 pa_sink_assert_io_context(s);
2901 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
2902
2903 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2904 if (i->detach)
2905 i->detach(i);
2906
2907 if (s->monitor_source)
2908 pa_source_detach_within_thread(s->monitor_source);
2909 }
2910
2911 /* Called from IO thread */
2912 void pa_sink_attach_within_thread(pa_sink *s) {
2913 pa_sink_input *i;
2914 void *state = NULL;
2915
2916 pa_sink_assert_ref(s);
2917 pa_sink_assert_io_context(s);
2918 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
2919
2920 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2921 if (i->attach)
2922 i->attach(i);
2923
2924 if (s->monitor_source)
2925 pa_source_attach_within_thread(s->monitor_source);
2926 }
2927
2928 /* Called from IO thread */
2929 void pa_sink_request_rewind(pa_sink*s, size_t nbytes) {
2930 pa_sink_assert_ref(s);
2931 pa_sink_assert_io_context(s);
2932 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
2933
2934 if (nbytes == (size_t) -1)
2935 nbytes = s->thread_info.max_rewind;
2936
2937 nbytes = PA_MIN(nbytes, s->thread_info.max_rewind);
2938
2939 if (s->thread_info.rewind_requested &&
2940 nbytes <= s->thread_info.rewind_nbytes)
2941 return;
2942
2943 s->thread_info.rewind_nbytes = nbytes;
2944 s->thread_info.rewind_requested = TRUE;
2945
2946 if (s->request_rewind)
2947 s->request_rewind(s);
2948 }
2949
2950 /* Called from IO thread */
2951 pa_usec_t pa_sink_get_requested_latency_within_thread(pa_sink *s) {
2952 pa_usec_t result = (pa_usec_t) -1;
2953 pa_sink_input *i;
2954 void *state = NULL;
2955 pa_usec_t monitor_latency;
2956
2957 pa_sink_assert_ref(s);
2958 pa_sink_assert_io_context(s);
2959
2960 if (!(s->flags & PA_SINK_DYNAMIC_LATENCY))
2961 return PA_CLAMP(s->thread_info.fixed_latency, s->thread_info.min_latency, s->thread_info.max_latency);
2962
2963 if (s->thread_info.requested_latency_valid)
2964 return s->thread_info.requested_latency;
2965
2966 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
2967 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1 &&
2968 (result == (pa_usec_t) -1 || result > i->thread_info.requested_sink_latency))
2969 result = i->thread_info.requested_sink_latency;
2970
2971 monitor_latency = pa_source_get_requested_latency_within_thread(s->monitor_source);
2972
2973 if (monitor_latency != (pa_usec_t) -1 &&
2974 (result == (pa_usec_t) -1 || result > monitor_latency))
2975 result = monitor_latency;
2976
2977 if (result != (pa_usec_t) -1)
2978 result = PA_CLAMP(result, s->thread_info.min_latency, s->thread_info.max_latency);
2979
2980 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
2981 /* Only cache if properly initialized */
2982 s->thread_info.requested_latency = result;
2983 s->thread_info.requested_latency_valid = TRUE;
2984 }
2985
2986 return result;
2987 }
2988
2989 /* Called from main thread */
2990 pa_usec_t pa_sink_get_requested_latency(pa_sink *s) {
2991 pa_usec_t usec = 0;
2992
2993 pa_sink_assert_ref(s);
2994 pa_assert_ctl_context();
2995 pa_assert(PA_SINK_IS_LINKED(s->state));
2996
2997 if (s->state == PA_SINK_SUSPENDED)
2998 return 0;
2999
3000 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_REQUESTED_LATENCY, &usec, 0, NULL) == 0);
3001
3002 return usec;
3003 }
3004
3005 /* Called from IO as well as the main thread -- the latter only before the IO thread started up */
3006 void pa_sink_set_max_rewind_within_thread(pa_sink *s, size_t max_rewind) {
3007 pa_sink_input *i;
3008 void *state = NULL;
3009
3010 pa_sink_assert_ref(s);
3011 pa_sink_assert_io_context(s);
3012
3013 if (max_rewind == s->thread_info.max_rewind)
3014 return;
3015
3016 s->thread_info.max_rewind = max_rewind;
3017
3018 if (PA_SINK_IS_LINKED(s->thread_info.state))
3019 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
3020 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
3021
3022 if (s->monitor_source)
3023 pa_source_set_max_rewind_within_thread(s->monitor_source, s->thread_info.max_rewind);
3024 }
3025
3026 /* Called from main thread */
3027 void pa_sink_set_max_rewind(pa_sink *s, size_t max_rewind) {
3028 pa_sink_assert_ref(s);
3029 pa_assert_ctl_context();
3030
3031 if (PA_SINK_IS_LINKED(s->state))
3032 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MAX_REWIND, NULL, max_rewind, NULL) == 0);
3033 else
3034 pa_sink_set_max_rewind_within_thread(s, max_rewind);
3035 }
3036
3037 /* Called from IO as well as the main thread -- the latter only before the IO thread started up */
3038 void pa_sink_set_max_request_within_thread(pa_sink *s, size_t max_request) {
3039 void *state = NULL;
3040
3041 pa_sink_assert_ref(s);
3042 pa_sink_assert_io_context(s);
3043
3044 if (max_request == s->thread_info.max_request)
3045 return;
3046
3047 s->thread_info.max_request = max_request;
3048
3049 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
3050 pa_sink_input *i;
3051
3052 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
3053 pa_sink_input_update_max_request(i, s->thread_info.max_request);
3054 }
3055 }
3056
3057 /* Called from main thread */
3058 void pa_sink_set_max_request(pa_sink *s, size_t max_request) {
3059 pa_sink_assert_ref(s);
3060 pa_assert_ctl_context();
3061
3062 if (PA_SINK_IS_LINKED(s->state))
3063 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MAX_REQUEST, NULL, max_request, NULL) == 0);
3064 else
3065 pa_sink_set_max_request_within_thread(s, max_request);
3066 }
3067
3068 /* Called from IO thread */
3069 void pa_sink_invalidate_requested_latency(pa_sink *s, pa_bool_t dynamic) {
3070 pa_sink_input *i;
3071 void *state = NULL;
3072
3073 pa_sink_assert_ref(s);
3074 pa_sink_assert_io_context(s);
3075
3076 if ((s->flags & PA_SINK_DYNAMIC_LATENCY))
3077 s->thread_info.requested_latency_valid = FALSE;
3078 else if (dynamic)
3079 return;
3080
3081 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
3082
3083 if (s->update_requested_latency)
3084 s->update_requested_latency(s);
3085
3086 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
3087 if (i->update_sink_requested_latency)
3088 i->update_sink_requested_latency(i);
3089 }
3090 }
3091
3092 /* Called from main thread */
3093 void pa_sink_set_latency_range(pa_sink *s, pa_usec_t min_latency, pa_usec_t max_latency) {
3094 pa_sink_assert_ref(s);
3095 pa_assert_ctl_context();
3096
3097 /* min_latency == 0: no limit
3098 * min_latency anything else: specified limit
3099 *
3100 * Similar for max_latency */
3101
3102 if (min_latency < ABSOLUTE_MIN_LATENCY)
3103 min_latency = ABSOLUTE_MIN_LATENCY;
3104
3105 if (max_latency <= 0 ||
3106 max_latency > ABSOLUTE_MAX_LATENCY)
3107 max_latency = ABSOLUTE_MAX_LATENCY;
3108
3109 pa_assert(min_latency <= max_latency);
3110
3111 /* Hmm, let's see if someone forgot to set PA_SINK_DYNAMIC_LATENCY here... */
3112 pa_assert((min_latency == ABSOLUTE_MIN_LATENCY &&
3113 max_latency == ABSOLUTE_MAX_LATENCY) ||
3114 (s->flags & PA_SINK_DYNAMIC_LATENCY));
3115
3116 if (PA_SINK_IS_LINKED(s->state)) {
3117 pa_usec_t r[2];
3118
3119 r[0] = min_latency;
3120 r[1] = max_latency;
3121
3122 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_LATENCY_RANGE, r, 0, NULL) == 0);
3123 } else
3124 pa_sink_set_latency_range_within_thread(s, min_latency, max_latency);
3125 }
3126
3127 /* Called from main thread */
3128 void pa_sink_get_latency_range(pa_sink *s, pa_usec_t *min_latency, pa_usec_t *max_latency) {
3129 pa_sink_assert_ref(s);
3130 pa_assert_ctl_context();
3131 pa_assert(min_latency);
3132 pa_assert(max_latency);
3133
3134 if (PA_SINK_IS_LINKED(s->state)) {
3135 pa_usec_t r[2] = { 0, 0 };
3136
3137 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY_RANGE, r, 0, NULL) == 0);
3138
3139 *min_latency = r[0];
3140 *max_latency = r[1];
3141 } else {
3142 *min_latency = s->thread_info.min_latency;
3143 *max_latency = s->thread_info.max_latency;
3144 }
3145 }
3146
3147 /* Called from IO thread */
3148 void pa_sink_set_latency_range_within_thread(pa_sink *s, pa_usec_t min_latency, pa_usec_t max_latency) {
3149 pa_sink_assert_ref(s);
3150 pa_sink_assert_io_context(s);
3151
3152 pa_assert(min_latency >= ABSOLUTE_MIN_LATENCY);
3153 pa_assert(max_latency <= ABSOLUTE_MAX_LATENCY);
3154 pa_assert(min_latency <= max_latency);
3155
3156 /* Hmm, let's see if someone forgot to set PA_SINK_DYNAMIC_LATENCY here... */
3157 pa_assert((min_latency == ABSOLUTE_MIN_LATENCY &&
3158 max_latency == ABSOLUTE_MAX_LATENCY) ||
3159 (s->flags & PA_SINK_DYNAMIC_LATENCY));
3160
3161 if (s->thread_info.min_latency == min_latency &&
3162 s->thread_info.max_latency == max_latency)
3163 return;
3164
3165 s->thread_info.min_latency = min_latency;
3166 s->thread_info.max_latency = max_latency;
3167
3168 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
3169 pa_sink_input *i;
3170 void *state = NULL;
3171
3172 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
3173 if (i->update_sink_latency_range)
3174 i->update_sink_latency_range(i);
3175 }
3176
3177 pa_sink_invalidate_requested_latency(s, FALSE);
3178
3179 pa_source_set_latency_range_within_thread(s->monitor_source, min_latency, max_latency);
3180 }
3181
3182 /* Called from main thread */
3183 void pa_sink_set_fixed_latency(pa_sink *s, pa_usec_t latency) {
3184 pa_sink_assert_ref(s);
3185 pa_assert_ctl_context();
3186
3187 if (s->flags & PA_SINK_DYNAMIC_LATENCY) {
3188 pa_assert(latency == 0);
3189 return;
3190 }
3191
3192 if (latency < ABSOLUTE_MIN_LATENCY)
3193 latency = ABSOLUTE_MIN_LATENCY;
3194
3195 if (latency > ABSOLUTE_MAX_LATENCY)
3196 latency = ABSOLUTE_MAX_LATENCY;
3197
3198 if (PA_SINK_IS_LINKED(s->state))
3199 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_FIXED_LATENCY, NULL, (int64_t) latency, NULL) == 0);
3200 else
3201 s->thread_info.fixed_latency = latency;
3202
3203 pa_source_set_fixed_latency(s->monitor_source, latency);
3204 }
3205
3206 /* Called from main thread */
3207 pa_usec_t pa_sink_get_fixed_latency(pa_sink *s) {
3208 pa_usec_t latency;
3209
3210 pa_sink_assert_ref(s);
3211 pa_assert_ctl_context();
3212
3213 if (s->flags & PA_SINK_DYNAMIC_LATENCY)
3214 return 0;
3215
3216 if (PA_SINK_IS_LINKED(s->state))
3217 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_FIXED_LATENCY, &latency, 0, NULL) == 0);
3218 else
3219 latency = s->thread_info.fixed_latency;
3220
3221 return latency;
3222 }
3223
3224 /* Called from IO thread */
3225 void pa_sink_set_fixed_latency_within_thread(pa_sink *s, pa_usec_t latency) {
3226 pa_sink_assert_ref(s);
3227 pa_sink_assert_io_context(s);
3228
3229 if (s->flags & PA_SINK_DYNAMIC_LATENCY) {
3230 pa_assert(latency == 0);
3231 return;
3232 }
3233
3234 pa_assert(latency >= ABSOLUTE_MIN_LATENCY);
3235 pa_assert(latency <= ABSOLUTE_MAX_LATENCY);
3236
3237 if (s->thread_info.fixed_latency == latency)
3238 return;
3239
3240 s->thread_info.fixed_latency = latency;
3241
3242 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
3243 pa_sink_input *i;
3244 void *state = NULL;
3245
3246 PA_HASHMAP_FOREACH(i, s->thread_info.inputs, state)
3247 if (i->update_sink_fixed_latency)
3248 i->update_sink_fixed_latency(i);
3249 }
3250
3251 pa_sink_invalidate_requested_latency(s, FALSE);
3252
3253 pa_source_set_fixed_latency_within_thread(s->monitor_source, latency);
3254 }
3255
3256 /* Called from main context */
3257 void pa_sink_set_latency_offset(pa_sink *s, int64_t offset) {
3258 pa_sink_assert_ref(s);
3259
3260 s->latency_offset = offset;
3261
3262 if (PA_SINK_IS_LINKED(s->state))
3263 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_LATENCY_OFFSET, NULL, offset, NULL) == 0);
3264 else
3265 s->thread_info.latency_offset = offset;
3266 }
3267
3268 /* Called from main context */
3269 size_t pa_sink_get_max_rewind(pa_sink *s) {
3270 size_t r;
3271 pa_assert_ctl_context();
3272 pa_sink_assert_ref(s);
3273
3274 if (!PA_SINK_IS_LINKED(s->state))
3275 return s->thread_info.max_rewind;
3276
3277 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MAX_REWIND, &r, 0, NULL) == 0);
3278
3279 return r;
3280 }
3281
3282 /* Called from main context */
3283 size_t pa_sink_get_max_request(pa_sink *s) {
3284 size_t r;
3285 pa_sink_assert_ref(s);
3286 pa_assert_ctl_context();
3287
3288 if (!PA_SINK_IS_LINKED(s->state))
3289 return s->thread_info.max_request;
3290
3291 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MAX_REQUEST, &r, 0, NULL) == 0);
3292
3293 return r;
3294 }
3295
3296 /* Called from main context */
3297 int pa_sink_set_port(pa_sink *s, const char *name, pa_bool_t save) {
3298 pa_device_port *port;
3299 int ret;
3300
3301 pa_sink_assert_ref(s);
3302 pa_assert_ctl_context();
3303
3304 if (!s->set_port) {
3305 pa_log_debug("set_port() operation not implemented for sink %u \"%s\"", s->index, s->name);
3306 return -PA_ERR_NOTIMPLEMENTED;
3307 }
3308
3309 if (!name)
3310 return -PA_ERR_NOENTITY;
3311
3312 if (!(port = pa_hashmap_get(s->ports, name)))
3313 return -PA_ERR_NOENTITY;
3314
3315 if (s->active_port == port) {
3316 s->save_port = s->save_port || save;
3317 return 0;
3318 }
3319
3320 if (s->flags & PA_SINK_DEFERRED_VOLUME) {
3321 struct sink_message_set_port msg = { .port = port, .ret = 0 };
3322 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_PORT, &msg, 0, NULL) == 0);
3323 ret = msg.ret;
3324 }
3325 else
3326 ret = s->set_port(s, port);
3327
3328 if (ret < 0)
3329 return -PA_ERR_NOENTITY;
3330
3331 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
3332
3333 pa_log_info("Changed port of sink %u \"%s\" to %s", s->index, s->name, port->name);
3334
3335 s->active_port = port;
3336 s->save_port = save;
3337
3338 pa_sink_set_latency_offset(s, s->active_port->latency_offset);
3339
3340 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PORT_CHANGED], s);
3341
3342 return 0;
3343 }
3344
3345 pa_bool_t pa_device_init_icon(pa_proplist *p, pa_bool_t is_sink) {
3346 const char *ff, *c, *t = NULL, *s = "", *profile, *bus;
3347
3348 pa_assert(p);
3349
3350 if (pa_proplist_contains(p, PA_PROP_DEVICE_ICON_NAME))
3351 return TRUE;
3352
3353 if ((ff = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR))) {
3354
3355 if (pa_streq(ff, "microphone"))
3356 t = "audio-input-microphone";
3357 else if (pa_streq(ff, "webcam"))
3358 t = "camera-web";
3359 else if (pa_streq(ff, "computer"))
3360 t = "computer";
3361 else if (pa_streq(ff, "handset"))
3362 t = "phone";
3363 else if (pa_streq(ff, "portable"))
3364 t = "multimedia-player";
3365 else if (pa_streq(ff, "tv"))
3366 t = "video-display";
3367
3368 /*
3369 * The following icons are not part of the icon naming spec,
3370 * because Rodney Dawes sucks as the maintainer of that spec.
3371 *
3372 * http://lists.freedesktop.org/archives/xdg/2009-May/010397.html
3373 */
3374 else if (pa_streq(ff, "headset"))
3375 t = "audio-headset";
3376 else if (pa_streq(ff, "headphone"))
3377 t = "audio-headphones";
3378 else if (pa_streq(ff, "speaker"))
3379 t = "audio-speakers";
3380 else if (pa_streq(ff, "hands-free"))
3381 t = "audio-handsfree";
3382 }
3383
3384 if (!t)
3385 if ((c = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS)))
3386 if (pa_streq(c, "modem"))
3387 t = "modem";
3388
3389 if (!t) {
3390 if (is_sink)
3391 t = "audio-card";
3392 else
3393 t = "audio-input-microphone";
3394 }
3395
3396 if ((profile = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_NAME))) {
3397 if (strstr(profile, "analog"))
3398 s = "-analog";
3399 else if (strstr(profile, "iec958"))
3400 s = "-iec958";
3401 else if (strstr(profile, "hdmi"))
3402 s = "-hdmi";
3403 }
3404
3405 bus = pa_proplist_gets(p, PA_PROP_DEVICE_BUS);
3406
3407 pa_proplist_setf(p, PA_PROP_DEVICE_ICON_NAME, "%s%s%s%s", t, pa_strempty(s), bus ? "-" : "", pa_strempty(bus));
3408
3409 return TRUE;
3410 }
3411
3412 pa_bool_t pa_device_init_description(pa_proplist *p) {
3413 const char *s, *d = NULL, *k;
3414 pa_assert(p);
3415
3416 if (pa_proplist_contains(p, PA_PROP_DEVICE_DESCRIPTION))
3417 return TRUE;
3418
3419 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR)))
3420 if (pa_streq(s, "internal"))
3421 d = _("Built-in Audio");
3422
3423 if (!d)
3424 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS)))
3425 if (pa_streq(s, "modem"))
3426 d = _("Modem");
3427
3428 if (!d)
3429 d = pa_proplist_gets(p, PA_PROP_DEVICE_PRODUCT_NAME);
3430
3431 if (!d)
3432 return FALSE;
3433
3434 k = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_DESCRIPTION);
3435
3436 if (d && k)
3437 pa_proplist_setf(p, PA_PROP_DEVICE_DESCRIPTION, "%s %s", d, k);
3438 else if (d)
3439 pa_proplist_sets(p, PA_PROP_DEVICE_DESCRIPTION, d);
3440
3441 return TRUE;
3442 }
3443
3444 pa_bool_t pa_device_init_intended_roles(pa_proplist *p) {
3445 const char *s;
3446 pa_assert(p);
3447
3448 if (pa_proplist_contains(p, PA_PROP_DEVICE_INTENDED_ROLES))
3449 return TRUE;
3450
3451 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR)))
3452 if (pa_streq(s, "handset") || pa_streq(s, "hands-free")
3453 || pa_streq(s, "headset")) {
3454 pa_proplist_sets(p, PA_PROP_DEVICE_INTENDED_ROLES, "phone");
3455 return TRUE;
3456 }
3457
3458 return FALSE;
3459 }
3460
3461 unsigned pa_device_init_priority(pa_proplist *p) {
3462 const char *s;
3463 unsigned priority = 0;
3464
3465 pa_assert(p);
3466
3467 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_CLASS))) {
3468
3469 if (pa_streq(s, "sound"))
3470 priority += 9000;
3471 else if (!pa_streq(s, "modem"))
3472 priority += 1000;
3473 }
3474
3475 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_FORM_FACTOR))) {
3476
3477 if (pa_streq(s, "internal"))
3478 priority += 900;
3479 else if (pa_streq(s, "speaker"))
3480 priority += 500;
3481 else if (pa_streq(s, "headphone"))
3482 priority += 400;
3483 }
3484
3485 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_BUS))) {
3486
3487 if (pa_streq(s, "pci"))
3488 priority += 50;
3489 else if (pa_streq(s, "usb"))
3490 priority += 40;
3491 else if (pa_streq(s, "bluetooth"))
3492 priority += 30;
3493 }
3494
3495 if ((s = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_NAME))) {
3496
3497 if (pa_startswith(s, "analog-"))
3498 priority += 9;
3499 else if (pa_startswith(s, "iec958-"))
3500 priority += 8;
3501 }
3502
3503 return priority;
3504 }
3505
3506 PA_STATIC_FLIST_DECLARE(pa_sink_volume_change, 0, pa_xfree);
3507
3508 /* Called from the IO thread. */
3509 static pa_sink_volume_change *pa_sink_volume_change_new(pa_sink *s) {
3510 pa_sink_volume_change *c;
3511 if (!(c = pa_flist_pop(PA_STATIC_FLIST_GET(pa_sink_volume_change))))
3512 c = pa_xnew(pa_sink_volume_change, 1);
3513
3514 PA_LLIST_INIT(pa_sink_volume_change, c);
3515 c->at = 0;
3516 pa_cvolume_reset(&c->hw_volume, s->sample_spec.channels);
3517 return c;
3518 }
3519
3520 /* Called from the IO thread. */
3521 static void pa_sink_volume_change_free(pa_sink_volume_change *c) {
3522 pa_assert(c);
3523 if (pa_flist_push(PA_STATIC_FLIST_GET(pa_sink_volume_change), c) < 0)
3524 pa_xfree(c);
3525 }
3526
3527 /* Called from the IO thread. */
3528 void pa_sink_volume_change_push(pa_sink *s) {
3529 pa_sink_volume_change *c = NULL;
3530 pa_sink_volume_change *nc = NULL;
3531 uint32_t safety_margin = s->thread_info.volume_change_safety_margin;
3532
3533 const char *direction = NULL;
3534
3535 pa_assert(s);
3536 nc = pa_sink_volume_change_new(s);
3537
3538 /* NOTE: There is already more different volumes in pa_sink that I can remember.
3539 * Adding one more volume for HW would get us rid of this, but I am trying
3540 * to survive with the ones we already have. */
3541 pa_sw_cvolume_divide(&nc->hw_volume, &s->real_volume, &s->soft_volume);
3542
3543 if (!s->thread_info.volume_changes && pa_cvolume_equal(&nc->hw_volume, &s->thread_info.current_hw_volume)) {
3544 pa_log_debug("Volume not changing");
3545 pa_sink_volume_change_free(nc);
3546 return;
3547 }
3548
3549 nc->at = pa_sink_get_latency_within_thread(s);
3550 nc->at += pa_rtclock_now() + s->thread_info.volume_change_extra_delay;
3551
3552 if (s->thread_info.volume_changes_tail) {
3553 for (c = s->thread_info.volume_changes_tail; c; c = c->prev) {
3554 /* If volume is going up let's do it a bit late. If it is going
3555 * down let's do it a bit early. */
3556 if (pa_cvolume_avg(&nc->hw_volume) > pa_cvolume_avg(&c->hw_volume)) {
3557 if (nc->at + safety_margin > c->at) {
3558 nc->at += safety_margin;
3559 direction = "up";
3560 break;
3561 }
3562 }
3563 else if (nc->at - safety_margin > c->at) {
3564 nc->at -= safety_margin;
3565 direction = "down";
3566 break;
3567 }
3568 }
3569 }
3570
3571 if (c == NULL) {
3572 if (pa_cvolume_avg(&nc->hw_volume) > pa_cvolume_avg(&s->thread_info.current_hw_volume)) {
3573 nc->at += safety_margin;
3574 direction = "up";
3575 } else {
3576 nc->at -= safety_margin;
3577 direction = "down";
3578 }
3579 PA_LLIST_PREPEND(pa_sink_volume_change, s->thread_info.volume_changes, nc);
3580 }
3581 else {
3582 PA_LLIST_INSERT_AFTER(pa_sink_volume_change, s->thread_info.volume_changes, c, nc);
3583 }
3584
3585 pa_log_debug("Volume going %s to %d at %llu", direction, pa_cvolume_avg(&nc->hw_volume), (long long unsigned) nc->at);
3586
3587 /* We can ignore volume events that came earlier but should happen later than this. */
3588 PA_LLIST_FOREACH(c, nc->next) {
3589 pa_log_debug("Volume change to %d at %llu was dropped", pa_cvolume_avg(&c->hw_volume), (long long unsigned) c->at);
3590 pa_sink_volume_change_free(c);
3591 }
3592 nc->next = NULL;
3593 s->thread_info.volume_changes_tail = nc;
3594 }
3595
3596 /* Called from the IO thread. */
3597 static void pa_sink_volume_change_flush(pa_sink *s) {
3598 pa_sink_volume_change *c = s->thread_info.volume_changes;
3599 pa_assert(s);
3600 s->thread_info.volume_changes = NULL;
3601 s->thread_info.volume_changes_tail = NULL;
3602 while (c) {
3603 pa_sink_volume_change *next = c->next;
3604 pa_sink_volume_change_free(c);
3605 c = next;
3606 }
3607 }
3608
3609 /* Called from the IO thread. */
3610 pa_bool_t pa_sink_volume_change_apply(pa_sink *s, pa_usec_t *usec_to_next) {
3611 pa_usec_t now;
3612 pa_bool_t ret = FALSE;
3613
3614 pa_assert(s);
3615
3616 if (!s->thread_info.volume_changes || !PA_SINK_IS_LINKED(s->state)) {
3617 if (usec_to_next)
3618 *usec_to_next = 0;
3619 return ret;
3620 }
3621
3622 pa_assert(s->write_volume);
3623
3624 now = pa_rtclock_now();
3625
3626 while (s->thread_info.volume_changes && now >= s->thread_info.volume_changes->at) {
3627 pa_sink_volume_change *c = s->thread_info.volume_changes;
3628 PA_LLIST_REMOVE(pa_sink_volume_change, s->thread_info.volume_changes, c);
3629 pa_log_debug("Volume change to %d at %llu was written %llu usec late",
3630 pa_cvolume_avg(&c->hw_volume), (long long unsigned) c->at, (long long unsigned) (now - c->at));
3631 ret = TRUE;
3632 s->thread_info.current_hw_volume = c->hw_volume;
3633 pa_sink_volume_change_free(c);
3634 }
3635
3636 if (ret)
3637 s->write_volume(s);
3638
3639 if (s->thread_info.volume_changes) {
3640 if (usec_to_next)
3641 *usec_to_next = s->thread_info.volume_changes->at - now;
3642 if (pa_log_ratelimit(PA_LOG_DEBUG))
3643 pa_log_debug("Next volume change in %lld usec", (long long) (s->thread_info.volume_changes->at - now));
3644 }
3645 else {
3646 if (usec_to_next)
3647 *usec_to_next = 0;
3648 s->thread_info.volume_changes_tail = NULL;
3649 }
3650 return ret;
3651 }
3652
3653 /* Called from the IO thread. */
3654 static void pa_sink_volume_change_rewind(pa_sink *s, size_t nbytes) {
3655 /* All the queued volume events later than current latency are shifted to happen earlier. */
3656 pa_sink_volume_change *c;
3657 pa_volume_t prev_vol = pa_cvolume_avg(&s->thread_info.current_hw_volume);
3658 pa_usec_t rewound = pa_bytes_to_usec(nbytes, &s->sample_spec);
3659 pa_usec_t limit = pa_sink_get_latency_within_thread(s);
3660
3661 pa_log_debug("latency = %lld", (long long) limit);
3662 limit += pa_rtclock_now() + s->thread_info.volume_change_extra_delay;
3663
3664 PA_LLIST_FOREACH(c, s->thread_info.volume_changes) {
3665 pa_usec_t modified_limit = limit;
3666 if (prev_vol > pa_cvolume_avg(&c->hw_volume))
3667 modified_limit -= s->thread_info.volume_change_safety_margin;
3668 else
3669 modified_limit += s->thread_info.volume_change_safety_margin;
3670 if (c->at > modified_limit) {
3671 c->at -= rewound;
3672 if (c->at < modified_limit)
3673 c->at = modified_limit;
3674 }
3675 prev_vol = pa_cvolume_avg(&c->hw_volume);
3676 }
3677 pa_sink_volume_change_apply(s, NULL);
3678 }
3679
3680 /* Called from the main thread */
3681 /* Gets the list of formats supported by the sink. The members and idxset must
3682 * be freed by the caller. */
3683 pa_idxset* pa_sink_get_formats(pa_sink *s) {
3684 pa_idxset *ret;
3685
3686 pa_assert(s);
3687
3688 if (s->get_formats) {
3689 /* Sink supports format query, all is good */
3690 ret = s->get_formats(s);
3691 } else {
3692 /* Sink doesn't support format query, so assume it does PCM */
3693 pa_format_info *f = pa_format_info_new();
3694 f->encoding = PA_ENCODING_PCM;
3695
3696 ret = pa_idxset_new(NULL, NULL);
3697 pa_idxset_put(ret, f, NULL);
3698 }
3699
3700 return ret;
3701 }
3702
3703 /* Called from the main thread */
3704 /* Allows an external source to set what formats a sink supports if the sink
3705 * permits this. The function makes a copy of the formats on success. */
3706 pa_bool_t pa_sink_set_formats(pa_sink *s, pa_idxset *formats) {
3707 pa_assert(s);
3708 pa_assert(formats);
3709
3710 if (s->set_formats)
3711 /* Sink supports setting formats -- let's give it a shot */
3712 return s->set_formats(s, formats);
3713 else
3714 /* Sink doesn't support setting this -- bail out */
3715 return FALSE;
3716 }
3717
3718 /* Called from the main thread */
3719 /* Checks if the sink can accept this format */
3720 pa_bool_t pa_sink_check_format(pa_sink *s, pa_format_info *f)
3721 {
3722 pa_idxset *formats = NULL;
3723 pa_bool_t ret = FALSE;
3724
3725 pa_assert(s);
3726 pa_assert(f);
3727
3728 formats = pa_sink_get_formats(s);
3729
3730 if (formats) {
3731 pa_format_info *finfo_device;
3732 uint32_t i;
3733
3734 PA_IDXSET_FOREACH(finfo_device, formats, i) {
3735 if (pa_format_info_is_compatible(finfo_device, f)) {
3736 ret = TRUE;
3737 break;
3738 }
3739 }
3740
3741 pa_idxset_free(formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
3742 }
3743
3744 return ret;
3745 }
3746
3747 /* Called from the main thread */
3748 /* Calculates the intersection between formats supported by the sink and
3749 * in_formats, and returns these, in the order of the sink's formats. */
3750 pa_idxset* pa_sink_check_formats(pa_sink *s, pa_idxset *in_formats) {
3751 pa_idxset *out_formats = pa_idxset_new(NULL, NULL), *sink_formats = NULL;
3752 pa_format_info *f_sink, *f_in;
3753 uint32_t i, j;
3754
3755 pa_assert(s);
3756
3757 if (!in_formats || pa_idxset_isempty(in_formats))
3758 goto done;
3759
3760 sink_formats = pa_sink_get_formats(s);
3761
3762 PA_IDXSET_FOREACH(f_sink, sink_formats, i) {
3763 PA_IDXSET_FOREACH(f_in, in_formats, j) {
3764 if (pa_format_info_is_compatible(f_sink, f_in))
3765 pa_idxset_put(out_formats, pa_format_info_copy(f_in), NULL);
3766 }
3767 }
3768
3769 done:
3770 if (sink_formats)
3771 pa_idxset_free(sink_formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
3772
3773 return out_formats;
3774 }