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