]> code.delx.au - pulseaudio/blob - src/pulsecore/sink.c
Add "base volume" field to sinks/sources
[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 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 <stdlib.h>
28 #include <string.h>
29 #include <stdio.h>
30
31 #include <pulse/introspect.h>
32 #include <pulse/utf8.h>
33 #include <pulse/xmalloc.h>
34 #include <pulse/timeval.h>
35
36 #include <pulsecore/sink-input.h>
37 #include <pulsecore/namereg.h>
38 #include <pulsecore/core-util.h>
39 #include <pulsecore/sample-util.h>
40 #include <pulsecore/core-subscribe.h>
41 #include <pulsecore/log.h>
42 #include <pulsecore/macro.h>
43 #include <pulsecore/play-memblockq.h>
44
45 #include "sink.h"
46
47 #define MAX_MIX_CHANNELS 32
48 #define MIX_BUFFER_LENGTH (PA_PAGE_SIZE)
49 #define DEFAULT_MIN_LATENCY (4*PA_USEC_PER_MSEC)
50
51 static PA_DEFINE_CHECK_TYPE(pa_sink, pa_msgobject);
52
53 static void sink_free(pa_object *s);
54
55 pa_sink_new_data* pa_sink_new_data_init(pa_sink_new_data *data) {
56 pa_assert(data);
57
58 memset(data, 0, sizeof(*data));
59 data->proplist = pa_proplist_new();
60
61 return data;
62 }
63
64 void pa_sink_new_data_set_name(pa_sink_new_data *data, const char *name) {
65 pa_assert(data);
66
67 pa_xfree(data->name);
68 data->name = pa_xstrdup(name);
69 }
70
71 void pa_sink_new_data_set_sample_spec(pa_sink_new_data *data, const pa_sample_spec *spec) {
72 pa_assert(data);
73
74 if ((data->sample_spec_is_set = !!spec))
75 data->sample_spec = *spec;
76 }
77
78 void pa_sink_new_data_set_channel_map(pa_sink_new_data *data, const pa_channel_map *map) {
79 pa_assert(data);
80
81 if ((data->channel_map_is_set = !!map))
82 data->channel_map = *map;
83 }
84
85 void pa_sink_new_data_set_volume(pa_sink_new_data *data, const pa_cvolume *volume) {
86 pa_assert(data);
87
88 if ((data->volume_is_set = !!volume))
89 data->volume = *volume;
90 }
91
92 void pa_sink_new_data_set_muted(pa_sink_new_data *data, pa_bool_t mute) {
93 pa_assert(data);
94
95 data->muted_is_set = TRUE;
96 data->muted = !!mute;
97 }
98
99 void pa_sink_new_data_done(pa_sink_new_data *data) {
100 pa_assert(data);
101
102 pa_xfree(data->name);
103 pa_proplist_free(data->proplist);
104 }
105
106 /* Called from main context */
107 static void reset_callbacks(pa_sink *s) {
108 pa_assert(s);
109
110 s->set_state = NULL;
111 s->get_volume = NULL;
112 s->set_volume = NULL;
113 s->get_mute = NULL;
114 s->set_mute = NULL;
115 s->request_rewind = NULL;
116 s->update_requested_latency = NULL;
117 }
118
119 /* Called from main context */
120 pa_sink* pa_sink_new(
121 pa_core *core,
122 pa_sink_new_data *data,
123 pa_sink_flags_t flags) {
124
125 pa_sink *s;
126 const char *name;
127 char st[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
128 pa_source_new_data source_data;
129 const char *dn;
130
131 pa_assert(core);
132 pa_assert(data);
133 pa_assert(data->name);
134
135 s = pa_msgobject_new(pa_sink);
136
137 if (!(name = pa_namereg_register(core, data->name, PA_NAMEREG_SINK, s, data->namereg_fail))) {
138 pa_xfree(s);
139 return NULL;
140 }
141
142 pa_sink_new_data_set_name(data, name);
143
144 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_NEW], data) < 0) {
145 pa_xfree(s);
146 pa_namereg_unregister(core, name);
147 return NULL;
148 }
149
150 pa_return_null_if_fail(!data->driver || pa_utf8_valid(data->driver));
151 pa_return_null_if_fail(data->name && pa_utf8_valid(data->name) && data->name[0]);
152
153 pa_return_null_if_fail(data->sample_spec_is_set && pa_sample_spec_valid(&data->sample_spec));
154
155 if (!data->channel_map_is_set)
156 pa_return_null_if_fail(pa_channel_map_init_auto(&data->channel_map, data->sample_spec.channels, PA_CHANNEL_MAP_DEFAULT));
157
158 pa_return_null_if_fail(pa_channel_map_valid(&data->channel_map));
159 pa_return_null_if_fail(data->channel_map.channels == data->sample_spec.channels);
160
161 if (!data->volume_is_set)
162 pa_cvolume_reset(&data->volume, data->sample_spec.channels);
163
164 pa_return_null_if_fail(pa_cvolume_valid(&data->volume));
165 pa_return_null_if_fail(data->volume.channels == data->sample_spec.channels);
166
167 if (!data->muted_is_set)
168 data->muted = FALSE;
169
170 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_FIXATE], data) < 0) {
171 pa_xfree(s);
172 pa_namereg_unregister(core, name);
173 return NULL;
174 }
175
176 s->parent.parent.free = sink_free;
177 s->parent.process_msg = pa_sink_process_msg;
178
179 s->core = core;
180 s->state = PA_SINK_INIT;
181 s->flags = flags;
182 s->name = pa_xstrdup(name);
183 s->proplist = pa_proplist_copy(data->proplist);
184 s->driver = pa_xstrdup(data->driver);
185 s->module = data->module;
186
187 s->sample_spec = data->sample_spec;
188 s->channel_map = data->channel_map;
189
190 s->inputs = pa_idxset_new(NULL, NULL);
191 s->n_corked = 0;
192
193 s->volume = data->volume;
194 s->base_volume = PA_VOLUME_NORM;
195 s->muted = data->muted;
196 s->refresh_volume = s->refresh_muted = FALSE;
197
198 reset_callbacks(s);
199 s->userdata = NULL;
200
201 s->asyncmsgq = NULL;
202 s->rtpoll = NULL;
203
204 pa_silence_memchunk_get(
205 &core->silence_cache,
206 core->mempool,
207 &s->silence,
208 &s->sample_spec,
209 0);
210
211 s->thread_info.inputs = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
212 pa_cvolume_reset(&s->thread_info.soft_volume, s->sample_spec.channels);
213 s->thread_info.soft_muted = FALSE;
214 s->thread_info.state = s->state;
215 s->thread_info.rewind_nbytes = 0;
216 s->thread_info.rewind_requested = FALSE;
217 s->thread_info.max_rewind = 0;
218 s->thread_info.max_request = 0;
219 s->thread_info.requested_latency_valid = FALSE;
220 s->thread_info.requested_latency = 0;
221 s->thread_info.min_latency = DEFAULT_MIN_LATENCY;
222 s->thread_info.max_latency = 0;
223
224 pa_assert_se(pa_idxset_put(core->sinks, s, &s->index) >= 0);
225
226 pa_log_info("Created sink %u \"%s\" with sample spec %s and channel map %s",
227 s->index,
228 s->name,
229 pa_sample_spec_snprint(st, sizeof(st), &s->sample_spec),
230 pa_channel_map_snprint(cm, sizeof(cm), &s->channel_map));
231
232 pa_source_new_data_init(&source_data);
233 pa_source_new_data_set_sample_spec(&source_data, &s->sample_spec);
234 pa_source_new_data_set_channel_map(&source_data, &s->channel_map);
235 source_data.name = pa_sprintf_malloc("%s.monitor", name);
236 source_data.driver = data->driver;
237 source_data.module = data->module;
238
239 dn = pa_proplist_gets(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
240 pa_proplist_setf(source_data.proplist, PA_PROP_DEVICE_DESCRIPTION, "Monitor of %s", dn ? dn : s->name);
241 pa_proplist_sets(source_data.proplist, PA_PROP_DEVICE_CLASS, "monitor");
242
243 s->monitor_source = pa_source_new(core, &source_data, 0);
244
245 pa_source_new_data_done(&source_data);
246
247 if (!s->monitor_source) {
248 pa_sink_unlink(s);
249 pa_sink_unref(s);
250 return NULL;
251 }
252
253 s->monitor_source->monitor_of = s;
254
255 pa_source_set_latency_range(s->monitor_source, s->thread_info.min_latency, s->thread_info.max_latency);
256 pa_source_set_max_rewind(s->monitor_source, s->thread_info.max_rewind);
257
258 return s;
259 }
260
261 /* Called from main context */
262 static int sink_set_state(pa_sink *s, pa_sink_state_t state) {
263 int ret;
264 pa_bool_t suspend_change;
265 pa_sink_state_t original_state;
266
267 pa_assert(s);
268
269 if (s->state == state)
270 return 0;
271
272 original_state = s->state;
273
274 suspend_change =
275 (original_state == PA_SINK_SUSPENDED && PA_SINK_IS_OPENED(state)) ||
276 (PA_SINK_IS_OPENED(original_state) && state == PA_SINK_SUSPENDED);
277
278 if (s->set_state)
279 if ((ret = s->set_state(s, state)) < 0)
280 return ret;
281
282 if (s->asyncmsgq)
283 if ((ret = pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_STATE, PA_UINT_TO_PTR(state), 0, NULL)) < 0) {
284
285 if (s->set_state)
286 s->set_state(s, original_state);
287
288 return ret;
289 }
290
291 s->state = state;
292
293 if (suspend_change) {
294 pa_sink_input *i;
295 uint32_t idx;
296
297 /* We're suspending or resuming, tell everyone about it */
298
299 for (i = PA_SINK_INPUT(pa_idxset_first(s->inputs, &idx)); i; i = PA_SINK_INPUT(pa_idxset_next(s->inputs, &idx)))
300 if (i->suspend)
301 i->suspend(i, state == PA_SINK_SUSPENDED);
302 }
303
304 if (state != PA_SINK_UNLINKED) /* if we enter UNLINKED state pa_sink_unlink() will fire the apropriate events */
305 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED], s);
306
307 return 0;
308 }
309
310 /* Called from main context */
311 void pa_sink_put(pa_sink* s) {
312 pa_sink_assert_ref(s);
313
314 pa_assert(s->state == PA_SINK_INIT);
315
316 /* The following fields must be initialized properly when calling _put() */
317 pa_assert(s->asyncmsgq);
318 pa_assert(s->rtpoll);
319 pa_assert(!s->thread_info.min_latency || !s->thread_info.max_latency ||
320 s->thread_info.min_latency <= s->thread_info.max_latency);
321
322 if (!(s->flags & PA_SINK_HW_VOLUME_CTRL)) {
323 s->flags |= PA_SINK_DECIBEL_VOLUME;
324
325 s->thread_info.soft_volume = s->volume;
326 s->thread_info.soft_muted = s->muted;
327 }
328
329 pa_assert_se(sink_set_state(s, PA_SINK_IDLE) == 0);
330
331 pa_source_put(s->monitor_source);
332
333 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_NEW, s->index);
334 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PUT], s);
335 }
336
337 /* Called from main context */
338 void pa_sink_unlink(pa_sink* s) {
339 pa_bool_t linked;
340 pa_sink_input *i, *j = NULL;
341
342 pa_assert(s);
343
344 /* Please note that pa_sink_unlink() does more than simply
345 * reversing pa_sink_put(). It also undoes the registrations
346 * already done in pa_sink_new()! */
347
348 /* All operations here shall be idempotent, i.e. pa_sink_unlink()
349 * may be called multiple times on the same sink without bad
350 * effects. */
351
352 linked = PA_SINK_IS_LINKED(s->state);
353
354 if (linked)
355 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_UNLINK], s);
356
357 if (s->state != PA_SINK_UNLINKED)
358 pa_namereg_unregister(s->core, s->name);
359 pa_idxset_remove_by_data(s->core->sinks, s, NULL);
360
361 while ((i = pa_idxset_first(s->inputs, NULL))) {
362 pa_assert(i != j);
363 pa_sink_input_kill(i);
364 j = i;
365 }
366
367 if (linked)
368 sink_set_state(s, PA_SINK_UNLINKED);
369 else
370 s->state = PA_SINK_UNLINKED;
371
372 reset_callbacks(s);
373
374 if (s->monitor_source)
375 pa_source_unlink(s->monitor_source);
376
377 if (linked) {
378 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK | PA_SUBSCRIPTION_EVENT_REMOVE, s->index);
379 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_UNLINK_POST], s);
380 }
381 }
382
383 /* Called from main context */
384 static void sink_free(pa_object *o) {
385 pa_sink *s = PA_SINK(o);
386 pa_sink_input *i;
387
388 pa_assert(s);
389 pa_assert(pa_sink_refcnt(s) == 0);
390
391 if (PA_SINK_IS_LINKED(s->state))
392 pa_sink_unlink(s);
393
394 pa_log_info("Freeing sink %u \"%s\"", s->index, s->name);
395
396 if (s->monitor_source) {
397 pa_source_unref(s->monitor_source);
398 s->monitor_source = NULL;
399 }
400
401 pa_idxset_free(s->inputs, NULL, NULL);
402
403 while ((i = pa_hashmap_steal_first(s->thread_info.inputs)))
404 pa_sink_input_unref(i);
405
406 pa_hashmap_free(s->thread_info.inputs, NULL, NULL);
407
408 if (s->silence.memblock)
409 pa_memblock_unref(s->silence.memblock);
410
411 pa_xfree(s->name);
412 pa_xfree(s->driver);
413
414 if (s->proplist)
415 pa_proplist_free(s->proplist);
416
417 pa_xfree(s);
418 }
419
420 /* Called from main context */
421 void pa_sink_set_asyncmsgq(pa_sink *s, pa_asyncmsgq *q) {
422 pa_sink_assert_ref(s);
423
424 s->asyncmsgq = q;
425
426 if (s->monitor_source)
427 pa_source_set_asyncmsgq(s->monitor_source, q);
428 }
429
430 /* Called from main context */
431 void pa_sink_set_rtpoll(pa_sink *s, pa_rtpoll *p) {
432 pa_sink_assert_ref(s);
433
434 s->rtpoll = p;
435 if (s->monitor_source)
436 pa_source_set_rtpoll(s->monitor_source, p);
437 }
438
439 /* Called from main context */
440 int pa_sink_update_status(pa_sink*s) {
441 pa_sink_assert_ref(s);
442 pa_assert(PA_SINK_IS_LINKED(s->state));
443
444 if (s->state == PA_SINK_SUSPENDED)
445 return 0;
446
447 return sink_set_state(s, pa_sink_used_by(s) ? PA_SINK_RUNNING : PA_SINK_IDLE);
448 }
449
450 /* Called from main context */
451 int pa_sink_suspend(pa_sink *s, pa_bool_t suspend) {
452 pa_sink_assert_ref(s);
453 pa_assert(PA_SINK_IS_LINKED(s->state));
454
455 if (suspend)
456 return sink_set_state(s, PA_SINK_SUSPENDED);
457 else
458 return sink_set_state(s, pa_sink_used_by(s) ? PA_SINK_RUNNING : PA_SINK_IDLE);
459 }
460
461 /* Called from IO thread context */
462 void pa_sink_process_rewind(pa_sink *s, size_t nbytes) {
463 pa_sink_input *i;
464 void *state = NULL;
465 pa_sink_assert_ref(s);
466 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
467
468 s->thread_info.rewind_nbytes = 0;
469 s->thread_info.rewind_requested = FALSE;
470
471 if (nbytes > 0)
472 pa_log_debug("Processing rewind...");
473
474 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL))) {
475 pa_sink_input_assert_ref(i);
476 pa_sink_input_process_rewind(i, nbytes);
477 }
478
479 if (nbytes > 0)
480 if (s->monitor_source && PA_SOURCE_IS_OPENED(s->monitor_source->thread_info.state))
481 pa_source_process_rewind(s->monitor_source, nbytes);
482 }
483
484 /* Called from IO thread context */
485 static unsigned fill_mix_info(pa_sink *s, size_t *length, pa_mix_info *info, unsigned maxinfo) {
486 pa_sink_input *i;
487 unsigned n = 0;
488 void *state = NULL;
489 size_t mixlength = *length;
490
491 pa_sink_assert_ref(s);
492 pa_assert(info);
493
494 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)) && maxinfo > 0) {
495 pa_sink_input_assert_ref(i);
496
497 if (pa_sink_input_peek(i, *length, &info->chunk, &info->volume) < 0)
498 continue;
499
500 if (mixlength == 0 || info->chunk.length < mixlength)
501 mixlength = info->chunk.length;
502
503 if (pa_memblock_is_silence(info->chunk.memblock)) {
504 pa_memblock_unref(info->chunk.memblock);
505 continue;
506 }
507
508 info->userdata = pa_sink_input_ref(i);
509
510 pa_assert(info->chunk.memblock);
511 pa_assert(info->chunk.length > 0);
512
513 info++;
514 n++;
515 maxinfo--;
516 }
517
518 if (mixlength > 0)
519 *length = mixlength;
520
521 return n;
522 }
523
524 /* Called from IO thread context */
525 static void inputs_drop(pa_sink *s, pa_mix_info *info, unsigned n, pa_memchunk *result) {
526 pa_sink_input *i;
527 void *state = NULL;
528 unsigned p = 0;
529 unsigned n_unreffed = 0;
530
531 pa_sink_assert_ref(s);
532 pa_assert(result);
533 pa_assert(result->memblock);
534 pa_assert(result->length > 0);
535
536 /* We optimize for the case where the order of the inputs has not changed */
537
538 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL))) {
539 unsigned j;
540 pa_mix_info* m = NULL;
541
542 pa_sink_input_assert_ref(i);
543
544 /* Let's try to find the matching entry info the pa_mix_info array */
545 for (j = 0; j < n; j ++) {
546
547 if (info[p].userdata == i) {
548 m = info + p;
549 break;
550 }
551
552 p++;
553 if (p >= n)
554 p = 0;
555 }
556
557 /* Drop read data */
558 pa_sink_input_drop(i, result->length);
559
560 if (s->monitor_source && PA_SOURCE_IS_OPENED(pa_source_get_state(s->monitor_source))) {
561
562 if (pa_hashmap_size(i->thread_info.direct_outputs) > 0) {
563 void *ostate = NULL;
564 pa_source_output *o;
565 pa_memchunk c;
566
567 if (m && m->chunk.memblock) {
568 c = m->chunk;
569 pa_memblock_ref(c.memblock);
570 pa_assert(result->length <= c.length);
571 c.length = result->length;
572
573 pa_memchunk_make_writable(&c, 0);
574 pa_volume_memchunk(&c, &s->sample_spec, &m->volume);
575 } else {
576 c = s->silence;
577 pa_memblock_ref(c.memblock);
578 pa_assert(result->length <= c.length);
579 c.length = result->length;
580 }
581
582 while ((o = pa_hashmap_iterate(i->thread_info.direct_outputs, &ostate, NULL))) {
583 pa_source_output_assert_ref(o);
584 pa_assert(o->direct_on_input == i);
585 pa_source_post_direct(s->monitor_source, o, &c);
586 }
587
588 pa_memblock_unref(c.memblock);
589 }
590 }
591
592 if (m) {
593 if (m->chunk.memblock)
594 pa_memblock_unref(m->chunk.memblock);
595 pa_memchunk_reset(&m->chunk);
596
597 pa_sink_input_unref(m->userdata);
598 m->userdata = NULL;
599
600 n_unreffed += 1;
601 }
602 }
603
604 /* Now drop references to entries that are included in the
605 * pa_mix_info array but don't exist anymore */
606
607 if (n_unreffed < n) {
608 for (; n > 0; info++, n--) {
609 if (info->userdata)
610 pa_sink_input_unref(info->userdata);
611 if (info->chunk.memblock)
612 pa_memblock_unref(info->chunk.memblock);
613 }
614 }
615
616 if (s->monitor_source && PA_SOURCE_IS_OPENED(pa_source_get_state(s->monitor_source)))
617 pa_source_post(s->monitor_source, result);
618 }
619
620 /* Called from IO thread context */
621 void pa_sink_render(pa_sink*s, size_t length, pa_memchunk *result) {
622 pa_mix_info info[MAX_MIX_CHANNELS];
623 unsigned n;
624 size_t block_size_max;
625
626 pa_sink_assert_ref(s);
627 pa_assert(PA_SINK_IS_OPENED(s->thread_info.state));
628 pa_assert(pa_frame_aligned(length, &s->sample_spec));
629 pa_assert(result);
630
631 pa_sink_ref(s);
632
633 pa_assert(!s->thread_info.rewind_requested);
634 pa_assert(s->thread_info.rewind_nbytes == 0);
635
636 if (length <= 0)
637 length = pa_frame_align(MIX_BUFFER_LENGTH, &s->sample_spec);
638
639 block_size_max = pa_mempool_block_size_max(s->core->mempool);
640 if (length > block_size_max)
641 length = pa_frame_align(block_size_max, &s->sample_spec);
642
643 pa_assert(length > 0);
644
645 n = s->thread_info.state == PA_SINK_RUNNING ? fill_mix_info(s, &length, info, MAX_MIX_CHANNELS) : 0;
646
647 if (n == 0) {
648
649 *result = s->silence;
650 pa_memblock_ref(result->memblock);
651
652 if (result->length > length)
653 result->length = length;
654
655 } else if (n == 1) {
656 pa_cvolume volume;
657
658 *result = info[0].chunk;
659 pa_memblock_ref(result->memblock);
660
661 if (result->length > length)
662 result->length = length;
663
664 pa_sw_cvolume_multiply(&volume, &s->thread_info.soft_volume, &info[0].volume);
665
666 if (s->thread_info.soft_muted || !pa_cvolume_is_norm(&volume)) {
667 pa_memchunk_make_writable(result, 0);
668 if (s->thread_info.soft_muted || pa_cvolume_is_muted(&volume))
669 pa_silence_memchunk(result, &s->sample_spec);
670 else
671 pa_volume_memchunk(result, &s->sample_spec, &volume);
672 }
673 } else {
674 void *ptr;
675 result->memblock = pa_memblock_new(s->core->mempool, length);
676
677 ptr = pa_memblock_acquire(result->memblock);
678 result->length = pa_mix(info, n,
679 ptr, length,
680 &s->sample_spec,
681 &s->thread_info.soft_volume,
682 s->thread_info.soft_muted);
683 pa_memblock_release(result->memblock);
684
685 result->index = 0;
686 }
687
688 if (s->thread_info.state == PA_SINK_RUNNING)
689 inputs_drop(s, info, n, result);
690
691 pa_sink_unref(s);
692 }
693
694 /* Called from IO thread context */
695 void pa_sink_render_into(pa_sink*s, pa_memchunk *target) {
696 pa_mix_info info[MAX_MIX_CHANNELS];
697 unsigned n;
698 size_t length, block_size_max;
699
700 pa_sink_assert_ref(s);
701 pa_assert(PA_SINK_IS_OPENED(s->thread_info.state));
702 pa_assert(target);
703 pa_assert(target->memblock);
704 pa_assert(target->length > 0);
705 pa_assert(pa_frame_aligned(target->length, &s->sample_spec));
706
707 pa_sink_ref(s);
708
709 pa_assert(!s->thread_info.rewind_requested);
710 pa_assert(s->thread_info.rewind_nbytes == 0);
711
712 length = target->length;
713 block_size_max = pa_mempool_block_size_max(s->core->mempool);
714 if (length > block_size_max)
715 length = pa_frame_align(block_size_max, &s->sample_spec);
716
717 pa_assert(length > 0);
718
719 n = s->thread_info.state == PA_SINK_RUNNING ? fill_mix_info(s, &length, info, MAX_MIX_CHANNELS) : 0;
720
721 if (n == 0) {
722 if (target->length > length)
723 target->length = length;
724
725 pa_silence_memchunk(target, &s->sample_spec);
726 } else if (n == 1) {
727 pa_cvolume volume;
728
729 if (target->length > length)
730 target->length = length;
731
732 pa_sw_cvolume_multiply(&volume, &s->thread_info.soft_volume, &info[0].volume);
733
734 if (s->thread_info.soft_muted || pa_cvolume_is_muted(&volume))
735 pa_silence_memchunk(target, &s->sample_spec);
736 else {
737 pa_memchunk vchunk;
738
739 vchunk = info[0].chunk;
740 pa_memblock_ref(vchunk.memblock);
741
742 if (vchunk.length > length)
743 vchunk.length = length;
744
745 if (!pa_cvolume_is_norm(&volume)) {
746 pa_memchunk_make_writable(&vchunk, 0);
747 pa_volume_memchunk(&vchunk, &s->sample_spec, &volume);
748 }
749
750 pa_memchunk_memcpy(target, &vchunk);
751 pa_memblock_unref(vchunk.memblock);
752 }
753
754 } else {
755 void *ptr;
756
757 ptr = pa_memblock_acquire(target->memblock);
758
759 target->length = pa_mix(info, n,
760 (uint8_t*) ptr + target->index, length,
761 &s->sample_spec,
762 &s->thread_info.soft_volume,
763 s->thread_info.soft_muted);
764
765 pa_memblock_release(target->memblock);
766 }
767
768 if (s->thread_info.state == PA_SINK_RUNNING)
769 inputs_drop(s, info, n, target);
770
771 pa_sink_unref(s);
772 }
773
774 /* Called from IO thread context */
775 void pa_sink_render_into_full(pa_sink *s, pa_memchunk *target) {
776 pa_memchunk chunk;
777 size_t l, d;
778
779 pa_sink_assert_ref(s);
780 pa_assert(PA_SINK_IS_OPENED(s->thread_info.state));
781 pa_assert(target);
782 pa_assert(target->memblock);
783 pa_assert(target->length > 0);
784 pa_assert(pa_frame_aligned(target->length, &s->sample_spec));
785
786 pa_sink_ref(s);
787
788 pa_assert(!s->thread_info.rewind_requested);
789 pa_assert(s->thread_info.rewind_nbytes == 0);
790
791 l = target->length;
792 d = 0;
793 while (l > 0) {
794 chunk = *target;
795 chunk.index += d;
796 chunk.length -= d;
797
798 pa_sink_render_into(s, &chunk);
799
800 d += chunk.length;
801 l -= chunk.length;
802 }
803
804 pa_sink_unref(s);
805 }
806
807 /* Called from IO thread context */
808 void pa_sink_render_full(pa_sink *s, size_t length, pa_memchunk *result) {
809 pa_sink_assert_ref(s);
810 pa_assert(PA_SINK_IS_OPENED(s->thread_info.state));
811 pa_assert(length > 0);
812 pa_assert(pa_frame_aligned(length, &s->sample_spec));
813 pa_assert(result);
814
815 pa_assert(!s->thread_info.rewind_requested);
816 pa_assert(s->thread_info.rewind_nbytes == 0);
817
818 /*** This needs optimization ***/
819
820 result->index = 0;
821 result->length = length;
822 result->memblock = pa_memblock_new(s->core->mempool, length);
823
824 pa_sink_render_into_full(s, result);
825 }
826
827 /* Called from main thread */
828 pa_usec_t pa_sink_get_latency(pa_sink *s) {
829 pa_usec_t usec = 0;
830
831 pa_sink_assert_ref(s);
832 pa_assert(PA_SINK_IS_LINKED(s->state));
833
834 /* The returned value is supposed to be in the time domain of the sound card! */
835
836 if (!PA_SINK_IS_OPENED(s->state))
837 return 0;
838
839 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY, &usec, 0, NULL) == 0);
840
841 return usec;
842 }
843
844 /* Called from main thread */
845 void pa_sink_set_volume(pa_sink *s, const pa_cvolume *volume) {
846 pa_bool_t changed;
847 pa_sink_set_volume_data data;
848
849 pa_sink_assert_ref(s);
850 pa_assert(PA_SINK_IS_LINKED(s->state));
851 pa_assert(volume);
852 pa_assert(pa_cvolume_valid(volume));
853 pa_assert(pa_cvolume_compatible(volume, &s->sample_spec));
854
855 data.sink = s;
856 data.volume = *volume;
857
858 changed = !pa_cvolume_equal(&data.volume, &s->volume);
859
860 if (changed) {
861 if (pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_SET_VOLUME], &data) < 0)
862 return;
863
864 changed = !pa_cvolume_equal(&data.volume, &s->volume);
865 }
866
867 s->volume = data.volume;
868
869 if (s->set_volume && s->set_volume(s) < 0)
870 s->set_volume = NULL;
871
872 if (!s->set_volume)
873 pa_sink_set_soft_volume(s, volume);
874
875 if (changed)
876 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
877 }
878
879 /* Called from main thread */
880 void pa_sink_set_soft_volume(pa_sink *s, const pa_cvolume *volume) {
881 pa_sink_assert_ref(s);
882 pa_assert(volume);
883
884 if (PA_SINK_IS_LINKED(s->state))
885 pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_VOLUME, volume, 0, NULL);
886 else
887 s->thread_info.soft_volume = *volume;
888 }
889
890 /* Called from main thread */
891 const pa_cvolume *pa_sink_get_volume(pa_sink *s, pa_bool_t force_refresh) {
892 pa_sink_assert_ref(s);
893 pa_assert(PA_SINK_IS_LINKED(s->state));
894
895 if (s->refresh_volume || force_refresh) {
896 struct pa_cvolume old_volume = s->volume;
897
898 if (s->get_volume && s->get_volume(s) < 0)
899 s->get_volume = NULL;
900
901 if (!s->get_volume)
902 pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_VOLUME, &s->volume, 0, NULL);
903
904 if (!pa_cvolume_equal(&old_volume, &s->volume))
905 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
906 }
907
908 return &s->volume;
909 }
910
911 /* Called from main thread */
912 void pa_sink_set_mute(pa_sink *s, pa_bool_t mute) {
913 pa_bool_t changed;
914
915 pa_sink_assert_ref(s);
916 pa_assert(PA_SINK_IS_LINKED(s->state));
917
918 changed = s->muted != mute;
919 s->muted = mute;
920
921 if (s->set_mute && s->set_mute(s) < 0)
922 s->set_mute = NULL;
923
924 if (!s->set_mute)
925 pa_asyncmsgq_post(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_MUTE, PA_UINT_TO_PTR(mute), 0, NULL, NULL);
926
927 if (changed)
928 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
929 }
930
931 /* Called from main thread */
932 pa_bool_t pa_sink_get_mute(pa_sink *s, pa_bool_t force_refresh) {
933
934 pa_sink_assert_ref(s);
935 pa_assert(PA_SINK_IS_LINKED(s->state));
936
937 if (s->refresh_muted || force_refresh) {
938 pa_bool_t old_muted = s->muted;
939
940 if (s->get_mute && s->get_mute(s) < 0)
941 s->get_mute = NULL;
942
943 if (!s->get_mute)
944 pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MUTE, &s->muted, 0, NULL);
945
946 if (old_muted != s->muted)
947 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
948 }
949
950 return s->muted;
951 }
952
953 /* Called from main thread */
954 void pa_sink_set_description(pa_sink *s, const char *description) {
955 const char *old;
956 pa_sink_assert_ref(s);
957
958 if (!description && !pa_proplist_contains(s->proplist, PA_PROP_DEVICE_DESCRIPTION))
959 return;
960
961 old = pa_proplist_gets(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
962
963 if (old && description && !strcmp(old, description))
964 return;
965
966 if (description)
967 pa_proplist_sets(s->proplist, PA_PROP_DEVICE_DESCRIPTION, description);
968 else
969 pa_proplist_unset(s->proplist, PA_PROP_DEVICE_DESCRIPTION);
970
971 if (s->monitor_source) {
972 char *n;
973
974 n = pa_sprintf_malloc("Monitor Source of %s", description ? description : s->name);
975 pa_source_set_description(s->monitor_source, n);
976 pa_xfree(n);
977 }
978
979 if (PA_SINK_IS_LINKED(s->state)) {
980 pa_subscription_post(s->core, PA_SUBSCRIPTION_EVENT_SINK|PA_SUBSCRIPTION_EVENT_CHANGE, s->index);
981 pa_hook_fire(&s->core->hooks[PA_CORE_HOOK_SINK_PROPLIST_CHANGED], s);
982 }
983 }
984
985 /* Called from main thread */
986 unsigned pa_sink_linked_by(pa_sink *s) {
987 unsigned ret;
988
989 pa_sink_assert_ref(s);
990 pa_assert(PA_SINK_IS_LINKED(s->state));
991
992 ret = pa_idxset_size(s->inputs);
993
994 /* We add in the number of streams connected to us here. Please
995 * note the asymmmetry to pa_sink_used_by()! */
996
997 if (s->monitor_source)
998 ret += pa_source_linked_by(s->monitor_source);
999
1000 return ret;
1001 }
1002
1003 /* Called from main thread */
1004 unsigned pa_sink_used_by(pa_sink *s) {
1005 unsigned ret;
1006
1007 pa_sink_assert_ref(s);
1008 pa_assert(PA_SINK_IS_LINKED(s->state));
1009
1010 ret = pa_idxset_size(s->inputs);
1011 pa_assert(ret >= s->n_corked);
1012
1013 /* Streams connected to our monitor source do not matter for
1014 * pa_sink_used_by()!.*/
1015
1016 return ret - s->n_corked;
1017 }
1018
1019 /* Called from main thread */
1020 unsigned pa_sink_check_suspend(pa_sink *s) {
1021 unsigned ret;
1022 pa_sink_input *i;
1023 uint32_t idx;
1024
1025 pa_sink_assert_ref(s);
1026
1027 if (!PA_SINK_IS_LINKED(s->state))
1028 return 0;
1029
1030 ret = 0;
1031
1032 for (i = PA_SINK_INPUT(pa_idxset_first(s->inputs, &idx)); i; i = PA_SINK_INPUT(pa_idxset_next(s->inputs, &idx))) {
1033 pa_sink_input_state_t st;
1034
1035 st = pa_sink_input_get_state(i);
1036 pa_assert(PA_SINK_INPUT_IS_LINKED(st));
1037
1038 if (st == PA_SINK_INPUT_CORKED)
1039 continue;
1040
1041 if (i->flags & PA_SINK_INPUT_DONT_INHIBIT_AUTO_SUSPEND)
1042 continue;
1043
1044 ret ++;
1045 }
1046
1047 if (s->monitor_source)
1048 ret += pa_source_check_suspend(s->monitor_source);
1049
1050 return ret;
1051 }
1052
1053 /* Called from IO thread, except when it is not */
1054 int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
1055 pa_sink *s = PA_SINK(o);
1056 pa_sink_assert_ref(s);
1057
1058 switch ((pa_sink_message_t) code) {
1059
1060 case PA_SINK_MESSAGE_ADD_INPUT: {
1061 pa_sink_input *i = PA_SINK_INPUT(userdata);
1062
1063 /* If you change anything here, make sure to change the
1064 * sink input handling a few lines down at
1065 * PA_SINK_MESSAGE_FINISH_MOVE, too. */
1066
1067 pa_hashmap_put(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index), pa_sink_input_ref(i));
1068
1069 /* Since the caller sleeps in pa_sink_input_put(), we can
1070 * safely access data outside of thread_info even though
1071 * it is mutable */
1072
1073 if ((i->thread_info.sync_prev = i->sync_prev)) {
1074 pa_assert(i->sink == i->thread_info.sync_prev->sink);
1075 pa_assert(i->sync_prev->sync_next == i);
1076 i->thread_info.sync_prev->thread_info.sync_next = i;
1077 }
1078
1079 if ((i->thread_info.sync_next = i->sync_next)) {
1080 pa_assert(i->sink == i->thread_info.sync_next->sink);
1081 pa_assert(i->sync_next->sync_prev == i);
1082 i->thread_info.sync_next->thread_info.sync_prev = i;
1083 }
1084
1085 pa_assert(!i->thread_info.attached);
1086 i->thread_info.attached = TRUE;
1087
1088 if (i->attach)
1089 i->attach(i);
1090
1091 pa_sink_input_set_state_within_thread(i, i->state);
1092
1093 /* The requested latency of the sink input needs to be
1094 * fixed up and then configured on the sink */
1095
1096 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1)
1097 pa_sink_input_set_requested_latency_within_thread(i, i->thread_info.requested_sink_latency);
1098
1099 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
1100 pa_sink_input_update_max_request(i, s->thread_info.max_request);
1101
1102 /* We don't rewind here automatically. This is left to the
1103 * sink input implementor because some sink inputs need a
1104 * slow start, i.e. need some time to buffer client
1105 * samples before beginning streaming. */
1106
1107 return 0;
1108 }
1109
1110 case PA_SINK_MESSAGE_REMOVE_INPUT: {
1111 pa_sink_input *i = PA_SINK_INPUT(userdata);
1112
1113 /* If you change anything here, make sure to change the
1114 * sink input handling a few lines down at
1115 * PA_SINK_MESSAGE_PREPAPRE_MOVE, too. */
1116
1117 if (i->detach)
1118 i->detach(i);
1119
1120 pa_sink_input_set_state_within_thread(i, i->state);
1121
1122 pa_assert(i->thread_info.attached);
1123 i->thread_info.attached = FALSE;
1124
1125 /* Since the caller sleeps in pa_sink_input_unlink(),
1126 * we can safely access data outside of thread_info even
1127 * though it is mutable */
1128
1129 pa_assert(!i->sync_prev);
1130 pa_assert(!i->sync_next);
1131
1132 if (i->thread_info.sync_prev) {
1133 i->thread_info.sync_prev->thread_info.sync_next = i->thread_info.sync_prev->sync_next;
1134 i->thread_info.sync_prev = NULL;
1135 }
1136
1137 if (i->thread_info.sync_next) {
1138 i->thread_info.sync_next->thread_info.sync_prev = i->thread_info.sync_next->sync_prev;
1139 i->thread_info.sync_next = NULL;
1140 }
1141
1142 if (pa_hashmap_remove(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index)))
1143 pa_sink_input_unref(i);
1144
1145 pa_sink_invalidate_requested_latency(s);
1146 pa_sink_request_rewind(s, (size_t) -1);
1147
1148 return 0;
1149 }
1150
1151 case PA_SINK_MESSAGE_START_MOVE: {
1152 pa_sink_input *i = PA_SINK_INPUT(userdata);
1153
1154 /* We don't support moving synchronized streams. */
1155 pa_assert(!i->sync_prev);
1156 pa_assert(!i->sync_next);
1157 pa_assert(!i->thread_info.sync_next);
1158 pa_assert(!i->thread_info.sync_prev);
1159
1160 if (i->thread_info.state != PA_SINK_INPUT_CORKED) {
1161 pa_usec_t usec = 0;
1162 size_t sink_nbytes, total_nbytes;
1163
1164 /* Get the latency of the sink */
1165 if (PA_MSGOBJECT(s)->process_msg(PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY, &usec, 0, NULL) < 0)
1166 usec = 0;
1167
1168 sink_nbytes = pa_usec_to_bytes(usec, &s->sample_spec);
1169 total_nbytes = sink_nbytes + pa_memblockq_get_length(i->thread_info.render_memblockq);
1170
1171 if (total_nbytes > 0) {
1172 i->thread_info.rewrite_nbytes = i->thread_info.resampler ? pa_resampler_request(i->thread_info.resampler, total_nbytes) : total_nbytes;
1173 i->thread_info.rewrite_flush = TRUE;
1174 pa_sink_input_process_rewind(i, sink_nbytes);
1175 }
1176 }
1177
1178 if (i->detach)
1179 i->detach(i);
1180
1181 pa_assert(i->thread_info.attached);
1182 i->thread_info.attached = FALSE;
1183
1184 /* Let's remove the sink input ...*/
1185 if (pa_hashmap_remove(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index)))
1186 pa_sink_input_unref(i);
1187
1188 pa_sink_invalidate_requested_latency(s);
1189
1190 pa_log_debug("Requesting rewind due to started move");
1191 pa_sink_request_rewind(s, (size_t) -1);
1192
1193 return 0;
1194 }
1195
1196 case PA_SINK_MESSAGE_FINISH_MOVE: {
1197 pa_sink_input *i = PA_SINK_INPUT(userdata);
1198
1199 /* We don't support moving synchronized streams. */
1200 pa_assert(!i->sync_prev);
1201 pa_assert(!i->sync_next);
1202 pa_assert(!i->thread_info.sync_next);
1203 pa_assert(!i->thread_info.sync_prev);
1204
1205 pa_hashmap_put(s->thread_info.inputs, PA_UINT32_TO_PTR(i->index), pa_sink_input_ref(i));
1206
1207 pa_assert(!i->thread_info.attached);
1208 i->thread_info.attached = TRUE;
1209
1210 if (i->attach)
1211 i->attach(i);
1212
1213 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1)
1214 pa_sink_input_set_requested_latency_within_thread(i, i->thread_info.requested_sink_latency);
1215
1216 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
1217 pa_sink_input_update_max_request(i, s->thread_info.max_request);
1218
1219 if (i->thread_info.state != PA_SINK_INPUT_CORKED) {
1220 pa_usec_t usec = 0;
1221 size_t nbytes;
1222
1223 /* Get the latency of the sink */
1224 if (PA_MSGOBJECT(s)->process_msg(PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY, &usec, 0, NULL) < 0)
1225 usec = 0;
1226
1227 nbytes = pa_usec_to_bytes(usec, &s->sample_spec);
1228
1229 if (nbytes > 0)
1230 pa_sink_input_drop(i, nbytes);
1231
1232 pa_log_debug("Requesting rewind due to finished move");
1233 pa_sink_request_rewind(s, nbytes);
1234 }
1235
1236 return 0;
1237 }
1238
1239 case PA_SINK_MESSAGE_SET_VOLUME:
1240 s->thread_info.soft_volume = *((pa_cvolume*) userdata);
1241
1242 pa_sink_request_rewind(s, (size_t) -1);
1243 return 0;
1244
1245 case PA_SINK_MESSAGE_SET_MUTE:
1246 s->thread_info.soft_muted = PA_PTR_TO_UINT(userdata);
1247
1248 pa_sink_request_rewind(s, (size_t) -1);
1249 return 0;
1250
1251 case PA_SINK_MESSAGE_GET_VOLUME:
1252 *((pa_cvolume*) userdata) = s->thread_info.soft_volume;
1253 return 0;
1254
1255 case PA_SINK_MESSAGE_GET_MUTE:
1256 *((pa_bool_t*) userdata) = s->thread_info.soft_muted;
1257 return 0;
1258
1259 case PA_SINK_MESSAGE_SET_STATE:
1260
1261 s->thread_info.state = PA_PTR_TO_UINT(userdata);
1262 return 0;
1263
1264 case PA_SINK_MESSAGE_DETACH:
1265
1266 /* Detach all streams */
1267 pa_sink_detach_within_thread(s);
1268 return 0;
1269
1270 case PA_SINK_MESSAGE_ATTACH:
1271
1272 /* Reattach all streams */
1273 pa_sink_attach_within_thread(s);
1274 return 0;
1275
1276 case PA_SINK_MESSAGE_GET_REQUESTED_LATENCY: {
1277
1278 pa_usec_t *usec = userdata;
1279 *usec = pa_sink_get_requested_latency_within_thread(s);
1280
1281 if (*usec == (pa_usec_t) -1)
1282 *usec = s->thread_info.max_latency;
1283
1284 return 0;
1285 }
1286
1287 case PA_SINK_MESSAGE_SET_LATENCY_RANGE: {
1288 pa_usec_t *r = userdata;
1289
1290 pa_sink_update_latency_range(s, r[0], r[1]);
1291
1292 return 0;
1293 }
1294
1295 case PA_SINK_MESSAGE_GET_LATENCY_RANGE: {
1296 pa_usec_t *r = userdata;
1297
1298 r[0] = s->thread_info.min_latency;
1299 r[1] = s->thread_info.max_latency;
1300
1301 return 0;
1302 }
1303
1304 case PA_SINK_MESSAGE_GET_MAX_REWIND:
1305
1306 *((size_t*) userdata) = s->thread_info.max_rewind;
1307 return 0;
1308
1309 case PA_SINK_MESSAGE_GET_MAX_REQUEST:
1310
1311 *((size_t*) userdata) = s->thread_info.max_request;
1312 return 0;
1313
1314 case PA_SINK_MESSAGE_GET_LATENCY:
1315 case PA_SINK_MESSAGE_MAX:
1316 ;
1317 }
1318
1319 return -1;
1320 }
1321
1322 /* Called from main thread */
1323 int pa_sink_suspend_all(pa_core *c, pa_bool_t suspend) {
1324 pa_sink *sink;
1325 uint32_t idx;
1326 int ret = 0;
1327
1328 pa_core_assert_ref(c);
1329
1330 for (sink = PA_SINK(pa_idxset_first(c->sinks, &idx)); sink; sink = PA_SINK(pa_idxset_next(c->sinks, &idx)))
1331 ret -= pa_sink_suspend(sink, suspend) < 0;
1332
1333 return ret;
1334 }
1335
1336 /* Called from main thread */
1337 void pa_sink_detach(pa_sink *s) {
1338 pa_sink_assert_ref(s);
1339 pa_assert(PA_SINK_IS_LINKED(s->state));
1340
1341 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_DETACH, NULL, 0, NULL) == 0);
1342 }
1343
1344 /* Called from main thread */
1345 void pa_sink_attach(pa_sink *s) {
1346 pa_sink_assert_ref(s);
1347 pa_assert(PA_SINK_IS_LINKED(s->state));
1348
1349 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_ATTACH, NULL, 0, NULL) == 0);
1350 }
1351
1352 /* Called from IO thread */
1353 void pa_sink_detach_within_thread(pa_sink *s) {
1354 pa_sink_input *i;
1355 void *state = NULL;
1356
1357 pa_sink_assert_ref(s);
1358 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1359
1360 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
1361 if (i->detach)
1362 i->detach(i);
1363
1364 if (s->monitor_source)
1365 pa_source_detach_within_thread(s->monitor_source);
1366 }
1367
1368 /* Called from IO thread */
1369 void pa_sink_attach_within_thread(pa_sink *s) {
1370 pa_sink_input *i;
1371 void *state = NULL;
1372
1373 pa_sink_assert_ref(s);
1374 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1375
1376 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
1377 if (i->attach)
1378 i->attach(i);
1379
1380 if (s->monitor_source)
1381 pa_source_attach_within_thread(s->monitor_source);
1382 }
1383
1384 /* Called from IO thread */
1385 void pa_sink_request_rewind(pa_sink*s, size_t nbytes) {
1386 pa_sink_assert_ref(s);
1387 pa_assert(PA_SINK_IS_LINKED(s->thread_info.state));
1388
1389 if (nbytes == (size_t) -1)
1390 nbytes = s->thread_info.max_rewind;
1391
1392 nbytes = PA_MIN(nbytes, s->thread_info.max_rewind);
1393
1394 if (s->thread_info.rewind_requested &&
1395 nbytes <= s->thread_info.rewind_nbytes)
1396 return;
1397
1398 s->thread_info.rewind_nbytes = nbytes;
1399 s->thread_info.rewind_requested = TRUE;
1400
1401 if (s->request_rewind)
1402 s->request_rewind(s);
1403 }
1404
1405 /* Called from IO thread */
1406 pa_usec_t pa_sink_get_requested_latency_within_thread(pa_sink *s) {
1407 pa_usec_t result = (pa_usec_t) -1;
1408 pa_sink_input *i;
1409 void *state = NULL;
1410 pa_usec_t monitor_latency;
1411
1412 pa_sink_assert_ref(s);
1413
1414 if (s->thread_info.requested_latency_valid)
1415 return s->thread_info.requested_latency;
1416
1417 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
1418
1419 if (i->thread_info.requested_sink_latency != (pa_usec_t) -1 &&
1420 (result == (pa_usec_t) -1 || result > i->thread_info.requested_sink_latency))
1421 result = i->thread_info.requested_sink_latency;
1422
1423 monitor_latency = pa_source_get_requested_latency_within_thread(s->monitor_source);
1424
1425 if (monitor_latency != (pa_usec_t) -1 &&
1426 (result == (pa_usec_t) -1 || result > monitor_latency))
1427 result = monitor_latency;
1428
1429 if (result != (pa_usec_t) -1) {
1430 if (s->thread_info.max_latency > 0 && result > s->thread_info.max_latency)
1431 result = s->thread_info.max_latency;
1432
1433 if (s->thread_info.min_latency > 0 && result < s->thread_info.min_latency)
1434 result = s->thread_info.min_latency;
1435 }
1436
1437 s->thread_info.requested_latency = result;
1438 s->thread_info.requested_latency_valid = TRUE;
1439
1440 return result;
1441 }
1442
1443 /* Called from main thread */
1444 pa_usec_t pa_sink_get_requested_latency(pa_sink *s) {
1445 pa_usec_t usec = 0;
1446
1447 pa_sink_assert_ref(s);
1448 pa_assert(PA_SINK_IS_LINKED(s->state));
1449
1450 if (!PA_SINK_IS_OPENED(s->state))
1451 return 0;
1452
1453 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_REQUESTED_LATENCY, &usec, 0, NULL) == 0);
1454 return usec;
1455 }
1456
1457 /* Called from IO thread */
1458 void pa_sink_set_max_rewind(pa_sink *s, size_t max_rewind) {
1459 pa_sink_input *i;
1460 void *state = NULL;
1461
1462 pa_sink_assert_ref(s);
1463
1464 if (max_rewind == s->thread_info.max_rewind)
1465 return;
1466
1467 s->thread_info.max_rewind = max_rewind;
1468
1469 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
1470 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
1471 pa_sink_input_update_max_rewind(i, s->thread_info.max_rewind);
1472 }
1473
1474 if (s->monitor_source)
1475 pa_source_set_max_rewind(s->monitor_source, s->thread_info.max_rewind);
1476 }
1477
1478 /* Called from IO thread */
1479 void pa_sink_set_max_request(pa_sink *s, size_t max_request) {
1480 void *state = NULL;
1481
1482 pa_sink_assert_ref(s);
1483
1484 if (max_request == s->thread_info.max_request)
1485 return;
1486
1487 s->thread_info.max_request = max_request;
1488
1489 if (PA_SINK_IS_LINKED(s->thread_info.state)) {
1490 pa_sink_input *i;
1491
1492 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
1493 pa_sink_input_update_max_request(i, s->thread_info.max_request);
1494 }
1495 }
1496
1497 /* Called from IO thread */
1498 void pa_sink_invalidate_requested_latency(pa_sink *s) {
1499 pa_sink_input *i;
1500 void *state = NULL;
1501
1502 pa_sink_assert_ref(s);
1503
1504 s->thread_info.requested_latency_valid = FALSE;
1505
1506 if (s->update_requested_latency)
1507 s->update_requested_latency(s);
1508
1509 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
1510 if (i->update_sink_requested_latency)
1511 i->update_sink_requested_latency(i);
1512 }
1513
1514 /* Called from main thread */
1515 void pa_sink_set_latency_range(pa_sink *s, pa_usec_t min_latency, pa_usec_t max_latency) {
1516 pa_sink_assert_ref(s);
1517
1518 /* min_latency == 0: no limit
1519 * min_latency == (size_t) -1: default limit
1520 * min_latency anything else: specified limit
1521 *
1522 * Similar for max_latency */
1523
1524 if (min_latency == (pa_usec_t) -1)
1525 min_latency = DEFAULT_MIN_LATENCY;
1526
1527 if (max_latency == (pa_usec_t) -1)
1528 max_latency = min_latency;
1529
1530 pa_assert(!min_latency || !max_latency ||
1531 min_latency <= max_latency);
1532
1533 if (PA_SINK_IS_LINKED(s->state)) {
1534 pa_usec_t r[2];
1535
1536 r[0] = min_latency;
1537 r[1] = max_latency;
1538
1539 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_SET_LATENCY_RANGE, r, 0, NULL) == 0);
1540 } else {
1541 s->thread_info.min_latency = min_latency;
1542 s->thread_info.max_latency = max_latency;
1543
1544 s->monitor_source->thread_info.min_latency = min_latency;
1545 s->monitor_source->thread_info.max_latency = max_latency;
1546
1547 s->thread_info.requested_latency_valid = s->monitor_source->thread_info.requested_latency_valid = FALSE;
1548 }
1549 }
1550
1551 /* Called from main thread */
1552 void pa_sink_get_latency_range(pa_sink *s, pa_usec_t *min_latency, pa_usec_t *max_latency) {
1553 pa_sink_assert_ref(s);
1554 pa_assert(min_latency);
1555 pa_assert(max_latency);
1556
1557 if (PA_SINK_IS_LINKED(s->state)) {
1558 pa_usec_t r[2] = { 0, 0 };
1559
1560 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_LATENCY_RANGE, r, 0, NULL) == 0);
1561
1562 *min_latency = r[0];
1563 *max_latency = r[1];
1564 } else {
1565 *min_latency = s->thread_info.min_latency;
1566 *max_latency = s->thread_info.max_latency;
1567 }
1568 }
1569
1570 /* Called from IO thread */
1571 void pa_sink_update_latency_range(pa_sink *s, pa_usec_t min_latency, pa_usec_t max_latency) {
1572 pa_sink_input *i;
1573 void *state = NULL;
1574
1575 pa_sink_assert_ref(s);
1576
1577 s->thread_info.min_latency = min_latency;
1578 s->thread_info.max_latency = max_latency;
1579
1580 while ((i = pa_hashmap_iterate(s->thread_info.inputs, &state, NULL)))
1581 if (i->update_sink_latency_range)
1582 i->update_sink_latency_range(i);
1583
1584 pa_sink_invalidate_requested_latency(s);
1585
1586 pa_source_update_latency_range(s->monitor_source, min_latency, max_latency);
1587 }
1588
1589 size_t pa_sink_get_max_rewind(pa_sink *s) {
1590 size_t r;
1591 pa_sink_assert_ref(s);
1592
1593 if (!PA_SINK_IS_LINKED(s->state))
1594 return s->thread_info.max_rewind;
1595
1596 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MAX_REWIND, &r, 0, NULL) == 0);
1597
1598 return r;
1599 }
1600
1601 size_t pa_sink_get_max_request(pa_sink *s) {
1602 size_t r;
1603 pa_sink_assert_ref(s);
1604
1605 if (!PA_SINK_IS_LINKED(s->state))
1606 return s->thread_info.max_request;
1607
1608 pa_assert_se(pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SINK_MESSAGE_GET_MAX_REQUEST, &r, 0, NULL) == 0);
1609
1610 return r;
1611 }