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