]> code.delx.au - pulseaudio/blob - src/pulsecore/sink-input.c
make proplist inheritance scheme automatic and implicit
[pulseaudio] / src / pulsecore / sink-input.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 <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include <pulse/utf8.h>
32 #include <pulse/xmalloc.h>
33
34 #include <pulsecore/sample-util.h>
35 #include <pulsecore/core-subscribe.h>
36 #include <pulsecore/log.h>
37 #include <pulsecore/play-memblockq.h>
38 #include <pulsecore/namereg.h>
39 #include <pulsecore/core-util.h>
40
41 #include "sink-input.h"
42
43 #define MEMBLOCKQ_MAXLENGTH (32*1024*1024)
44 #define CONVERT_BUFFER_LENGTH (PA_PAGE_SIZE)
45
46 static PA_DEFINE_CHECK_TYPE(pa_sink_input, pa_msgobject);
47
48 static void sink_input_free(pa_object *o);
49
50 pa_sink_input_new_data* pa_sink_input_new_data_init(pa_sink_input_new_data *data) {
51 pa_assert(data);
52
53 memset(data, 0, sizeof(*data));
54 data->resample_method = PA_RESAMPLER_INVALID;
55 data->proplist = pa_proplist_new();
56
57 return data;
58 }
59
60 void pa_sink_input_new_data_set_sample_spec(pa_sink_input_new_data *data, const pa_sample_spec *spec) {
61 pa_assert(data);
62
63 if ((data->sample_spec_is_set = !!spec))
64 data->sample_spec = *spec;
65 }
66
67 void pa_sink_input_new_data_set_channel_map(pa_sink_input_new_data *data, const pa_channel_map *map) {
68 pa_assert(data);
69
70 if ((data->channel_map_is_set = !!map))
71 data->channel_map = *map;
72 }
73
74 void pa_sink_input_new_data_set_volume(pa_sink_input_new_data *data, const pa_cvolume *volume) {
75 pa_assert(data);
76
77 if ((data->volume_is_set = !!volume))
78 data->volume = data->virtual_volume = *volume;
79 }
80
81 void pa_sink_input_new_data_set_muted(pa_sink_input_new_data *data, pa_bool_t mute) {
82 pa_assert(data);
83
84 data->muted_is_set = TRUE;
85 data->muted = !!mute;
86 }
87
88 void pa_sink_input_new_data_done(pa_sink_input_new_data *data) {
89 pa_assert(data);
90
91 pa_proplist_free(data->proplist);
92 }
93
94 /* Called from main context */
95 static void reset_callbacks(pa_sink_input *i) {
96 pa_assert(i);
97
98 i->pop = NULL;
99 i->process_rewind = NULL;
100 i->update_max_rewind = NULL;
101 i->update_max_request = NULL;
102 i->update_sink_requested_latency = NULL;
103 i->update_sink_latency_range = NULL;
104 i->attach = NULL;
105 i->detach = NULL;
106 i->suspend = NULL;
107 i->moved = NULL;
108 i->kill = NULL;
109 i->get_latency = NULL;
110 i->state_change = NULL;
111 i->may_move_to = NULL;
112 }
113
114 /* Called from main context */
115 pa_sink_input* pa_sink_input_new(
116 pa_core *core,
117 pa_sink_input_new_data *data,
118 pa_sink_input_flags_t flags) {
119
120 pa_sink_input *i;
121 pa_resampler *resampler = NULL;
122 char st[PA_SAMPLE_SPEC_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX];
123 pa_channel_map original_cm;
124
125 pa_assert(core);
126 pa_assert(data);
127
128 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_INPUT_NEW], data) < 0)
129 return NULL;
130
131 pa_return_null_if_fail(!data->driver || pa_utf8_valid(data->driver));
132
133 if (!data->sink)
134 data->sink = pa_namereg_get(core, NULL, PA_NAMEREG_SINK);
135
136 pa_return_null_if_fail(data->sink);
137 pa_return_null_if_fail(pa_sink_get_state(data->sink) != PA_SINK_UNLINKED);
138 pa_return_null_if_fail(!data->sync_base || (data->sync_base->sink == data->sink && pa_sink_input_get_state(data->sync_base) == PA_SINK_INPUT_CORKED));
139
140 if (!data->sample_spec_is_set)
141 data->sample_spec = data->sink->sample_spec;
142
143 pa_return_null_if_fail(pa_sample_spec_valid(&data->sample_spec));
144
145 if (!data->channel_map_is_set) {
146 if (pa_channel_map_compatible(&data->sink->channel_map, &data->sample_spec))
147 data->channel_map = data->sink->channel_map;
148 else
149 pa_channel_map_init_extend(&data->channel_map, data->sample_spec.channels, PA_CHANNEL_MAP_DEFAULT);
150 }
151
152 pa_return_null_if_fail(pa_channel_map_valid(&data->channel_map));
153 pa_return_null_if_fail(pa_channel_map_compatible(&data->channel_map, &data->sample_spec));
154
155 if (!data->volume_is_set) {
156 pa_cvolume_reset(&data->volume, data->sample_spec.channels);
157 pa_cvolume_reset(&data->virtual_volume, data->sample_spec.channels);
158 }
159
160 pa_return_null_if_fail(pa_cvolume_valid(&data->volume));
161 pa_return_null_if_fail(pa_cvolume_compatible(&data->volume, &data->sample_spec));
162
163 pa_return_null_if_fail(pa_cvolume_valid(&data->virtual_volume));
164 pa_return_null_if_fail(pa_cvolume_compatible(&data->virtual_volume, &data->sample_spec));
165
166 if (!data->muted_is_set)
167 data->muted = FALSE;
168
169 if (flags & PA_SINK_INPUT_FIX_FORMAT)
170 data->sample_spec.format = data->sink->sample_spec.format;
171
172 if (flags & PA_SINK_INPUT_FIX_RATE)
173 data->sample_spec.rate = data->sink->sample_spec.rate;
174
175 original_cm = data->channel_map;
176
177 if (flags & PA_SINK_INPUT_FIX_CHANNELS) {
178 data->sample_spec.channels = data->sink->sample_spec.channels;
179 data->channel_map = data->sink->channel_map;
180 }
181
182 pa_assert(pa_sample_spec_valid(&data->sample_spec));
183 pa_assert(pa_channel_map_valid(&data->channel_map));
184
185 /* Due to the fixing of the sample spec the volume might not match anymore */
186 pa_cvolume_remap(&data->volume, &original_cm, &data->channel_map);
187
188 if (data->resample_method == PA_RESAMPLER_INVALID)
189 data->resample_method = core->resample_method;
190
191 pa_return_null_if_fail(data->resample_method < PA_RESAMPLER_MAX);
192
193 if (data->client)
194 pa_proplist_update(data->proplist, PA_UPDATE_MERGE, data->client->proplist);
195
196 if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_INPUT_FIXATE], data) < 0)
197 return NULL;
198
199 if (pa_idxset_size(data->sink->inputs) >= PA_MAX_INPUTS_PER_SINK) {
200 pa_log_warn("Failed to create sink input: too many inputs per sink.");
201 return NULL;
202 }
203
204 if ((flags & PA_SINK_INPUT_VARIABLE_RATE) ||
205 !pa_sample_spec_equal(&data->sample_spec, &data->sink->sample_spec) ||
206 !pa_channel_map_equal(&data->channel_map, &data->sink->channel_map)) {
207
208 if (!(resampler = pa_resampler_new(
209 core->mempool,
210 &data->sample_spec, &data->channel_map,
211 &data->sink->sample_spec, &data->sink->channel_map,
212 data->resample_method,
213 ((flags & PA_SINK_INPUT_VARIABLE_RATE) ? PA_RESAMPLER_VARIABLE_RATE : 0) |
214 ((flags & PA_SINK_INPUT_NO_REMAP) ? PA_RESAMPLER_NO_REMAP : 0) |
215 (core->disable_remixing || (flags & PA_SINK_INPUT_NO_REMIX) ? PA_RESAMPLER_NO_REMIX : 0) |
216 (core->disable_lfe_remixing ? PA_RESAMPLER_NO_LFE : 0)))) {
217 pa_log_warn("Unsupported resampling operation.");
218 return NULL;
219 }
220
221 data->resample_method = pa_resampler_get_method(resampler);
222 }
223
224 i = pa_msgobject_new(pa_sink_input);
225 i->parent.parent.free = sink_input_free;
226 i->parent.process_msg = pa_sink_input_process_msg;
227
228 i->core = core;
229 i->state = PA_SINK_INPUT_INIT;
230 i->flags = flags;
231 i->proplist = pa_proplist_copy(data->proplist);
232 i->driver = pa_xstrdup(data->driver);
233 i->module = data->module;
234 i->sink = data->sink;
235 i->client = data->client;
236
237 i->resample_method = data->resample_method;
238 i->sample_spec = data->sample_spec;
239 i->channel_map = data->channel_map;
240
241 i->virtual_volume = data->virtual_volume;
242 i->volume = data->volume;
243
244 i->muted = data->muted;
245
246 if (data->sync_base) {
247 i->sync_next = data->sync_base->sync_next;
248 i->sync_prev = data->sync_base;
249
250 if (data->sync_base->sync_next)
251 data->sync_base->sync_next->sync_prev = i;
252 data->sync_base->sync_next = i;
253 } else
254 i->sync_next = i->sync_prev = NULL;
255
256 i->direct_outputs = pa_idxset_new(NULL, NULL);
257
258 reset_callbacks(i);
259 i->userdata = NULL;
260
261 i->thread_info.state = i->state;
262 i->thread_info.attached = FALSE;
263 pa_atomic_store(&i->thread_info.drained, 1);
264 i->thread_info.sample_spec = i->sample_spec;
265 i->thread_info.resampler = resampler;
266 i->thread_info.volume = i->volume;
267 i->thread_info.muted = i->muted;
268 i->thread_info.requested_sink_latency = (pa_usec_t) -1;
269 i->thread_info.rewrite_nbytes = 0;
270 i->thread_info.rewrite_flush = FALSE;
271 i->thread_info.dont_rewind_render = FALSE;
272 i->thread_info.underrun_for = (uint64_t) -1;
273 i->thread_info.playing_for = 0;
274 i->thread_info.direct_outputs = pa_hashmap_new(pa_idxset_trivial_hash_func, pa_idxset_trivial_compare_func);
275
276 i->thread_info.render_memblockq = pa_memblockq_new(
277 0,
278 MEMBLOCKQ_MAXLENGTH,
279 0,
280 pa_frame_size(&i->sink->sample_spec),
281 0,
282 1,
283 0,
284 &i->sink->silence);
285
286 pa_assert_se(pa_idxset_put(core->sink_inputs, pa_sink_input_ref(i), &i->index) == 0);
287 pa_assert_se(pa_idxset_put(i->sink->inputs, i, NULL) == 0);
288
289 if (i->client)
290 pa_assert_se(pa_idxset_put(i->client->sink_inputs, i, NULL) >= 0);
291
292 pa_log_info("Created input %u \"%s\" on %s with sample spec %s and channel map %s",
293 i->index,
294 pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_MEDIA_NAME)),
295 i->sink->name,
296 pa_sample_spec_snprint(st, sizeof(st), &i->sample_spec),
297 pa_channel_map_snprint(cm, sizeof(cm), &i->channel_map));
298
299 /* Don't forget to call pa_sink_input_put! */
300
301 return i;
302 }
303
304 /* Called from main context */
305 static void update_n_corked(pa_sink_input *i, pa_sink_input_state_t state) {
306 pa_assert(i);
307
308 if (i->state == PA_SINK_INPUT_CORKED && state != PA_SINK_INPUT_CORKED)
309 pa_assert_se(i->sink->n_corked -- >= 1);
310 else if (i->state != PA_SINK_INPUT_CORKED && state == PA_SINK_INPUT_CORKED)
311 i->sink->n_corked++;
312 }
313
314 /* Called from main context */
315 static int sink_input_set_state(pa_sink_input *i, pa_sink_input_state_t state) {
316 pa_sink_input *ssync;
317 pa_assert(i);
318
319 if (state == PA_SINK_INPUT_DRAINED)
320 state = PA_SINK_INPUT_RUNNING;
321
322 if (i->state == state)
323 return 0;
324
325 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_STATE, PA_UINT_TO_PTR(state), 0, NULL) == 0);
326
327 update_n_corked(i, state);
328 i->state = state;
329
330 for (ssync = i->sync_prev; ssync; ssync = ssync->sync_prev) {
331 update_n_corked(ssync, state);
332 ssync->state = state;
333 }
334 for (ssync = i->sync_next; ssync; ssync = ssync->sync_next) {
335 update_n_corked(ssync, state);
336 ssync->state = state;
337 }
338
339 if (state != PA_SINK_INPUT_UNLINKED) {
340 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_STATE_CHANGED], i);
341
342 for (ssync = i->sync_prev; ssync; ssync = ssync->sync_prev)
343 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_STATE_CHANGED], ssync);
344
345 for (ssync = i->sync_next; ssync; ssync = ssync->sync_next)
346 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_STATE_CHANGED], ssync);
347 }
348
349 pa_sink_update_status(i->sink);
350
351 return 0;
352 }
353
354 /* Called from main context */
355 void pa_sink_input_unlink(pa_sink_input *i) {
356 pa_bool_t linked;
357 pa_source_output *o, *p = NULL;
358 pa_assert(i);
359
360 /* See pa_sink_unlink() for a couple of comments how this function
361 * works */
362
363 pa_sink_input_ref(i);
364
365 linked = PA_SINK_INPUT_IS_LINKED(i->state);
366
367 if (linked)
368 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_UNLINK], i);
369
370 if (i->sync_prev)
371 i->sync_prev->sync_next = i->sync_next;
372 if (i->sync_next)
373 i->sync_next->sync_prev = i->sync_prev;
374
375 i->sync_prev = i->sync_next = NULL;
376
377 pa_idxset_remove_by_data(i->sink->core->sink_inputs, i, NULL);
378 if (pa_idxset_remove_by_data(i->sink->inputs, i, NULL))
379 pa_sink_input_unref(i);
380
381 if (i->client)
382 pa_idxset_remove_by_data(i->client->sink_inputs, i, NULL);
383
384 while ((o = pa_idxset_first(i->direct_outputs, NULL))) {
385 pa_assert(o != p);
386 pa_source_output_kill(o);
387 p = o;
388 }
389
390 update_n_corked(i, PA_SINK_INPUT_UNLINKED);
391 i->state = PA_SINK_INPUT_UNLINKED;
392
393 if (linked)
394 if (i->sink->asyncmsgq)
395 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_REMOVE_INPUT, i, 0, NULL) == 0);
396
397 reset_callbacks(i);
398
399 if (linked) {
400 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_REMOVE, i->index);
401 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_UNLINK_POST], i);
402 }
403
404 pa_sink_update_status(i->sink);
405
406 i->sink = NULL;
407 pa_sink_input_unref(i);
408 }
409
410 /* Called from main context */
411 static void sink_input_free(pa_object *o) {
412 pa_sink_input* i = PA_SINK_INPUT(o);
413
414 pa_assert(i);
415 pa_assert(pa_sink_input_refcnt(i) == 0);
416
417 if (PA_SINK_INPUT_IS_LINKED(i->state))
418 pa_sink_input_unlink(i);
419
420 pa_log_info("Freeing input %u \"%s\"", i->index, pa_strnull(pa_proplist_gets(i->proplist, PA_PROP_MEDIA_NAME)));
421
422 pa_assert(!i->thread_info.attached);
423
424 if (i->thread_info.render_memblockq)
425 pa_memblockq_free(i->thread_info.render_memblockq);
426
427 if (i->thread_info.resampler)
428 pa_resampler_free(i->thread_info.resampler);
429
430 if (i->proplist)
431 pa_proplist_free(i->proplist);
432
433 if (i->direct_outputs)
434 pa_idxset_free(i->direct_outputs, NULL, NULL);
435
436 if (i->thread_info.direct_outputs)
437 pa_hashmap_free(i->thread_info.direct_outputs, NULL, NULL);
438
439 pa_xfree(i->driver);
440 pa_xfree(i);
441 }
442
443 /* Called from main context */
444 void pa_sink_input_put(pa_sink_input *i) {
445 pa_sink_input_state_t state;
446 pa_sink_input_assert_ref(i);
447
448 pa_assert(i->state == PA_SINK_INPUT_INIT);
449
450 /* The following fields must be initialized properly */
451 pa_assert(i->pop);
452 pa_assert(i->process_rewind);
453 pa_assert(i->kill);
454
455 i->thread_info.volume = i->volume;
456 i->thread_info.muted = i->muted;
457
458 state = i->flags & PA_SINK_INPUT_START_CORKED ? PA_SINK_INPUT_CORKED : PA_SINK_INPUT_RUNNING;
459
460 update_n_corked(i, state);
461 i->state = state;
462
463 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_ADD_INPUT, i, 0, NULL) == 0);
464
465 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_NEW, i->index);
466 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_PUT], i);
467
468 pa_sink_update_status(i->sink);
469 }
470
471 /* Called from main context */
472 void pa_sink_input_kill(pa_sink_input*i) {
473 pa_sink_input_assert_ref(i);
474 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
475
476 i->kill(i);
477 }
478
479 /* Called from main context */
480 pa_usec_t pa_sink_input_get_latency(pa_sink_input *i, pa_usec_t *sink_latency) {
481 pa_usec_t r[2] = { 0, 0 };
482
483 pa_sink_input_assert_ref(i);
484 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
485
486 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_GET_LATENCY, r, 0, NULL) == 0);
487
488 if (i->get_latency)
489 r[0] += i->get_latency(i);
490
491 if (sink_latency)
492 *sink_latency = r[1];
493
494 return r[0];
495 }
496
497 /* Called from thread context */
498 int pa_sink_input_peek(pa_sink_input *i, size_t slength /* in sink frames */, pa_memchunk *chunk, pa_cvolume *volume) {
499 pa_bool_t do_volume_adj_here;
500 pa_bool_t volume_is_norm;
501 size_t block_size_max_sink, block_size_max_sink_input;
502 size_t ilength;
503
504 pa_sink_input_assert_ref(i);
505 pa_assert(PA_SINK_INPUT_IS_LINKED(i->thread_info.state));
506 pa_assert(pa_frame_aligned(slength, &i->sink->sample_spec));
507 pa_assert(chunk);
508 pa_assert(volume);
509
510 /* pa_log_debug("peek"); */
511
512 if (!i->pop)
513 return -1;
514
515 pa_assert(i->thread_info.state == PA_SINK_INPUT_RUNNING ||
516 i->thread_info.state == PA_SINK_INPUT_CORKED ||
517 i->thread_info.state == PA_SINK_INPUT_DRAINED);
518
519 block_size_max_sink_input = i->thread_info.resampler ?
520 pa_resampler_max_block_size(i->thread_info.resampler) :
521 pa_frame_align(pa_mempool_block_size_max(i->sink->core->mempool), &i->sample_spec);
522
523 block_size_max_sink = pa_frame_align(pa_mempool_block_size_max(i->sink->core->mempool), &i->sink->sample_spec);
524
525 /* Default buffer size */
526 if (slength <= 0)
527 slength = pa_frame_align(CONVERT_BUFFER_LENGTH, &i->sink->sample_spec);
528
529 if (slength > block_size_max_sink)
530 slength = block_size_max_sink;
531
532 if (i->thread_info.resampler) {
533 ilength = pa_resampler_request(i->thread_info.resampler, slength);
534
535 if (ilength <= 0)
536 ilength = pa_frame_align(CONVERT_BUFFER_LENGTH, &i->sample_spec);
537 } else
538 ilength = slength;
539
540 if (ilength > block_size_max_sink_input)
541 ilength = block_size_max_sink_input;
542
543 /* If the channel maps of the sink and this stream differ, we need
544 * to adjust the volume *before* we resample. Otherwise we can do
545 * it after and leave it for the sink code */
546
547 do_volume_adj_here = !pa_channel_map_equal(&i->channel_map, &i->sink->channel_map);
548 volume_is_norm = pa_cvolume_is_norm(&i->thread_info.volume) && !i->thread_info.muted;
549
550 while (!pa_memblockq_is_readable(i->thread_info.render_memblockq)) {
551 pa_memchunk tchunk;
552
553 /* There's nothing in our render queue. We need to fill it up
554 * with data from the implementor. */
555
556 if (i->thread_info.state == PA_SINK_INPUT_CORKED ||
557 i->pop(i, ilength, &tchunk) < 0) {
558
559 /* OK, we're corked or the implementor didn't give us any
560 * data, so let's just hand out silence */
561 pa_atomic_store(&i->thread_info.drained, 1);
562
563 pa_memblockq_seek(i->thread_info.render_memblockq, (int64_t) slength, PA_SEEK_RELATIVE);
564 i->thread_info.playing_for = 0;
565 if (i->thread_info.underrun_for != (uint64_t) -1)
566 i->thread_info.underrun_for += ilength;
567 break;
568 }
569
570 pa_atomic_store(&i->thread_info.drained, 0);
571
572 pa_assert(tchunk.length > 0);
573 pa_assert(tchunk.memblock);
574
575 i->thread_info.underrun_for = 0;
576 i->thread_info.playing_for += tchunk.length;
577
578 while (tchunk.length > 0) {
579 pa_memchunk wchunk;
580
581 wchunk = tchunk;
582 pa_memblock_ref(wchunk.memblock);
583
584 if (wchunk.length > block_size_max_sink_input)
585 wchunk.length = block_size_max_sink_input;
586
587 /* It might be necessary to adjust the volume here */
588 if (do_volume_adj_here && !volume_is_norm) {
589 pa_memchunk_make_writable(&wchunk, 0);
590
591 if (i->thread_info.muted)
592 pa_silence_memchunk(&wchunk, &i->thread_info.sample_spec);
593 else
594 pa_volume_memchunk(&wchunk, &i->thread_info.sample_spec, &i->thread_info.volume);
595 }
596
597 if (!i->thread_info.resampler)
598 pa_memblockq_push_align(i->thread_info.render_memblockq, &wchunk);
599 else {
600 pa_memchunk rchunk;
601 pa_resampler_run(i->thread_info.resampler, &wchunk, &rchunk);
602
603 /* pa_log_debug("pushing %lu", (unsigned long) rchunk.length); */
604
605 if (rchunk.memblock) {
606 pa_memblockq_push_align(i->thread_info.render_memblockq, &rchunk);
607 pa_memblock_unref(rchunk.memblock);
608 }
609 }
610
611 pa_memblock_unref(wchunk.memblock);
612
613 tchunk.index += wchunk.length;
614 tchunk.length -= wchunk.length;
615 }
616
617 pa_memblock_unref(tchunk.memblock);
618 }
619
620 pa_assert_se(pa_memblockq_peek(i->thread_info.render_memblockq, chunk) >= 0);
621
622 pa_assert(chunk->length > 0);
623 pa_assert(chunk->memblock);
624
625 /* pa_log_debug("peeking %lu", (unsigned long) chunk->length); */
626
627 if (chunk->length > block_size_max_sink)
628 chunk->length = block_size_max_sink;
629
630 /* Let's see if we had to apply the volume adjustment ourselves,
631 * or if this can be done by the sink for us */
632
633 if (do_volume_adj_here)
634 /* We had different channel maps, so we already did the adjustment */
635 pa_cvolume_reset(volume, i->sink->sample_spec.channels);
636 else if (i->thread_info.muted)
637 /* We've both the same channel map, so let's have the sink do the adjustment for us*/
638 pa_cvolume_mute(volume, i->sink->sample_spec.channels);
639 else
640 *volume = i->thread_info.volume;
641
642 return 0;
643 }
644
645 /* Called from thread context */
646 void pa_sink_input_drop(pa_sink_input *i, size_t nbytes /* in sink sample spec */) {
647 pa_sink_input_assert_ref(i);
648
649 pa_assert(PA_SINK_INPUT_IS_LINKED(i->thread_info.state));
650 pa_assert(pa_frame_aligned(nbytes, &i->sink->sample_spec));
651 pa_assert(nbytes > 0);
652
653 /* pa_log_debug("dropping %lu", (unsigned long) nbytes); */
654
655 pa_memblockq_drop(i->thread_info.render_memblockq, nbytes);
656 }
657
658 /* Called from thread context */
659 void pa_sink_input_process_rewind(pa_sink_input *i, size_t nbytes /* in sink sample spec */) {
660 size_t lbq;
661 pa_bool_t called = FALSE;
662 pa_sink_input_assert_ref(i);
663
664 pa_assert(PA_SINK_INPUT_IS_LINKED(i->thread_info.state));
665 pa_assert(pa_frame_aligned(nbytes, &i->sink->sample_spec));
666
667 /* pa_log_debug("rewind(%lu, %lu)", (unsigned long) nbytes, (unsigned long) i->thread_info.rewrite_nbytes); */
668
669 lbq = pa_memblockq_get_length(i->thread_info.render_memblockq);
670
671 if (nbytes > 0 && !i->thread_info.dont_rewind_render) {
672 pa_log_debug("Have to rewind %lu bytes on render memblockq.", (unsigned long) nbytes);
673 pa_memblockq_rewind(i->thread_info.render_memblockq, nbytes);
674 }
675
676 if (i->thread_info.rewrite_nbytes == (size_t) -1) {
677
678 /* We were asked to drop all buffered data, and rerequest new
679 * data from implementor the next time push() is called */
680
681 pa_memblockq_flush_write(i->thread_info.render_memblockq);
682
683 } else if (i->thread_info.rewrite_nbytes > 0) {
684 size_t max_rewrite, amount;
685
686 /* Calculate how much make sense to rewrite at most */
687 max_rewrite = nbytes + lbq;
688
689 /* Transform into local domain */
690 if (i->thread_info.resampler)
691 max_rewrite = pa_resampler_request(i->thread_info.resampler, max_rewrite);
692
693 /* Calculate how much of the rewinded data should actually be rewritten */
694 amount = PA_MIN(i->thread_info.rewrite_nbytes, max_rewrite);
695
696 if (amount > 0) {
697 pa_log_debug("Have to rewind %lu bytes on implementor.", (unsigned long) amount);
698
699 /* Tell the implementor */
700 if (i->process_rewind)
701 i->process_rewind(i, amount);
702 called = TRUE;
703
704 /* Convert back to to sink domain */
705 if (i->thread_info.resampler)
706 amount = pa_resampler_result(i->thread_info.resampler, amount);
707
708 if (amount > 0)
709 /* Ok, now update the write pointer */
710 pa_memblockq_seek(i->thread_info.render_memblockq, - ((int64_t) amount), PA_SEEK_RELATIVE);
711
712 if (i->thread_info.rewrite_flush)
713 pa_memblockq_silence(i->thread_info.render_memblockq);
714
715 /* And reset the resampler */
716 if (i->thread_info.resampler)
717 pa_resampler_reset(i->thread_info.resampler);
718 }
719 }
720
721 if (!called)
722 if (i->process_rewind)
723 i->process_rewind(i, 0);
724
725 i->thread_info.rewrite_nbytes = 0;
726 i->thread_info.rewrite_flush = FALSE;
727 i->thread_info.dont_rewind_render = FALSE;
728 }
729
730 /* Called from thread context */
731 void pa_sink_input_update_max_rewind(pa_sink_input *i, size_t nbytes /* in the sink's sample spec */) {
732 pa_sink_input_assert_ref(i);
733 pa_assert(PA_SINK_INPUT_IS_LINKED(i->thread_info.state));
734 pa_assert(pa_frame_aligned(nbytes, &i->sink->sample_spec));
735
736 pa_memblockq_set_maxrewind(i->thread_info.render_memblockq, nbytes);
737
738 if (i->update_max_rewind)
739 i->update_max_rewind(i, i->thread_info.resampler ? pa_resampler_request(i->thread_info.resampler, nbytes) : nbytes);
740 }
741
742 /* Called from thread context */
743 void pa_sink_input_update_max_request(pa_sink_input *i, size_t nbytes /* in the sink's sample spec */) {
744 pa_sink_input_assert_ref(i);
745 pa_assert(PA_SINK_INPUT_IS_LINKED(i->thread_info.state));
746 pa_assert(pa_frame_aligned(nbytes, &i->sink->sample_spec));
747
748 if (i->update_max_request)
749 i->update_max_request(i, i->thread_info.resampler ? pa_resampler_request(i->thread_info.resampler, nbytes) : nbytes);
750 }
751
752 /* Called from thread context */
753 static pa_usec_t fixup_latency(pa_sink *s, pa_usec_t usec) {
754 pa_sink_assert_ref(s);
755
756 if (usec == (pa_usec_t) -1)
757 return usec;
758
759 if (s->thread_info.max_latency > 0 && usec > s->thread_info.max_latency)
760 usec = s->thread_info.max_latency;
761
762 if (s->thread_info.min_latency > 0 && usec < s->thread_info.min_latency)
763 usec = s->thread_info.min_latency;
764
765 return usec;
766 }
767
768 /* Called from thread context */
769 pa_usec_t pa_sink_input_set_requested_latency_within_thread(pa_sink_input *i, pa_usec_t usec) {
770 pa_sink_input_assert_ref(i);
771
772 usec = fixup_latency(i->sink, usec);
773 i->thread_info.requested_sink_latency = usec;
774 pa_sink_invalidate_requested_latency(i->sink);
775
776 return usec;
777 }
778
779 /* Called from main context */
780 pa_usec_t pa_sink_input_set_requested_latency(pa_sink_input *i, pa_usec_t usec) {
781 pa_sink_input_assert_ref(i);
782
783 if (PA_SINK_INPUT_IS_LINKED(i->state))
784 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_REQUESTED_LATENCY, &usec, 0, NULL) == 0);
785 else
786 /* If this sink input is not realized yet, we have to touch
787 * the thread info data directly */
788
789 i->thread_info.requested_sink_latency = usec;
790
791 return usec;
792 }
793
794 /* Called from main context */
795 pa_usec_t pa_sink_input_get_requested_latency(pa_sink_input *i) {
796 pa_usec_t usec = 0;
797
798 pa_sink_input_assert_ref(i);
799
800 if (PA_SINK_INPUT_IS_LINKED(i->state))
801 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_GET_REQUESTED_LATENCY, &usec, 0, NULL) == 0);
802 else
803 /* If this sink input is not realized yet, we have to touch
804 * the thread info data directly */
805 usec = i->thread_info.requested_sink_latency;
806
807 return usec;
808 }
809
810 /* Called from main context */
811 void pa_sink_input_set_volume(pa_sink_input *i, const pa_cvolume *volume) {
812 pa_sink_input_set_volume_data data;
813
814 pa_sink_input_assert_ref(i);
815 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
816 pa_assert(volume);
817 pa_assert(pa_cvolume_valid(volume));
818 pa_assert(pa_cvolume_compatible(volume, &i->sample_spec));
819
820 data.sink_input = i;
821 data.virtual_volume = *volume;
822 data.volume = *volume;
823
824 /* If you change something here, consider looking into
825 * module-flat-volume.c as well since it uses very similar
826 * code. */
827
828 if (pa_hook_fire(&i->core->hooks[PA_CORE_HOOK_SINK_INPUT_SET_VOLUME], &data) < 0)
829 return;
830
831 if (!pa_cvolume_equal(&i->volume, &data.volume)) {
832 i->volume = data.volume;
833 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_VOLUME, &data.volume, 0, NULL) == 0);
834 }
835
836 if (!pa_cvolume_equal(&i->virtual_volume, &data.virtual_volume)) {
837 i->virtual_volume = data.virtual_volume;
838 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
839 }
840 }
841
842 /* Called from main context */
843 const pa_cvolume *pa_sink_input_get_volume(pa_sink_input *i) {
844 pa_sink_input_assert_ref(i);
845 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
846
847 return &i->virtual_volume;
848 }
849
850 /* Called from main context */
851 void pa_sink_input_set_mute(pa_sink_input *i, pa_bool_t mute) {
852 pa_assert(i);
853 pa_sink_input_assert_ref(i);
854 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
855
856 if (!i->muted == !mute)
857 return;
858
859 i->muted = mute;
860
861 pa_asyncmsgq_post(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_MUTE, PA_UINT_TO_PTR(mute), 0, NULL, NULL);
862 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
863 }
864
865 /* Called from main context */
866 pa_bool_t pa_sink_input_get_mute(pa_sink_input *i) {
867 pa_sink_input_assert_ref(i);
868 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
869
870 return i->muted;
871 }
872
873 /* Called from main thread */
874 pa_bool_t pa_sink_input_update_proplist(pa_sink_input *i, pa_update_mode_t mode, pa_proplist *p) {
875
876 pa_sink_input_assert_ref(i);
877
878 pa_proplist_update(i->proplist, mode, p);
879
880 if (PA_SINK_IS_LINKED(i->state)) {
881 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED], i);
882 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
883 }
884
885 return TRUE;
886 }
887
888 /* Called from main context */
889 void pa_sink_input_cork(pa_sink_input *i, pa_bool_t b) {
890 pa_sink_input_assert_ref(i);
891 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
892
893 sink_input_set_state(i, b ? PA_SINK_INPUT_CORKED : PA_SINK_INPUT_RUNNING);
894 }
895
896 /* Called from main context */
897 int pa_sink_input_set_rate(pa_sink_input *i, uint32_t rate) {
898 pa_sink_input_assert_ref(i);
899 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
900 pa_return_val_if_fail(i->thread_info.resampler, -1);
901
902 if (i->sample_spec.rate == rate)
903 return 0;
904
905 i->sample_spec.rate = rate;
906
907 pa_asyncmsgq_post(i->sink->asyncmsgq, PA_MSGOBJECT(i), PA_SINK_INPUT_MESSAGE_SET_RATE, PA_UINT_TO_PTR(rate), 0, NULL, NULL);
908
909 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
910 return 0;
911 }
912
913 /* Called from main context */
914 void pa_sink_input_set_name(pa_sink_input *i, const char *name) {
915 const char *old;
916 pa_sink_input_assert_ref(i);
917
918 if (!name && !pa_proplist_contains(i->proplist, PA_PROP_MEDIA_NAME))
919 return;
920
921 old = pa_proplist_gets(i->proplist, PA_PROP_MEDIA_NAME);
922
923 if (old && name && !strcmp(old, name))
924 return;
925
926 if (name)
927 pa_proplist_sets(i->proplist, PA_PROP_MEDIA_NAME, name);
928 else
929 pa_proplist_unset(i->proplist, PA_PROP_MEDIA_NAME);
930
931 if (PA_SINK_INPUT_IS_LINKED(i->state)) {
932 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED], i);
933 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
934 }
935 }
936
937 /* Called from main context */
938 pa_resample_method_t pa_sink_input_get_resample_method(pa_sink_input *i) {
939 pa_sink_input_assert_ref(i);
940
941 return i->resample_method;
942 }
943
944 /* Called from main context */
945 pa_bool_t pa_sink_input_may_move_to(pa_sink_input *i, pa_sink *dest) {
946 pa_sink_input_assert_ref(i);
947 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
948 pa_sink_assert_ref(dest);
949
950 if (dest == i->sink)
951 return TRUE;
952
953 if (i->flags & PA_SINK_INPUT_DONT_MOVE)
954 return FALSE;
955
956 if (i->sync_next || i->sync_prev) {
957 pa_log_warn("Moving synchronised streams not supported.");
958 return FALSE;
959 }
960
961 if (pa_idxset_size(dest->inputs) >= PA_MAX_INPUTS_PER_SINK) {
962 pa_log_warn("Failed to move sink input: too many inputs per sink.");
963 return FALSE;
964 }
965
966 if (i->may_move_to)
967 if (!i->may_move_to(i, dest))
968 return FALSE;
969
970 return TRUE;
971 }
972
973 /* Called from main context */
974 int pa_sink_input_move_to(pa_sink_input *i, pa_sink *dest) {
975 pa_resampler *new_resampler;
976 pa_sink *origin;
977 pa_sink_input_move_hook_data hook_data;
978 pa_source_output *o, *p = NULL;
979
980 pa_sink_input_assert_ref(i);
981 pa_assert(PA_SINK_INPUT_IS_LINKED(i->state));
982 pa_sink_assert_ref(dest);
983
984 origin = i->sink;
985
986 if (dest == origin)
987 return 0;
988
989 if (!pa_sink_input_may_move_to(i, dest))
990 return -1;
991
992 /* Kill directly connected outputs */
993 while ((o = pa_idxset_first(i->direct_outputs, NULL))) {
994 pa_assert(o != p);
995 pa_source_output_kill(o);
996 p = o;
997 }
998
999 if (i->thread_info.resampler &&
1000 pa_sample_spec_equal(&origin->sample_spec, &dest->sample_spec) &&
1001 pa_channel_map_equal(&origin->channel_map, &dest->channel_map))
1002
1003 /* Try to reuse the old resampler if possible */
1004 new_resampler = i->thread_info.resampler;
1005
1006 else if ((i->flags & PA_SINK_INPUT_VARIABLE_RATE) ||
1007 !pa_sample_spec_equal(&i->sample_spec, &dest->sample_spec) ||
1008 !pa_channel_map_equal(&i->channel_map, &dest->channel_map)) {
1009
1010 /* Okey, we need a new resampler for the new sink */
1011
1012 if (!(new_resampler = pa_resampler_new(
1013 dest->core->mempool,
1014 &i->sample_spec, &i->channel_map,
1015 &dest->sample_spec, &dest->channel_map,
1016 i->resample_method,
1017 ((i->flags & PA_SINK_INPUT_VARIABLE_RATE) ? PA_RESAMPLER_VARIABLE_RATE : 0) |
1018 ((i->flags & PA_SINK_INPUT_NO_REMAP) ? PA_RESAMPLER_NO_REMAP : 0) |
1019 (i->core->disable_remixing || (i->flags & PA_SINK_INPUT_NO_REMIX) ? PA_RESAMPLER_NO_REMIX : 0)))) {
1020 pa_log_warn("Unsupported resampling operation.");
1021 return -1;
1022 }
1023 } else
1024 new_resampler = NULL;
1025
1026 hook_data.sink_input = i;
1027 hook_data.destination = dest;
1028 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_MOVE], &hook_data);
1029
1030 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_START_MOVE, i, 0, NULL) == 0);
1031
1032 pa_idxset_remove_by_data(origin->inputs, i, NULL);
1033 pa_idxset_put(dest->inputs, i, NULL);
1034 i->sink = dest;
1035
1036 if (pa_sink_input_get_state(i) == PA_SINK_INPUT_CORKED) {
1037 pa_assert_se(origin->n_corked-- >= 1);
1038 dest->n_corked++;
1039 }
1040
1041 /* Replace resampler and render queue */
1042 if (new_resampler != i->thread_info.resampler) {
1043
1044 if (i->thread_info.resampler)
1045 pa_resampler_free(i->thread_info.resampler);
1046 i->thread_info.resampler = new_resampler;
1047
1048 pa_memblockq_free(i->thread_info.render_memblockq);
1049
1050 i->thread_info.render_memblockq = pa_memblockq_new(
1051 0,
1052 MEMBLOCKQ_MAXLENGTH,
1053 0,
1054 pa_frame_size(&i->sink->sample_spec),
1055 0,
1056 1,
1057 0,
1058 &i->sink->silence);
1059 }
1060
1061 pa_sink_update_status(origin);
1062 pa_sink_update_status(dest);
1063
1064 pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_FINISH_MOVE, i, 0, NULL) == 0);
1065
1066 if (i->moved)
1067 i->moved(i);
1068
1069 pa_hook_fire(&i->sink->core->hooks[PA_CORE_HOOK_SINK_INPUT_MOVE_POST], i);
1070
1071 pa_log_debug("Successfully moved sink input %i from %s to %s.", i->index, origin->name, dest->name);
1072
1073 /* Notify everyone */
1074 pa_subscription_post(i->sink->core, PA_SUBSCRIPTION_EVENT_SINK_INPUT|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
1075
1076 return 0;
1077 }
1078
1079 /* Called from IO thread context */
1080 void pa_sink_input_set_state_within_thread(pa_sink_input *i, pa_sink_input_state_t state) {
1081 pa_bool_t corking, uncorking;
1082 pa_sink_input_assert_ref(i);
1083
1084 if (state == i->thread_info.state)
1085 return;
1086
1087 if ((state == PA_SINK_INPUT_DRAINED || state == PA_SINK_INPUT_RUNNING) &&
1088 !(i->thread_info.state == PA_SINK_INPUT_DRAINED || i->thread_info.state != PA_SINK_INPUT_RUNNING))
1089 pa_atomic_store(&i->thread_info.drained, 1);
1090
1091 corking = state == PA_SINK_INPUT_CORKED && i->thread_info.state == PA_SINK_INPUT_RUNNING;
1092 uncorking = i->thread_info.state == PA_SINK_INPUT_CORKED && state == PA_SINK_INPUT_RUNNING;
1093
1094 if (i->state_change)
1095 i->state_change(i, state);
1096
1097 i->thread_info.state = state;
1098
1099 if (corking) {
1100
1101 pa_log_debug("Requesting rewind due to corking");
1102
1103 /* This will tell the implementing sink input driver to rewind
1104 * so that the unplayed already mixed data is not lost */
1105 pa_sink_input_request_rewind(i, 0, TRUE, TRUE, FALSE);
1106
1107 } else if (uncorking) {
1108
1109 i->thread_info.underrun_for = (uint64_t) -1;
1110 i->thread_info.playing_for = 0;
1111
1112 pa_log_debug("Requesting rewind due to uncorking");
1113
1114 /* OK, we're being uncorked. Make sure we're not rewound when
1115 * the hw buffer is remixed and request a remix. */
1116 pa_sink_input_request_rewind(i, 0, FALSE, TRUE, TRUE);
1117 }
1118 }
1119
1120 /* Called from thread context, except when it is not. */
1121 int pa_sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
1122 pa_sink_input *i = PA_SINK_INPUT(o);
1123 pa_sink_input_assert_ref(i);
1124
1125 switch (code) {
1126
1127 case PA_SINK_INPUT_MESSAGE_SET_VOLUME:
1128 i->thread_info.volume = *((pa_cvolume*) userdata);
1129 pa_sink_input_request_rewind(i, 0, TRUE, FALSE, FALSE);
1130 return 0;
1131
1132 case PA_SINK_INPUT_MESSAGE_SET_MUTE:
1133 i->thread_info.muted = PA_PTR_TO_UINT(userdata);
1134 pa_sink_input_request_rewind(i, 0, TRUE, FALSE, FALSE);
1135 return 0;
1136
1137 case PA_SINK_INPUT_MESSAGE_GET_LATENCY: {
1138 pa_usec_t *r = userdata;
1139 pa_usec_t sink_usec = 0;
1140
1141 r[0] += pa_bytes_to_usec(pa_memblockq_get_length(i->thread_info.render_memblockq), &i->sink->sample_spec);
1142
1143 if (i->sink->parent.process_msg(PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_GET_LATENCY, &sink_usec, 0, NULL) >= 0)
1144 r[1] += sink_usec;
1145
1146 return 0;
1147 }
1148
1149 case PA_SINK_INPUT_MESSAGE_SET_RATE:
1150
1151 i->thread_info.sample_spec.rate = PA_PTR_TO_UINT(userdata);
1152 pa_resampler_set_input_rate(i->thread_info.resampler, PA_PTR_TO_UINT(userdata));
1153
1154 return 0;
1155
1156 case PA_SINK_INPUT_MESSAGE_SET_STATE: {
1157 pa_sink_input *ssync;
1158
1159 pa_sink_input_set_state_within_thread(i, PA_PTR_TO_UINT(userdata));
1160
1161 for (ssync = i->thread_info.sync_prev; ssync; ssync = ssync->thread_info.sync_prev)
1162 pa_sink_input_set_state_within_thread(ssync, PA_PTR_TO_UINT(userdata));
1163
1164 for (ssync = i->thread_info.sync_next; ssync; ssync = ssync->thread_info.sync_next)
1165 pa_sink_input_set_state_within_thread(ssync, PA_PTR_TO_UINT(userdata));
1166
1167 return 0;
1168 }
1169
1170 case PA_SINK_INPUT_MESSAGE_SET_REQUESTED_LATENCY: {
1171 pa_usec_t *usec = userdata;
1172
1173 *usec = pa_sink_input_set_requested_latency_within_thread(i, *usec);
1174 return 0;
1175 }
1176
1177 case PA_SINK_INPUT_MESSAGE_GET_REQUESTED_LATENCY: {
1178 pa_usec_t *r = userdata;
1179
1180 *r = i->thread_info.requested_sink_latency;
1181 return 0;
1182 }
1183 }
1184
1185 return -1;
1186 }
1187
1188 /* Called from main thread */
1189 pa_sink_input_state_t pa_sink_input_get_state(pa_sink_input *i) {
1190 pa_sink_input_assert_ref(i);
1191
1192 if (i->state == PA_SINK_INPUT_RUNNING || i->state == PA_SINK_INPUT_DRAINED)
1193 return pa_atomic_load(&i->thread_info.drained) ? PA_SINK_INPUT_DRAINED : PA_SINK_INPUT_RUNNING;
1194
1195 return i->state;
1196 }
1197
1198 /* Called from IO context */
1199 pa_bool_t pa_sink_input_safe_to_remove(pa_sink_input *i) {
1200 pa_sink_input_assert_ref(i);
1201
1202 if (PA_SINK_INPUT_IS_LINKED(i->thread_info.state))
1203 return pa_memblockq_is_empty(i->thread_info.render_memblockq);
1204
1205 return TRUE;
1206 }
1207
1208 /* Called from IO context */
1209 void pa_sink_input_request_rewind(pa_sink_input *i, size_t nbytes /* in our sample spec */, pa_bool_t rewrite, pa_bool_t flush, pa_bool_t dont_rewind_render) {
1210 size_t lbq;
1211
1212 /* If 'rewrite' is TRUE the sink is rewound as far as requested
1213 * and possible and the exact value of this is passed back the
1214 * implementor via process_rewind(). If 'flush' is also TRUE all
1215 * already rendered data is also dropped.
1216 *
1217 * If 'rewrite' is FALSE the sink is rewound as far as requested
1218 * and possible and the already rendered data is dropped so that
1219 * in the next iteration we read new data from the
1220 * implementor. This implies 'flush' is TRUE. If
1221 * dont_rewind_render is TRUE then the render memblockq is not
1222 * rewound. */
1223
1224 pa_sink_input_assert_ref(i);
1225
1226 nbytes = PA_MAX(i->thread_info.rewrite_nbytes, nbytes);
1227
1228 /* pa_log_debug("request rewrite %lu", (unsigned long) nbytes); */
1229
1230 /* We don't take rewind requests while we are corked */
1231 if (i->thread_info.state == PA_SINK_INPUT_CORKED)
1232 return;
1233
1234 pa_assert(rewrite || flush);
1235 pa_assert(!dont_rewind_render || !rewrite);
1236
1237 /* Calculate how much we can rewind locally without having to
1238 * touch the sink */
1239 if (rewrite)
1240 lbq = pa_memblockq_get_length(i->thread_info.render_memblockq);
1241 else
1242 lbq = 0;
1243
1244 /* Check if rewinding for the maximum is requested, and if so, fix up */
1245 if (nbytes <= 0) {
1246
1247 /* Calculate maximum number of bytes that could be rewound in theory */
1248 nbytes = i->sink->thread_info.max_rewind + lbq;
1249
1250 /* Transform from sink domain */
1251 if (i->thread_info.resampler)
1252 nbytes = pa_resampler_request(i->thread_info.resampler, nbytes);
1253 }
1254
1255 if (i->thread_info.rewrite_nbytes != (size_t) -1) {
1256 if (rewrite) {
1257 /* Make sure to not overwrite over underruns */
1258 if (nbytes > i->thread_info.playing_for)
1259 nbytes = (size_t) i->thread_info.playing_for;
1260
1261 i->thread_info.rewrite_nbytes = nbytes;
1262 } else
1263 i->thread_info.rewrite_nbytes = (size_t) -1;
1264 }
1265
1266 i->thread_info.rewrite_flush =
1267 i->thread_info.rewrite_flush ||
1268 (flush && i->thread_info.rewrite_nbytes != 0);
1269
1270 i->thread_info.dont_rewind_render =
1271 i->thread_info.dont_rewind_render ||
1272 dont_rewind_render;
1273
1274 if (nbytes != (size_t) -1) {
1275
1276 /* Transform to sink domain */
1277 if (i->thread_info.resampler)
1278 nbytes = pa_resampler_result(i->thread_info.resampler, nbytes);
1279
1280 if (nbytes > lbq)
1281 pa_sink_request_rewind(i->sink, nbytes - lbq);
1282 else
1283 /* This call will make sure process_rewind() is called later */
1284 pa_sink_request_rewind(i->sink, 0);
1285 }
1286 }
1287
1288 /* Called from main context */
1289 pa_memchunk* pa_sink_input_get_silence(pa_sink_input *i, pa_memchunk *ret) {
1290 pa_sink_input_assert_ref(i);
1291 pa_assert(ret);
1292
1293 pa_silence_memchunk_get(
1294 &i->sink->core->silence_cache,
1295 i->sink->core->mempool,
1296 ret,
1297 &i->sample_spec,
1298 i->thread_info.resampler ? pa_resampler_max_block_size(i->thread_info.resampler) : 0);
1299
1300 return ret;
1301 }