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