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