]> code.delx.au - pulseaudio/blob - src/pulsecore/resampler.c
4c788dcaca3d7d851a1c2f09f901d9f1aae3d555
[pulseaudio] / src / pulsecore / resampler.c
1 /***
2 This file is part of PulseAudio.
3
4 Copyright 2004-2006 Lennart Poettering
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published
8 by the Free Software Foundation; either version 2.1 of the License,
9 or (at your option) any later version.
10
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27
28 #ifdef HAVE_LIBSAMPLERATE
29 #include <samplerate.h>
30 #endif
31
32 #ifdef HAVE_SPEEX
33 #include <speex/speex_resampler.h>
34 #endif
35
36 #include <pulse/xmalloc.h>
37 #include <pulsecore/sconv.h>
38 #include <pulsecore/log.h>
39 #include <pulsecore/macro.h>
40 #include <pulsecore/strbuf.h>
41 #include <pulsecore/remap.h>
42 #include <pulsecore/core-util.h>
43 #include "ffmpeg/avcodec.h"
44
45 #include "resampler.h"
46
47 /* Number of samples of extra space we allow the resamplers to return */
48 #define EXTRA_FRAMES 128
49
50 struct pa_resampler {
51 pa_resample_method_t method;
52 pa_resample_flags_t flags;
53
54 pa_sample_spec i_ss, o_ss;
55 pa_channel_map i_cm, o_cm;
56 size_t i_fz, o_fz, w_fz, w_sz;
57 pa_mempool *mempool;
58
59 pa_memchunk to_work_format_buf;
60 pa_memchunk remap_buf;
61 pa_memchunk resample_buf;
62 pa_memchunk from_work_format_buf;
63 size_t to_work_format_buf_size;
64 size_t remap_buf_size;
65 size_t resample_buf_size;
66 size_t from_work_format_buf_size;
67
68 /* points to buffer before resampling stage, remap */
69 pa_memchunk *leftover_buf;
70 size_t *leftover_buf_size;
71
72 /* have_leftover points to leftover_in_remap */
73 bool *have_leftover;
74 bool leftover_in_remap;
75
76 pa_sample_format_t work_format;
77 uint8_t work_channels;
78
79 pa_convert_func_t to_work_format_func;
80 pa_convert_func_t from_work_format_func;
81
82 pa_remap_t remap;
83 bool map_required;
84
85 pa_resampler_impl impl;
86 };
87
88 struct trivial_data { /* data specific to the trivial resampler */
89 unsigned o_counter;
90 unsigned i_counter;
91 };
92
93 struct peaks_data { /* data specific to the peak finder pseudo resampler */
94 unsigned o_counter;
95 unsigned i_counter;
96
97 float max_f[PA_CHANNELS_MAX];
98 int16_t max_i[PA_CHANNELS_MAX];
99 };
100
101 struct ffmpeg_data { /* data specific to ffmpeg */
102 struct AVResampleContext *state;
103 };
104
105 static int copy_init(pa_resampler *r);
106 static int trivial_init(pa_resampler*r);
107 #ifdef HAVE_SPEEX
108 static int speex_init(pa_resampler*r);
109 #endif
110 static int ffmpeg_init(pa_resampler*r);
111 static int peaks_init(pa_resampler*r);
112 #ifdef HAVE_LIBSAMPLERATE
113 static int libsamplerate_init(pa_resampler*r);
114 #endif
115
116 static void calc_map_table(pa_resampler *r);
117
118 static int (* const init_table[])(pa_resampler*r) = {
119 #ifdef HAVE_LIBSAMPLERATE
120 [PA_RESAMPLER_SRC_SINC_BEST_QUALITY] = libsamplerate_init,
121 [PA_RESAMPLER_SRC_SINC_MEDIUM_QUALITY] = libsamplerate_init,
122 [PA_RESAMPLER_SRC_SINC_FASTEST] = libsamplerate_init,
123 [PA_RESAMPLER_SRC_ZERO_ORDER_HOLD] = libsamplerate_init,
124 [PA_RESAMPLER_SRC_LINEAR] = libsamplerate_init,
125 #else
126 [PA_RESAMPLER_SRC_SINC_BEST_QUALITY] = NULL,
127 [PA_RESAMPLER_SRC_SINC_MEDIUM_QUALITY] = NULL,
128 [PA_RESAMPLER_SRC_SINC_FASTEST] = NULL,
129 [PA_RESAMPLER_SRC_ZERO_ORDER_HOLD] = NULL,
130 [PA_RESAMPLER_SRC_LINEAR] = NULL,
131 #endif
132 [PA_RESAMPLER_TRIVIAL] = trivial_init,
133 #ifdef HAVE_SPEEX
134 [PA_RESAMPLER_SPEEX_FLOAT_BASE+0] = speex_init,
135 [PA_RESAMPLER_SPEEX_FLOAT_BASE+1] = speex_init,
136 [PA_RESAMPLER_SPEEX_FLOAT_BASE+2] = speex_init,
137 [PA_RESAMPLER_SPEEX_FLOAT_BASE+3] = speex_init,
138 [PA_RESAMPLER_SPEEX_FLOAT_BASE+4] = speex_init,
139 [PA_RESAMPLER_SPEEX_FLOAT_BASE+5] = speex_init,
140 [PA_RESAMPLER_SPEEX_FLOAT_BASE+6] = speex_init,
141 [PA_RESAMPLER_SPEEX_FLOAT_BASE+7] = speex_init,
142 [PA_RESAMPLER_SPEEX_FLOAT_BASE+8] = speex_init,
143 [PA_RESAMPLER_SPEEX_FLOAT_BASE+9] = speex_init,
144 [PA_RESAMPLER_SPEEX_FLOAT_BASE+10] = speex_init,
145 [PA_RESAMPLER_SPEEX_FIXED_BASE+0] = speex_init,
146 [PA_RESAMPLER_SPEEX_FIXED_BASE+1] = speex_init,
147 [PA_RESAMPLER_SPEEX_FIXED_BASE+2] = speex_init,
148 [PA_RESAMPLER_SPEEX_FIXED_BASE+3] = speex_init,
149 [PA_RESAMPLER_SPEEX_FIXED_BASE+4] = speex_init,
150 [PA_RESAMPLER_SPEEX_FIXED_BASE+5] = speex_init,
151 [PA_RESAMPLER_SPEEX_FIXED_BASE+6] = speex_init,
152 [PA_RESAMPLER_SPEEX_FIXED_BASE+7] = speex_init,
153 [PA_RESAMPLER_SPEEX_FIXED_BASE+8] = speex_init,
154 [PA_RESAMPLER_SPEEX_FIXED_BASE+9] = speex_init,
155 [PA_RESAMPLER_SPEEX_FIXED_BASE+10] = speex_init,
156 #else
157 [PA_RESAMPLER_SPEEX_FLOAT_BASE+0] = NULL,
158 [PA_RESAMPLER_SPEEX_FLOAT_BASE+1] = NULL,
159 [PA_RESAMPLER_SPEEX_FLOAT_BASE+2] = NULL,
160 [PA_RESAMPLER_SPEEX_FLOAT_BASE+3] = NULL,
161 [PA_RESAMPLER_SPEEX_FLOAT_BASE+4] = NULL,
162 [PA_RESAMPLER_SPEEX_FLOAT_BASE+5] = NULL,
163 [PA_RESAMPLER_SPEEX_FLOAT_BASE+6] = NULL,
164 [PA_RESAMPLER_SPEEX_FLOAT_BASE+7] = NULL,
165 [PA_RESAMPLER_SPEEX_FLOAT_BASE+8] = NULL,
166 [PA_RESAMPLER_SPEEX_FLOAT_BASE+9] = NULL,
167 [PA_RESAMPLER_SPEEX_FLOAT_BASE+10] = NULL,
168 [PA_RESAMPLER_SPEEX_FIXED_BASE+0] = NULL,
169 [PA_RESAMPLER_SPEEX_FIXED_BASE+1] = NULL,
170 [PA_RESAMPLER_SPEEX_FIXED_BASE+2] = NULL,
171 [PA_RESAMPLER_SPEEX_FIXED_BASE+3] = NULL,
172 [PA_RESAMPLER_SPEEX_FIXED_BASE+4] = NULL,
173 [PA_RESAMPLER_SPEEX_FIXED_BASE+5] = NULL,
174 [PA_RESAMPLER_SPEEX_FIXED_BASE+6] = NULL,
175 [PA_RESAMPLER_SPEEX_FIXED_BASE+7] = NULL,
176 [PA_RESAMPLER_SPEEX_FIXED_BASE+8] = NULL,
177 [PA_RESAMPLER_SPEEX_FIXED_BASE+9] = NULL,
178 [PA_RESAMPLER_SPEEX_FIXED_BASE+10] = NULL,
179 #endif
180 [PA_RESAMPLER_FFMPEG] = ffmpeg_init,
181 [PA_RESAMPLER_AUTO] = NULL,
182 [PA_RESAMPLER_COPY] = copy_init,
183 [PA_RESAMPLER_PEAKS] = peaks_init,
184 };
185
186 static pa_resample_method_t choose_auto_resampler(pa_resample_flags_t flags) {
187 pa_resample_method_t method;
188
189 if (pa_resample_method_supported(PA_RESAMPLER_SPEEX_FLOAT_BASE + 1))
190 method = PA_RESAMPLER_SPEEX_FLOAT_BASE + 1;
191 else if (flags & PA_RESAMPLER_VARIABLE_RATE)
192 method = PA_RESAMPLER_TRIVIAL;
193 else
194 method = PA_RESAMPLER_FFMPEG;
195
196 return method;
197 }
198
199 static pa_resample_method_t pa_resampler_fix_method(
200 pa_resample_flags_t flags,
201 pa_resample_method_t method,
202 const uint32_t rate_a,
203 const uint32_t rate_b) {
204
205 pa_assert(pa_sample_rate_valid(rate_a));
206 pa_assert(pa_sample_rate_valid(rate_b));
207 pa_assert(method >= 0);
208 pa_assert(method < PA_RESAMPLER_MAX);
209
210 if (!(flags & PA_RESAMPLER_VARIABLE_RATE) && rate_a == rate_b) {
211 pa_log_info("Forcing resampler 'copy', because of fixed, identical sample rates.");
212 method = PA_RESAMPLER_COPY;
213 }
214
215 if (!pa_resample_method_supported(method)) {
216 pa_log_warn("Support for resampler '%s' not compiled in, reverting to 'auto'.", pa_resample_method_to_string(method));
217 method = PA_RESAMPLER_AUTO;
218 }
219
220 switch (method) {
221 case PA_RESAMPLER_COPY:
222 if (rate_a != rate_b) {
223 pa_log_info("Resampler 'copy' cannot change sampling rate, reverting to resampler 'auto'.");
224 method = PA_RESAMPLER_AUTO;
225 break;
226 }
227 /* Else fall through */
228 case PA_RESAMPLER_FFMPEG:
229 if (flags & PA_RESAMPLER_VARIABLE_RATE) {
230 pa_log_info("Resampler '%s' cannot do variable rate, reverting to resampler 'auto'.", pa_resample_method_to_string(method));
231 method = PA_RESAMPLER_AUTO;
232 }
233 break;
234
235 /* The Peaks resampler only supports downsampling.
236 * Revert to auto if we are upsampling */
237 case PA_RESAMPLER_PEAKS:
238 if (rate_a < rate_b) {
239 pa_log_warn("The 'peaks' resampler only supports downsampling, reverting to resampler 'auto'.");
240 method = PA_RESAMPLER_AUTO;
241 }
242 break;
243
244 default:
245 break;
246 }
247
248 if (method == PA_RESAMPLER_AUTO)
249 method = choose_auto_resampler(flags);
250
251 return method;
252 }
253
254 /* Return true if a is a more precise sample format than b, else return false */
255 static bool sample_format_more_precise(pa_sample_format_t a, pa_sample_format_t b) {
256 pa_assert(pa_sample_format_valid(a));
257 pa_assert(pa_sample_format_valid(b));
258
259 switch (a) {
260 case PA_SAMPLE_U8:
261 case PA_SAMPLE_ALAW:
262 case PA_SAMPLE_ULAW:
263 return false;
264 break;
265
266 case PA_SAMPLE_S16LE:
267 case PA_SAMPLE_S16BE:
268 if (b == PA_SAMPLE_ULAW || b == PA_SAMPLE_ALAW || b == PA_SAMPLE_U8)
269 return true;
270 else
271 return false;
272 break;
273
274 case PA_SAMPLE_S24LE:
275 case PA_SAMPLE_S24BE:
276 case PA_SAMPLE_S24_32LE:
277 case PA_SAMPLE_S24_32BE:
278 if (b == PA_SAMPLE_ULAW || b == PA_SAMPLE_ALAW || b == PA_SAMPLE_U8 ||
279 b == PA_SAMPLE_S16LE || b == PA_SAMPLE_S16BE)
280 return true;
281 else
282 return false;
283 break;
284
285 case PA_SAMPLE_FLOAT32LE:
286 case PA_SAMPLE_FLOAT32BE:
287 case PA_SAMPLE_S32LE:
288 case PA_SAMPLE_S32BE:
289 if (b == PA_SAMPLE_FLOAT32LE || b == PA_SAMPLE_FLOAT32BE ||
290 b == PA_SAMPLE_S32LE || b == PA_SAMPLE_FLOAT32BE)
291 return false;
292 else
293 return true;
294 break;
295
296 default:
297 return false;
298 }
299 }
300
301 static pa_sample_format_t pa_resampler_choose_work_format(
302 pa_resample_method_t method,
303 pa_sample_format_t a,
304 pa_sample_format_t b,
305 bool map_required) {
306 pa_sample_format_t work_format;
307
308 pa_assert(pa_sample_format_valid(a));
309 pa_assert(pa_sample_format_valid(b));
310 pa_assert(method >= 0);
311 pa_assert(method < PA_RESAMPLER_MAX);
312
313 if (method >= PA_RESAMPLER_SPEEX_FIXED_BASE && method <= PA_RESAMPLER_SPEEX_FIXED_MAX)
314 method = PA_RESAMPLER_SPEEX_FIXED_BASE;
315
316 switch (method) {
317 /* This block is for resampling functions that only
318 * support the S16 sample format. */
319 case PA_RESAMPLER_SPEEX_FIXED_BASE: /* fall through */
320 case PA_RESAMPLER_FFMPEG:
321 work_format = PA_SAMPLE_S16NE;
322 break;
323
324 /* This block is for resampling functions that support
325 * any sample format. */
326 case PA_RESAMPLER_COPY: /* fall through */
327 case PA_RESAMPLER_TRIVIAL:
328 if (!map_required && a == b) {
329 work_format = a;
330 break;
331 }
332 /* Else fall trough */
333 case PA_RESAMPLER_PEAKS:
334 if (a == PA_SAMPLE_S16NE || b == PA_SAMPLE_S16NE)
335 work_format = PA_SAMPLE_S16NE;
336 else if (sample_format_more_precise(a, PA_SAMPLE_S16NE) ||
337 sample_format_more_precise(b, PA_SAMPLE_S16NE))
338 work_format = PA_SAMPLE_FLOAT32NE;
339 else
340 work_format = PA_SAMPLE_S16NE;
341 break;
342
343 default:
344 work_format = PA_SAMPLE_FLOAT32NE;
345 }
346
347 return work_format;
348 }
349
350 pa_resampler* pa_resampler_new(
351 pa_mempool *pool,
352 const pa_sample_spec *a,
353 const pa_channel_map *am,
354 const pa_sample_spec *b,
355 const pa_channel_map *bm,
356 pa_resample_method_t method,
357 pa_resample_flags_t flags) {
358
359 pa_resampler *r = NULL;
360
361 pa_assert(pool);
362 pa_assert(a);
363 pa_assert(b);
364 pa_assert(pa_sample_spec_valid(a));
365 pa_assert(pa_sample_spec_valid(b));
366 pa_assert(method >= 0);
367 pa_assert(method < PA_RESAMPLER_MAX);
368
369 method = pa_resampler_fix_method(flags, method, a->rate, b->rate);
370
371 r = pa_xnew0(pa_resampler, 1);
372 r->mempool = pool;
373 r->method = method;
374 r->flags = flags;
375
376 /* Fill sample specs */
377 r->i_ss = *a;
378 r->o_ss = *b;
379
380 /* set up the remap structure */
381 r->remap.i_ss = &r->i_ss;
382 r->remap.o_ss = &r->o_ss;
383 r->remap.format = &r->work_format;
384
385 if (am)
386 r->i_cm = *am;
387 else if (!pa_channel_map_init_auto(&r->i_cm, r->i_ss.channels, PA_CHANNEL_MAP_DEFAULT))
388 goto fail;
389
390 if (bm)
391 r->o_cm = *bm;
392 else if (!pa_channel_map_init_auto(&r->o_cm, r->o_ss.channels, PA_CHANNEL_MAP_DEFAULT))
393 goto fail;
394
395 r->i_fz = pa_frame_size(a);
396 r->o_fz = pa_frame_size(b);
397
398 calc_map_table(r);
399
400 pa_log_info("Using resampler '%s'", pa_resample_method_to_string(method));
401
402 r->work_format = pa_resampler_choose_work_format(method, a->format, b->format, r->map_required);
403
404 pa_log_info("Using %s as working format.", pa_sample_format_to_string(r->work_format));
405
406 r->w_sz = pa_sample_size_of_format(r->work_format);
407
408 if (r->i_ss.format != r->work_format) {
409 if (r->work_format == PA_SAMPLE_FLOAT32NE) {
410 if (!(r->to_work_format_func = pa_get_convert_to_float32ne_function(r->i_ss.format)))
411 goto fail;
412 } else {
413 pa_assert(r->work_format == PA_SAMPLE_S16NE);
414 if (!(r->to_work_format_func = pa_get_convert_to_s16ne_function(r->i_ss.format)))
415 goto fail;
416 }
417 }
418
419 if (r->o_ss.format != r->work_format) {
420 if (r->work_format == PA_SAMPLE_FLOAT32NE) {
421 if (!(r->from_work_format_func = pa_get_convert_from_float32ne_function(r->o_ss.format)))
422 goto fail;
423 } else {
424 pa_assert(r->work_format == PA_SAMPLE_S16NE);
425 if (!(r->from_work_format_func = pa_get_convert_from_s16ne_function(r->o_ss.format)))
426 goto fail;
427 }
428 }
429
430 /* leftover buffer is the buffer before the resampling stage */
431 r->leftover_buf = &r->remap_buf;
432 r->leftover_buf_size = &r->remap_buf_size;
433 r->have_leftover = &r->leftover_in_remap;
434
435 r->work_channels = r->o_ss.channels;
436 r->w_fz = pa_sample_size_of_format(r->work_format) * r->work_channels;
437
438 /* initialize implementation */
439 if (init_table[method](r) < 0)
440 goto fail;
441
442 return r;
443
444 fail:
445 pa_xfree(r);
446
447 return NULL;
448 }
449
450 void pa_resampler_free(pa_resampler *r) {
451 pa_assert(r);
452
453 if (r->impl.free)
454 r->impl.free(r);
455 else
456 pa_xfree(r->impl.data);
457
458 if (r->to_work_format_buf.memblock)
459 pa_memblock_unref(r->to_work_format_buf.memblock);
460 if (r->remap_buf.memblock)
461 pa_memblock_unref(r->remap_buf.memblock);
462 if (r->resample_buf.memblock)
463 pa_memblock_unref(r->resample_buf.memblock);
464 if (r->from_work_format_buf.memblock)
465 pa_memblock_unref(r->from_work_format_buf.memblock);
466
467 pa_xfree(r);
468 }
469
470 void pa_resampler_set_input_rate(pa_resampler *r, uint32_t rate) {
471 pa_assert(r);
472 pa_assert(rate > 0);
473 pa_assert(r->impl.update_rates);
474
475 if (r->i_ss.rate == rate)
476 return;
477
478 r->i_ss.rate = rate;
479
480 r->impl.update_rates(r);
481 }
482
483 void pa_resampler_set_output_rate(pa_resampler *r, uint32_t rate) {
484 pa_assert(r);
485 pa_assert(rate > 0);
486 pa_assert(r->impl.update_rates);
487
488 if (r->o_ss.rate == rate)
489 return;
490
491 r->o_ss.rate = rate;
492
493 r->impl.update_rates(r);
494 }
495
496 size_t pa_resampler_request(pa_resampler *r, size_t out_length) {
497 pa_assert(r);
498
499 /* Let's round up here to make it more likely that the caller will get at
500 * least out_length amount of data from pa_resampler_run().
501 *
502 * We don't take the leftover into account here. If we did, then it might
503 * be in theory possible that this function would return 0 and
504 * pa_resampler_run() would also return 0. That could lead to infinite
505 * loops. When the leftover is ignored here, such loops would eventually
506 * terminate, because the leftover would grow each round, finally
507 * surpassing the minimum input threshold of the resampler. */
508 return ((((uint64_t) ((out_length + r->o_fz-1) / r->o_fz) * r->i_ss.rate) + r->o_ss.rate-1) / r->o_ss.rate) * r->i_fz;
509 }
510
511 size_t pa_resampler_result(pa_resampler *r, size_t in_length) {
512 size_t frames;
513
514 pa_assert(r);
515
516 /* Let's round up here to ensure that the caller will always allocate big
517 * enough output buffer. */
518
519 frames = (in_length + r->i_fz - 1) / r->i_fz;
520 if (*r->have_leftover)
521 frames += r->leftover_buf->length / r->w_fz;
522
523 return (((uint64_t) frames * r->o_ss.rate + r->i_ss.rate - 1) / r->i_ss.rate) * r->o_fz;
524 }
525
526 size_t pa_resampler_max_block_size(pa_resampler *r) {
527 size_t block_size_max;
528 pa_sample_spec max_ss;
529 size_t max_fs;
530 size_t frames;
531
532 pa_assert(r);
533
534 block_size_max = pa_mempool_block_size_max(r->mempool);
535
536 /* We deduce the "largest" sample spec we're using during the
537 * conversion */
538 max_ss.channels = (uint8_t) (PA_MAX(r->i_ss.channels, r->o_ss.channels));
539
540 /* We silently assume that the format enum is ordered by size */
541 max_ss.format = PA_MAX(r->i_ss.format, r->o_ss.format);
542 max_ss.format = PA_MAX(max_ss.format, r->work_format);
543
544 max_ss.rate = PA_MAX(r->i_ss.rate, r->o_ss.rate);
545
546 max_fs = pa_frame_size(&max_ss);
547 frames = block_size_max / max_fs - EXTRA_FRAMES;
548
549 pa_assert(frames >= (r->leftover_buf->length / r->w_fz));
550 if (*r->have_leftover)
551 frames -= r->leftover_buf->length / r->w_fz;
552
553 block_size_max = ((uint64_t) frames * r->i_ss.rate / max_ss.rate) * r->i_fz;
554
555 if (block_size_max > 0)
556 return block_size_max;
557 else
558 /* A single input frame may result in so much output that it doesn't
559 * fit in one standard memblock (e.g. converting 1 Hz to 44100 Hz). In
560 * this case the max block size will be set to one frame, and some
561 * memory will be probably be allocated with malloc() instead of using
562 * the memory pool.
563 *
564 * XXX: Should we support this case at all? We could also refuse to
565 * create resamplers whose max block size would exceed the memory pool
566 * block size. In this case also updating the resampler rate should
567 * fail if the new rate would cause an excessive max block size (in
568 * which case the stream would probably have to be killed). */
569 return r->i_fz;
570 }
571
572 void pa_resampler_reset(pa_resampler *r) {
573 pa_assert(r);
574
575 if (r->impl.reset)
576 r->impl.reset(r);
577
578 *r->have_leftover = false;
579 }
580
581 pa_resample_method_t pa_resampler_get_method(pa_resampler *r) {
582 pa_assert(r);
583
584 return r->method;
585 }
586
587 const pa_channel_map* pa_resampler_input_channel_map(pa_resampler *r) {
588 pa_assert(r);
589
590 return &r->i_cm;
591 }
592
593 const pa_sample_spec* pa_resampler_input_sample_spec(pa_resampler *r) {
594 pa_assert(r);
595
596 return &r->i_ss;
597 }
598
599 const pa_channel_map* pa_resampler_output_channel_map(pa_resampler *r) {
600 pa_assert(r);
601
602 return &r->o_cm;
603 }
604
605 const pa_sample_spec* pa_resampler_output_sample_spec(pa_resampler *r) {
606 pa_assert(r);
607
608 return &r->o_ss;
609 }
610
611 static const char * const resample_methods[] = {
612 "src-sinc-best-quality",
613 "src-sinc-medium-quality",
614 "src-sinc-fastest",
615 "src-zero-order-hold",
616 "src-linear",
617 "trivial",
618 "speex-float-0",
619 "speex-float-1",
620 "speex-float-2",
621 "speex-float-3",
622 "speex-float-4",
623 "speex-float-5",
624 "speex-float-6",
625 "speex-float-7",
626 "speex-float-8",
627 "speex-float-9",
628 "speex-float-10",
629 "speex-fixed-0",
630 "speex-fixed-1",
631 "speex-fixed-2",
632 "speex-fixed-3",
633 "speex-fixed-4",
634 "speex-fixed-5",
635 "speex-fixed-6",
636 "speex-fixed-7",
637 "speex-fixed-8",
638 "speex-fixed-9",
639 "speex-fixed-10",
640 "ffmpeg",
641 "auto",
642 "copy",
643 "peaks"
644 };
645
646 const char *pa_resample_method_to_string(pa_resample_method_t m) {
647
648 if (m < 0 || m >= PA_RESAMPLER_MAX)
649 return NULL;
650
651 return resample_methods[m];
652 }
653
654 int pa_resample_method_supported(pa_resample_method_t m) {
655
656 if (m < 0 || m >= PA_RESAMPLER_MAX)
657 return 0;
658
659 #ifndef HAVE_LIBSAMPLERATE
660 if (m <= PA_RESAMPLER_SRC_LINEAR)
661 return 0;
662 #endif
663
664 #ifndef HAVE_SPEEX
665 if (m >= PA_RESAMPLER_SPEEX_FLOAT_BASE && m <= PA_RESAMPLER_SPEEX_FLOAT_MAX)
666 return 0;
667 if (m >= PA_RESAMPLER_SPEEX_FIXED_BASE && m <= PA_RESAMPLER_SPEEX_FIXED_MAX)
668 return 0;
669 #endif
670
671 return 1;
672 }
673
674 pa_resample_method_t pa_parse_resample_method(const char *string) {
675 pa_resample_method_t m;
676
677 pa_assert(string);
678
679 for (m = 0; m < PA_RESAMPLER_MAX; m++)
680 if (pa_streq(string, resample_methods[m]))
681 return m;
682
683 if (pa_streq(string, "speex-fixed"))
684 return PA_RESAMPLER_SPEEX_FIXED_BASE + 1;
685
686 if (pa_streq(string, "speex-float"))
687 return PA_RESAMPLER_SPEEX_FLOAT_BASE + 1;
688
689 return PA_RESAMPLER_INVALID;
690 }
691
692 static bool on_left(pa_channel_position_t p) {
693
694 return
695 p == PA_CHANNEL_POSITION_FRONT_LEFT ||
696 p == PA_CHANNEL_POSITION_REAR_LEFT ||
697 p == PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER ||
698 p == PA_CHANNEL_POSITION_SIDE_LEFT ||
699 p == PA_CHANNEL_POSITION_TOP_FRONT_LEFT ||
700 p == PA_CHANNEL_POSITION_TOP_REAR_LEFT;
701 }
702
703 static bool on_right(pa_channel_position_t p) {
704
705 return
706 p == PA_CHANNEL_POSITION_FRONT_RIGHT ||
707 p == PA_CHANNEL_POSITION_REAR_RIGHT ||
708 p == PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER ||
709 p == PA_CHANNEL_POSITION_SIDE_RIGHT ||
710 p == PA_CHANNEL_POSITION_TOP_FRONT_RIGHT ||
711 p == PA_CHANNEL_POSITION_TOP_REAR_RIGHT;
712 }
713
714 static bool on_center(pa_channel_position_t p) {
715
716 return
717 p == PA_CHANNEL_POSITION_FRONT_CENTER ||
718 p == PA_CHANNEL_POSITION_REAR_CENTER ||
719 p == PA_CHANNEL_POSITION_TOP_CENTER ||
720 p == PA_CHANNEL_POSITION_TOP_FRONT_CENTER ||
721 p == PA_CHANNEL_POSITION_TOP_REAR_CENTER;
722 }
723
724 static bool on_lfe(pa_channel_position_t p) {
725 return
726 p == PA_CHANNEL_POSITION_LFE;
727 }
728
729 static bool on_front(pa_channel_position_t p) {
730 return
731 p == PA_CHANNEL_POSITION_FRONT_LEFT ||
732 p == PA_CHANNEL_POSITION_FRONT_RIGHT ||
733 p == PA_CHANNEL_POSITION_FRONT_CENTER ||
734 p == PA_CHANNEL_POSITION_TOP_FRONT_LEFT ||
735 p == PA_CHANNEL_POSITION_TOP_FRONT_RIGHT ||
736 p == PA_CHANNEL_POSITION_TOP_FRONT_CENTER ||
737 p == PA_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER ||
738 p == PA_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER;
739 }
740
741 static bool on_rear(pa_channel_position_t p) {
742 return
743 p == PA_CHANNEL_POSITION_REAR_LEFT ||
744 p == PA_CHANNEL_POSITION_REAR_RIGHT ||
745 p == PA_CHANNEL_POSITION_REAR_CENTER ||
746 p == PA_CHANNEL_POSITION_TOP_REAR_LEFT ||
747 p == PA_CHANNEL_POSITION_TOP_REAR_RIGHT ||
748 p == PA_CHANNEL_POSITION_TOP_REAR_CENTER;
749 }
750
751 static bool on_side(pa_channel_position_t p) {
752 return
753 p == PA_CHANNEL_POSITION_SIDE_LEFT ||
754 p == PA_CHANNEL_POSITION_SIDE_RIGHT ||
755 p == PA_CHANNEL_POSITION_TOP_CENTER;
756 }
757
758 enum {
759 ON_FRONT,
760 ON_REAR,
761 ON_SIDE,
762 ON_OTHER
763 };
764
765 static int front_rear_side(pa_channel_position_t p) {
766 if (on_front(p))
767 return ON_FRONT;
768 if (on_rear(p))
769 return ON_REAR;
770 if (on_side(p))
771 return ON_SIDE;
772 return ON_OTHER;
773 }
774
775 static void calc_map_table(pa_resampler *r) {
776 unsigned oc, ic;
777 unsigned n_oc, n_ic;
778 bool ic_connected[PA_CHANNELS_MAX];
779 bool remix;
780 pa_strbuf *s;
781 char *t;
782 pa_remap_t *m;
783
784 pa_assert(r);
785
786 if (!(r->map_required = (r->i_ss.channels != r->o_ss.channels || (!(r->flags & PA_RESAMPLER_NO_REMAP) && !pa_channel_map_equal(&r->i_cm, &r->o_cm)))))
787 return;
788
789 m = &r->remap;
790
791 n_oc = r->o_ss.channels;
792 n_ic = r->i_ss.channels;
793
794 memset(m->map_table_f, 0, sizeof(m->map_table_f));
795 memset(m->map_table_i, 0, sizeof(m->map_table_i));
796
797 memset(ic_connected, 0, sizeof(ic_connected));
798 remix = (r->flags & (PA_RESAMPLER_NO_REMAP | PA_RESAMPLER_NO_REMIX)) == 0;
799
800 if (r->flags & PA_RESAMPLER_NO_REMAP) {
801 pa_assert(!remix);
802
803 for (oc = 0; oc < PA_MIN(n_ic, n_oc); oc++)
804 m->map_table_f[oc][oc] = 1.0f;
805
806 } else if (r->flags & PA_RESAMPLER_NO_REMIX) {
807 pa_assert(!remix);
808 for (oc = 0; oc < n_oc; oc++) {
809 pa_channel_position_t b = r->o_cm.map[oc];
810
811 for (ic = 0; ic < n_ic; ic++) {
812 pa_channel_position_t a = r->i_cm.map[ic];
813
814 /* We shall not do any remixing. Hence, just check by name */
815 if (a == b)
816 m->map_table_f[oc][ic] = 1.0f;
817 }
818 }
819 } else {
820
821 /* OK, we shall do the full monty: upmixing and downmixing. Our
822 * algorithm is relatively simple, does not do spacialization, delay
823 * elements or apply lowpass filters for LFE. Patches are always
824 * welcome, though. Oh, and it doesn't do any matrix decoding. (Which
825 * probably wouldn't make any sense anyway.)
826 *
827 * This code is not idempotent: downmixing an upmixed stereo stream is
828 * not identical to the original. The volume will not match, and the
829 * two channels will be a linear combination of both.
830 *
831 * This is loosely based on random suggestions found on the Internet,
832 * such as this:
833 * http://www.halfgaar.net/surround-sound-in-linux and the alsa upmix
834 * plugin.
835 *
836 * The algorithm works basically like this:
837 *
838 * 1) Connect all channels with matching names.
839 *
840 * 2) Mono Handling:
841 * S:Mono: Copy into all D:channels
842 * D:Mono: Avg all S:channels
843 *
844 * 3) Mix D:Left, D:Right:
845 * D:Left: If not connected, avg all S:Left
846 * D:Right: If not connected, avg all S:Right
847 *
848 * 4) Mix D:Center
849 * If not connected, avg all S:Center
850 * If still not connected, avg all S:Left, S:Right
851 *
852 * 5) Mix D:LFE
853 * If not connected, avg all S:*
854 *
855 * 6) Make sure S:Left/S:Right is used: S:Left/S:Right: If not
856 * connected, mix into all D:left and all D:right channels. Gain is
857 * 1/9.
858 *
859 * 7) Make sure S:Center, S:LFE is used:
860 *
861 * S:Center, S:LFE: If not connected, mix into all D:left, all
862 * D:right, all D:center channels. Gain is 0.5 for center and 0.375
863 * for LFE. C-front is only mixed into L-front/R-front if available,
864 * otherwise into all L/R channels. Similarly for C-rear.
865 *
866 * 8) Normalize each row in the matrix such that the sum for each row is
867 * not larger than 1.0 in order to avoid clipping.
868 *
869 * S: and D: shall relate to the source resp. destination channels.
870 *
871 * Rationale: 1, 2 are probably obvious. For 3: this copies front to
872 * rear if needed. For 4: we try to find some suitable C source for C,
873 * if we don't find any, we avg L and R. For 5: LFE is mixed from all
874 * channels. For 6: the rear channels should not be dropped entirely,
875 * however have only minimal impact. For 7: movies usually encode
876 * speech on the center channel. Thus we have to make sure this channel
877 * is distributed to L and R if not available in the output. Also, LFE
878 * is used to achieve a greater dynamic range, and thus we should try
879 * to do our best to pass it to L+R.
880 */
881
882 unsigned
883 ic_left = 0,
884 ic_right = 0,
885 ic_center = 0,
886 ic_unconnected_left = 0,
887 ic_unconnected_right = 0,
888 ic_unconnected_center = 0,
889 ic_unconnected_lfe = 0;
890 bool ic_unconnected_center_mixed_in = 0;
891
892 pa_assert(remix);
893
894 for (ic = 0; ic < n_ic; ic++) {
895 if (on_left(r->i_cm.map[ic]))
896 ic_left++;
897 if (on_right(r->i_cm.map[ic]))
898 ic_right++;
899 if (on_center(r->i_cm.map[ic]))
900 ic_center++;
901 }
902
903 for (oc = 0; oc < n_oc; oc++) {
904 bool oc_connected = false;
905 pa_channel_position_t b = r->o_cm.map[oc];
906
907 for (ic = 0; ic < n_ic; ic++) {
908 pa_channel_position_t a = r->i_cm.map[ic];
909
910 if (a == b || a == PA_CHANNEL_POSITION_MONO) {
911 m->map_table_f[oc][ic] = 1.0f;
912
913 oc_connected = true;
914 ic_connected[ic] = true;
915 }
916 else if (b == PA_CHANNEL_POSITION_MONO) {
917 m->map_table_f[oc][ic] = 1.0f / (float) n_ic;
918
919 oc_connected = true;
920 ic_connected[ic] = true;
921 }
922 }
923
924 if (!oc_connected) {
925 /* Try to find matching input ports for this output port */
926
927 if (on_left(b)) {
928
929 /* We are not connected and on the left side, let's
930 * average all left side input channels. */
931
932 if (ic_left > 0)
933 for (ic = 0; ic < n_ic; ic++)
934 if (on_left(r->i_cm.map[ic])) {
935 m->map_table_f[oc][ic] = 1.0f / (float) ic_left;
936 ic_connected[ic] = true;
937 }
938
939 /* We ignore the case where there is no left input channel.
940 * Something is really wrong in this case anyway. */
941
942 } else if (on_right(b)) {
943
944 /* We are not connected and on the right side, let's
945 * average all right side input channels. */
946
947 if (ic_right > 0)
948 for (ic = 0; ic < n_ic; ic++)
949 if (on_right(r->i_cm.map[ic])) {
950 m->map_table_f[oc][ic] = 1.0f / (float) ic_right;
951 ic_connected[ic] = true;
952 }
953
954 /* We ignore the case where there is no right input
955 * channel. Something is really wrong in this case anyway.
956 * */
957
958 } else if (on_center(b)) {
959
960 if (ic_center > 0) {
961
962 /* We are not connected and at the center. Let's average
963 * all center input channels. */
964
965 for (ic = 0; ic < n_ic; ic++)
966 if (on_center(r->i_cm.map[ic])) {
967 m->map_table_f[oc][ic] = 1.0f / (float) ic_center;
968 ic_connected[ic] = true;
969 }
970
971 } else if (ic_left + ic_right > 0) {
972
973 /* Hmm, no center channel around, let's synthesize it
974 * by mixing L and R.*/
975
976 for (ic = 0; ic < n_ic; ic++)
977 if (on_left(r->i_cm.map[ic]) || on_right(r->i_cm.map[ic])) {
978 m->map_table_f[oc][ic] = 1.0f / (float) (ic_left + ic_right);
979 ic_connected[ic] = true;
980 }
981 }
982
983 /* We ignore the case where there is not even a left or
984 * right input channel. Something is really wrong in this
985 * case anyway. */
986
987 } else if (on_lfe(b) && !(r->flags & PA_RESAMPLER_NO_LFE)) {
988
989 /* We are not connected and an LFE. Let's average all
990 * channels for LFE. */
991
992 for (ic = 0; ic < n_ic; ic++)
993 m->map_table_f[oc][ic] = 1.0f / (float) n_ic;
994
995 /* Please note that a channel connected to LFE doesn't
996 * really count as connected. */
997 }
998 }
999 }
1000
1001 for (ic = 0; ic < n_ic; ic++) {
1002 pa_channel_position_t a = r->i_cm.map[ic];
1003
1004 if (ic_connected[ic])
1005 continue;
1006
1007 if (on_left(a))
1008 ic_unconnected_left++;
1009 else if (on_right(a))
1010 ic_unconnected_right++;
1011 else if (on_center(a))
1012 ic_unconnected_center++;
1013 else if (on_lfe(a))
1014 ic_unconnected_lfe++;
1015 }
1016
1017 for (ic = 0; ic < n_ic; ic++) {
1018 pa_channel_position_t a = r->i_cm.map[ic];
1019
1020 if (ic_connected[ic])
1021 continue;
1022
1023 for (oc = 0; oc < n_oc; oc++) {
1024 pa_channel_position_t b = r->o_cm.map[oc];
1025
1026 if (on_left(a) && on_left(b))
1027 m->map_table_f[oc][ic] = (1.f/9.f) / (float) ic_unconnected_left;
1028
1029 else if (on_right(a) && on_right(b))
1030 m->map_table_f[oc][ic] = (1.f/9.f) / (float) ic_unconnected_right;
1031
1032 else if (on_center(a) && on_center(b)) {
1033 m->map_table_f[oc][ic] = (1.f/9.f) / (float) ic_unconnected_center;
1034 ic_unconnected_center_mixed_in = true;
1035
1036 } else if (on_lfe(a) && !(r->flags & PA_RESAMPLER_NO_LFE))
1037 m->map_table_f[oc][ic] = .375f / (float) ic_unconnected_lfe;
1038 }
1039 }
1040
1041 if (ic_unconnected_center > 0 && !ic_unconnected_center_mixed_in) {
1042 unsigned ncenter[PA_CHANNELS_MAX];
1043 bool found_frs[PA_CHANNELS_MAX];
1044
1045 memset(ncenter, 0, sizeof(ncenter));
1046 memset(found_frs, 0, sizeof(found_frs));
1047
1048 /* Hmm, as it appears there was no center channel we
1049 could mix our center channel in. In this case, mix it into
1050 left and right. Using .5 as the factor. */
1051
1052 for (ic = 0; ic < n_ic; ic++) {
1053
1054 if (ic_connected[ic])
1055 continue;
1056
1057 if (!on_center(r->i_cm.map[ic]))
1058 continue;
1059
1060 for (oc = 0; oc < n_oc; oc++) {
1061
1062 if (!on_left(r->o_cm.map[oc]) && !on_right(r->o_cm.map[oc]))
1063 continue;
1064
1065 if (front_rear_side(r->i_cm.map[ic]) == front_rear_side(r->o_cm.map[oc])) {
1066 found_frs[ic] = true;
1067 break;
1068 }
1069 }
1070
1071 for (oc = 0; oc < n_oc; oc++) {
1072
1073 if (!on_left(r->o_cm.map[oc]) && !on_right(r->o_cm.map[oc]))
1074 continue;
1075
1076 if (!found_frs[ic] || front_rear_side(r->i_cm.map[ic]) == front_rear_side(r->o_cm.map[oc]))
1077 ncenter[oc]++;
1078 }
1079 }
1080
1081 for (oc = 0; oc < n_oc; oc++) {
1082
1083 if (!on_left(r->o_cm.map[oc]) && !on_right(r->o_cm.map[oc]))
1084 continue;
1085
1086 if (ncenter[oc] <= 0)
1087 continue;
1088
1089 for (ic = 0; ic < n_ic; ic++) {
1090
1091 if (!on_center(r->i_cm.map[ic]))
1092 continue;
1093
1094 if (!found_frs[ic] || front_rear_side(r->i_cm.map[ic]) == front_rear_side(r->o_cm.map[oc]))
1095 m->map_table_f[oc][ic] = .5f / (float) ncenter[oc];
1096 }
1097 }
1098 }
1099 }
1100
1101 for (oc = 0; oc < n_oc; oc++) {
1102 float sum = 0.0f;
1103 for (ic = 0; ic < n_ic; ic++)
1104 sum += m->map_table_f[oc][ic];
1105
1106 if (sum > 1.0f)
1107 for (ic = 0; ic < n_ic; ic++)
1108 m->map_table_f[oc][ic] /= sum;
1109 }
1110
1111 /* make an 16:16 int version of the matrix */
1112 for (oc = 0; oc < n_oc; oc++)
1113 for (ic = 0; ic < n_ic; ic++)
1114 m->map_table_i[oc][ic] = (int32_t) (m->map_table_f[oc][ic] * 0x10000);
1115
1116 s = pa_strbuf_new();
1117
1118 pa_strbuf_printf(s, " ");
1119 for (ic = 0; ic < n_ic; ic++)
1120 pa_strbuf_printf(s, " I%02u ", ic);
1121 pa_strbuf_puts(s, "\n +");
1122
1123 for (ic = 0; ic < n_ic; ic++)
1124 pa_strbuf_printf(s, "------");
1125 pa_strbuf_puts(s, "\n");
1126
1127 for (oc = 0; oc < n_oc; oc++) {
1128 pa_strbuf_printf(s, "O%02u |", oc);
1129
1130 for (ic = 0; ic < n_ic; ic++)
1131 pa_strbuf_printf(s, " %1.3f", m->map_table_f[oc][ic]);
1132
1133 pa_strbuf_puts(s, "\n");
1134 }
1135
1136 pa_log_debug("Channel matrix:\n%s", t = pa_strbuf_tostring_free(s));
1137 pa_xfree(t);
1138
1139 /* initialize the remapping function */
1140 pa_init_remap(m);
1141 }
1142
1143 /* check if buf's memblock is large enough to hold 'len' bytes; create a
1144 * new memblock if necessary and optionally preserve 'copy' data bytes */
1145 static void fit_buf(pa_resampler *r, pa_memchunk *buf, size_t len, size_t *size, size_t copy) {
1146 pa_assert(size);
1147
1148 if (!buf->memblock || len > *size) {
1149 pa_memblock *new_block = pa_memblock_new(r->mempool, len);
1150
1151 if (buf->memblock) {
1152 if (copy > 0) {
1153 void *src = pa_memblock_acquire(buf->memblock);
1154 void *dst = pa_memblock_acquire(new_block);
1155 pa_assert(copy <= len);
1156 memcpy(dst, src, copy);
1157 pa_memblock_release(new_block);
1158 pa_memblock_release(buf->memblock);
1159 }
1160
1161 pa_memblock_unref(buf->memblock);
1162 }
1163
1164 buf->memblock = new_block;
1165 *size = len;
1166 }
1167
1168 buf->length = len;
1169 }
1170
1171 static pa_memchunk* convert_to_work_format(pa_resampler *r, pa_memchunk *input) {
1172 unsigned n_samples;
1173 void *src, *dst;
1174
1175 pa_assert(r);
1176 pa_assert(input);
1177 pa_assert(input->memblock);
1178
1179 /* Convert the incoming sample into the work sample format and place them
1180 * in to_work_format_buf. */
1181
1182 if (!r->to_work_format_func || !input->length)
1183 return input;
1184
1185 n_samples = (unsigned) ((input->length / r->i_fz) * r->i_ss.channels);
1186 fit_buf(r, &r->to_work_format_buf, r->w_sz * n_samples, &r->to_work_format_buf_size, 0);
1187
1188 src = pa_memblock_acquire_chunk(input);
1189 dst = pa_memblock_acquire(r->to_work_format_buf.memblock);
1190
1191 r->to_work_format_func(n_samples, src, dst);
1192
1193 pa_memblock_release(input->memblock);
1194 pa_memblock_release(r->to_work_format_buf.memblock);
1195
1196 return &r->to_work_format_buf;
1197 }
1198
1199 static pa_memchunk *remap_channels(pa_resampler *r, pa_memchunk *input) {
1200 unsigned in_n_samples, out_n_samples, in_n_frames, out_n_frames;
1201 void *src, *dst;
1202 size_t leftover_length = 0;
1203 bool have_leftover;
1204
1205 pa_assert(r);
1206 pa_assert(input);
1207 pa_assert(input->memblock);
1208
1209 /* Remap channels and place the result in remap_buf. There may be leftover
1210 * data in the beginning of remap_buf. The leftover data is already
1211 * remapped, so it's not part of the input, it's part of the output. */
1212
1213 have_leftover = r->leftover_in_remap;
1214 r->leftover_in_remap = false;
1215
1216 if (!have_leftover && (!r->map_required || input->length <= 0))
1217 return input;
1218 else if (input->length <= 0)
1219 return &r->remap_buf;
1220
1221 in_n_samples = (unsigned) (input->length / r->w_sz);
1222 in_n_frames = out_n_frames = in_n_samples / r->i_ss.channels;
1223
1224 if (have_leftover) {
1225 leftover_length = r->remap_buf.length;
1226 out_n_frames += leftover_length / r->w_fz;
1227 }
1228
1229 out_n_samples = out_n_frames * r->o_ss.channels;
1230 fit_buf(r, &r->remap_buf, out_n_samples * r->w_sz, &r->remap_buf_size, leftover_length);
1231
1232 src = pa_memblock_acquire_chunk(input);
1233 dst = (uint8_t *) pa_memblock_acquire(r->remap_buf.memblock) + leftover_length;
1234
1235 if (r->map_required) {
1236 pa_remap_t *remap = &r->remap;
1237
1238 pa_assert(remap->do_remap);
1239 remap->do_remap(remap, dst, src, in_n_frames);
1240
1241 } else
1242 memcpy(dst, src, input->length);
1243
1244 pa_memblock_release(input->memblock);
1245 pa_memblock_release(r->remap_buf.memblock);
1246
1247 return &r->remap_buf;
1248 }
1249
1250 static void save_leftover(pa_resampler *r, void *buf, size_t len) {
1251 void *dst;
1252
1253 pa_assert(r);
1254 pa_assert(buf);
1255 pa_assert(len > 0);
1256
1257 /* Store the leftover data. */
1258 fit_buf(r, r->leftover_buf, len, r->leftover_buf_size, 0);
1259 *r->have_leftover = true;
1260
1261 dst = pa_memblock_acquire(r->leftover_buf->memblock);
1262 memmove(dst, buf, len);
1263 pa_memblock_release(r->leftover_buf->memblock);
1264 }
1265
1266 static pa_memchunk *resample(pa_resampler *r, pa_memchunk *input) {
1267 unsigned in_n_frames, out_n_frames, leftover_n_frames;
1268
1269 pa_assert(r);
1270 pa_assert(input);
1271
1272 /* Resample the data and place the result in resample_buf. */
1273
1274 if (!r->impl.resample || !input->length)
1275 return input;
1276
1277 in_n_frames = (unsigned) (input->length / r->w_fz);
1278
1279 out_n_frames = ((in_n_frames*r->o_ss.rate)/r->i_ss.rate)+EXTRA_FRAMES;
1280 fit_buf(r, &r->resample_buf, r->w_fz * out_n_frames, &r->resample_buf_size, 0);
1281
1282 leftover_n_frames = r->impl.resample(r, input, in_n_frames, &r->resample_buf, &out_n_frames);
1283
1284 if (leftover_n_frames > 0) {
1285 void *leftover_data = (uint8_t *) pa_memblock_acquire_chunk(input) + (in_n_frames - leftover_n_frames) * r->w_fz;
1286 save_leftover(r, leftover_data, leftover_n_frames * r->w_fz);
1287 pa_memblock_release(input->memblock);
1288 }
1289
1290 r->resample_buf.length = out_n_frames * r->w_fz;
1291
1292 return &r->resample_buf;
1293 }
1294
1295 static pa_memchunk *convert_from_work_format(pa_resampler *r, pa_memchunk *input) {
1296 unsigned n_samples, n_frames;
1297 void *src, *dst;
1298
1299 pa_assert(r);
1300 pa_assert(input);
1301
1302 /* Convert the data into the correct sample type and place the result in
1303 * from_work_format_buf. */
1304
1305 if (!r->from_work_format_func || !input->length)
1306 return input;
1307
1308 n_samples = (unsigned) (input->length / r->w_sz);
1309 n_frames = n_samples / r->o_ss.channels;
1310 fit_buf(r, &r->from_work_format_buf, r->o_fz * n_frames, &r->from_work_format_buf_size, 0);
1311
1312 src = pa_memblock_acquire_chunk(input);
1313 dst = pa_memblock_acquire(r->from_work_format_buf.memblock);
1314 r->from_work_format_func(n_samples, src, dst);
1315 pa_memblock_release(input->memblock);
1316 pa_memblock_release(r->from_work_format_buf.memblock);
1317
1318 return &r->from_work_format_buf;
1319 }
1320
1321 void pa_resampler_run(pa_resampler *r, const pa_memchunk *in, pa_memchunk *out) {
1322 pa_memchunk *buf;
1323
1324 pa_assert(r);
1325 pa_assert(in);
1326 pa_assert(out);
1327 pa_assert(in->length);
1328 pa_assert(in->memblock);
1329 pa_assert(in->length % r->i_fz == 0);
1330
1331 buf = (pa_memchunk*) in;
1332 buf = convert_to_work_format(r, buf);
1333 buf = remap_channels(r, buf);
1334 buf = resample(r, buf);
1335
1336 if (buf->length) {
1337 buf = convert_from_work_format(r, buf);
1338 *out = *buf;
1339
1340 if (buf == in)
1341 pa_memblock_ref(buf->memblock);
1342 else
1343 pa_memchunk_reset(buf);
1344 } else
1345 pa_memchunk_reset(out);
1346 }
1347
1348 /*** libsamplerate based implementation ***/
1349
1350 #ifdef HAVE_LIBSAMPLERATE
1351 static unsigned libsamplerate_resample(pa_resampler *r, const pa_memchunk *input, unsigned in_n_frames, pa_memchunk *output, unsigned *out_n_frames) {
1352 SRC_DATA data;
1353 SRC_STATE *state;
1354
1355 pa_assert(r);
1356 pa_assert(input);
1357 pa_assert(output);
1358 pa_assert(out_n_frames);
1359
1360 state = r->impl.data;
1361 memset(&data, 0, sizeof(data));
1362
1363 data.data_in = pa_memblock_acquire_chunk(input);
1364 data.input_frames = (long int) in_n_frames;
1365
1366 data.data_out = pa_memblock_acquire_chunk(output);
1367 data.output_frames = (long int) *out_n_frames;
1368
1369 data.src_ratio = (double) r->o_ss.rate / r->i_ss.rate;
1370 data.end_of_input = 0;
1371
1372 pa_assert_se(src_process(state, &data) == 0);
1373
1374 pa_memblock_release(input->memblock);
1375 pa_memblock_release(output->memblock);
1376
1377 *out_n_frames = (unsigned) data.output_frames_gen;
1378
1379 return in_n_frames - data.input_frames_used;
1380 }
1381
1382 static void libsamplerate_update_rates(pa_resampler *r) {
1383 SRC_STATE *state;
1384 pa_assert(r);
1385
1386 state = r->impl.data;
1387 pa_assert_se(src_set_ratio(state, (double) r->o_ss.rate / r->i_ss.rate) == 0);
1388 }
1389
1390 static void libsamplerate_reset(pa_resampler *r) {
1391 SRC_STATE *state;
1392 pa_assert(r);
1393
1394 state = r->impl.data;
1395 pa_assert_se(src_reset(state) == 0);
1396 }
1397
1398 static void libsamplerate_free(pa_resampler *r) {
1399 SRC_STATE *state;
1400 pa_assert(r);
1401
1402 state = r->impl.data;
1403 if (state)
1404 src_delete(state);
1405 }
1406
1407 static int libsamplerate_init(pa_resampler *r) {
1408 int err;
1409 SRC_STATE *state;
1410
1411 pa_assert(r);
1412
1413 if (!(state = src_new(r->method, r->work_channels, &err)))
1414 return -1;
1415
1416 r->impl.free = libsamplerate_free;
1417 r->impl.update_rates = libsamplerate_update_rates;
1418 r->impl.resample = libsamplerate_resample;
1419 r->impl.reset = libsamplerate_reset;
1420 r->impl.data = state;
1421
1422 return 0;
1423 }
1424 #endif
1425
1426 #ifdef HAVE_SPEEX
1427 /*** speex based implementation ***/
1428
1429 static unsigned speex_resample_float(pa_resampler *r, const pa_memchunk *input, unsigned in_n_frames, pa_memchunk *output, unsigned *out_n_frames) {
1430 float *in, *out;
1431 uint32_t inf = in_n_frames, outf = *out_n_frames;
1432 SpeexResamplerState *state;
1433
1434 pa_assert(r);
1435 pa_assert(input);
1436 pa_assert(output);
1437 pa_assert(out_n_frames);
1438
1439 state = r->impl.data;
1440
1441 in = pa_memblock_acquire_chunk(input);
1442 out = pa_memblock_acquire_chunk(output);
1443
1444 pa_assert_se(speex_resampler_process_interleaved_float(state, in, &inf, out, &outf) == 0);
1445
1446 pa_memblock_release(input->memblock);
1447 pa_memblock_release(output->memblock);
1448
1449 pa_assert(inf == in_n_frames);
1450 *out_n_frames = outf;
1451
1452 return 0;
1453 }
1454
1455 static unsigned speex_resample_int(pa_resampler *r, const pa_memchunk *input, unsigned in_n_frames, pa_memchunk *output, unsigned *out_n_frames) {
1456 int16_t *in, *out;
1457 uint32_t inf = in_n_frames, outf = *out_n_frames;
1458 SpeexResamplerState *state;
1459
1460 pa_assert(r);
1461 pa_assert(input);
1462 pa_assert(output);
1463 pa_assert(out_n_frames);
1464
1465 state = r->impl.data;
1466
1467 in = pa_memblock_acquire_chunk(input);
1468 out = pa_memblock_acquire_chunk(output);
1469
1470 pa_assert_se(speex_resampler_process_interleaved_int(state, in, &inf, out, &outf) == 0);
1471
1472 pa_memblock_release(input->memblock);
1473 pa_memblock_release(output->memblock);
1474
1475 pa_assert(inf == in_n_frames);
1476 *out_n_frames = outf;
1477
1478 return 0;
1479 }
1480
1481 static void speex_update_rates(pa_resampler *r) {
1482 SpeexResamplerState *state;
1483 pa_assert(r);
1484
1485 state = r->impl.data;
1486
1487 pa_assert_se(speex_resampler_set_rate(state, r->i_ss.rate, r->o_ss.rate) == 0);
1488 }
1489
1490 static void speex_reset(pa_resampler *r) {
1491 SpeexResamplerState *state;
1492 pa_assert(r);
1493
1494 state = r->impl.data;
1495
1496 pa_assert_se(speex_resampler_reset_mem(state) == 0);
1497 }
1498
1499 static void speex_free(pa_resampler *r) {
1500 SpeexResamplerState *state;
1501 pa_assert(r);
1502
1503 state = r->impl.data;
1504 if (!state)
1505 return;
1506
1507 speex_resampler_destroy(state);
1508 }
1509
1510 static int speex_init(pa_resampler *r) {
1511 int q, err;
1512 SpeexResamplerState *state;
1513
1514 pa_assert(r);
1515
1516 r->impl.free = speex_free;
1517 r->impl.update_rates = speex_update_rates;
1518 r->impl.reset = speex_reset;
1519
1520 if (r->method >= PA_RESAMPLER_SPEEX_FIXED_BASE && r->method <= PA_RESAMPLER_SPEEX_FIXED_MAX) {
1521
1522 q = r->method - PA_RESAMPLER_SPEEX_FIXED_BASE;
1523 r->impl.resample = speex_resample_int;
1524
1525 } else {
1526 pa_assert(r->method >= PA_RESAMPLER_SPEEX_FLOAT_BASE && r->method <= PA_RESAMPLER_SPEEX_FLOAT_MAX);
1527
1528 q = r->method - PA_RESAMPLER_SPEEX_FLOAT_BASE;
1529 r->impl.resample = speex_resample_float;
1530 }
1531
1532 pa_log_info("Choosing speex quality setting %i.", q);
1533
1534 if (!(state = speex_resampler_init(r->work_channels, r->i_ss.rate, r->o_ss.rate, q, &err)))
1535 return -1;
1536
1537 r->impl.data = state;
1538
1539 return 0;
1540 }
1541 #endif
1542
1543 /* Trivial implementation */
1544
1545 static unsigned trivial_resample(pa_resampler *r, const pa_memchunk *input, unsigned in_n_frames, pa_memchunk *output, unsigned *out_n_frames) {
1546 unsigned i_index, o_index;
1547 void *src, *dst;
1548 struct trivial_data *trivial_data;
1549
1550 pa_assert(r);
1551 pa_assert(input);
1552 pa_assert(output);
1553 pa_assert(out_n_frames);
1554
1555 trivial_data = r->impl.data;
1556
1557 src = pa_memblock_acquire_chunk(input);
1558 dst = pa_memblock_acquire_chunk(output);
1559
1560 for (o_index = 0;; o_index++, trivial_data->o_counter++) {
1561 i_index = ((uint64_t) trivial_data->o_counter * r->i_ss.rate) / r->o_ss.rate;
1562 i_index = i_index > trivial_data->i_counter ? i_index - trivial_data->i_counter : 0;
1563
1564 if (i_index >= in_n_frames)
1565 break;
1566
1567 pa_assert_fp(o_index * r->w_fz < pa_memblock_get_length(output->memblock));
1568
1569 memcpy((uint8_t*) dst + r->w_fz * o_index, (uint8_t*) src + r->w_fz * i_index, (int) r->w_fz);
1570 }
1571
1572 pa_memblock_release(input->memblock);
1573 pa_memblock_release(output->memblock);
1574
1575 *out_n_frames = o_index;
1576
1577 trivial_data->i_counter += in_n_frames;
1578
1579 /* Normalize counters */
1580 while (trivial_data->i_counter >= r->i_ss.rate) {
1581 pa_assert(trivial_data->o_counter >= r->o_ss.rate);
1582
1583 trivial_data->i_counter -= r->i_ss.rate;
1584 trivial_data->o_counter -= r->o_ss.rate;
1585 }
1586
1587 return 0;
1588 }
1589
1590 static void trivial_update_rates_or_reset(pa_resampler *r) {
1591 struct trivial_data *trivial_data;
1592 pa_assert(r);
1593
1594 trivial_data = r->impl.data;
1595
1596 trivial_data->i_counter = 0;
1597 trivial_data->o_counter = 0;
1598 }
1599
1600 static int trivial_init(pa_resampler*r) {
1601 struct trivial_data *trivial_data;
1602 pa_assert(r);
1603
1604 trivial_data = pa_xnew0(struct trivial_data, 1);
1605
1606 r->impl.resample = trivial_resample;
1607 r->impl.update_rates = trivial_update_rates_or_reset;
1608 r->impl.reset = trivial_update_rates_or_reset;
1609 r->impl.data = trivial_data;
1610
1611 return 0;
1612 }
1613
1614 /* Peak finder implementation */
1615
1616 static unsigned peaks_resample(pa_resampler *r, const pa_memchunk *input, unsigned in_n_frames, pa_memchunk *output, unsigned *out_n_frames) {
1617 unsigned c, o_index = 0;
1618 unsigned i, i_end = 0;
1619 void *src, *dst;
1620 struct peaks_data *peaks_data;
1621
1622 pa_assert(r);
1623 pa_assert(input);
1624 pa_assert(output);
1625 pa_assert(out_n_frames);
1626
1627 peaks_data = r->impl.data;
1628 src = pa_memblock_acquire_chunk(input);
1629 dst = pa_memblock_acquire_chunk(output);
1630
1631 i = ((uint64_t) peaks_data->o_counter * r->i_ss.rate) / r->o_ss.rate;
1632 i = i > peaks_data->i_counter ? i - peaks_data->i_counter : 0;
1633
1634 while (i_end < in_n_frames) {
1635 i_end = ((uint64_t) (peaks_data->o_counter + 1) * r->i_ss.rate) / r->o_ss.rate;
1636 i_end = i_end > peaks_data->i_counter ? i_end - peaks_data->i_counter : 0;
1637
1638 pa_assert_fp(o_index * r->w_fz < pa_memblock_get_length(output->memblock));
1639
1640 /* 1ch float is treated separately, because that is the common case */
1641 if (r->work_channels == 1 && r->work_format == PA_SAMPLE_FLOAT32NE) {
1642 float *s = (float*) src + i;
1643 float *d = (float*) dst + o_index;
1644
1645 for (; i < i_end && i < in_n_frames; i++) {
1646 float n = fabsf(*s++);
1647
1648 if (n > peaks_data->max_f[0])
1649 peaks_data->max_f[0] = n;
1650 }
1651
1652 if (i == i_end) {
1653 *d = peaks_data->max_f[0];
1654 peaks_data->max_f[0] = 0;
1655 o_index++, peaks_data->o_counter++;
1656 }
1657 } else if (r->work_format == PA_SAMPLE_S16NE) {
1658 int16_t *s = (int16_t*) src + r->work_channels * i;
1659 int16_t *d = (int16_t*) dst + r->work_channels * o_index;
1660
1661 for (; i < i_end && i < in_n_frames; i++)
1662 for (c = 0; c < r->work_channels; c++) {
1663 int16_t n = abs(*s++);
1664
1665 if (n > peaks_data->max_i[c])
1666 peaks_data->max_i[c] = n;
1667 }
1668
1669 if (i == i_end) {
1670 for (c = 0; c < r->work_channels; c++, d++) {
1671 *d = peaks_data->max_i[c];
1672 peaks_data->max_i[c] = 0;
1673 }
1674 o_index++, peaks_data->o_counter++;
1675 }
1676 } else {
1677 float *s = (float*) src + r->work_channels * i;
1678 float *d = (float*) dst + r->work_channels * o_index;
1679
1680 for (; i < i_end && i < in_n_frames; i++)
1681 for (c = 0; c < r->work_channels; c++) {
1682 float n = fabsf(*s++);
1683
1684 if (n > peaks_data->max_f[c])
1685 peaks_data->max_f[c] = n;
1686 }
1687
1688 if (i == i_end) {
1689 for (c = 0; c < r->work_channels; c++, d++) {
1690 *d = peaks_data->max_f[c];
1691 peaks_data->max_f[c] = 0;
1692 }
1693 o_index++, peaks_data->o_counter++;
1694 }
1695 }
1696 }
1697
1698 pa_memblock_release(input->memblock);
1699 pa_memblock_release(output->memblock);
1700
1701 *out_n_frames = o_index;
1702
1703 peaks_data->i_counter += in_n_frames;
1704
1705 /* Normalize counters */
1706 while (peaks_data->i_counter >= r->i_ss.rate) {
1707 pa_assert(peaks_data->o_counter >= r->o_ss.rate);
1708
1709 peaks_data->i_counter -= r->i_ss.rate;
1710 peaks_data->o_counter -= r->o_ss.rate;
1711 }
1712
1713 return 0;
1714 }
1715
1716 static void peaks_update_rates_or_reset(pa_resampler *r) {
1717 struct peaks_data *peaks_data;
1718 pa_assert(r);
1719
1720 peaks_data = r->impl.data;
1721
1722 peaks_data->i_counter = 0;
1723 peaks_data->o_counter = 0;
1724 }
1725
1726 static int peaks_init(pa_resampler*r) {
1727 struct peaks_data *peaks_data;
1728 pa_assert(r);
1729 pa_assert(r->i_ss.rate >= r->o_ss.rate);
1730 pa_assert(r->work_format == PA_SAMPLE_S16NE || r->work_format == PA_SAMPLE_FLOAT32NE);
1731
1732 peaks_data = pa_xnew0(struct peaks_data, 1);
1733
1734 r->impl.resample = peaks_resample;
1735 r->impl.update_rates = peaks_update_rates_or_reset;
1736 r->impl.reset = peaks_update_rates_or_reset;
1737 r->impl.data = peaks_data;
1738
1739 return 0;
1740 }
1741
1742 /*** ffmpeg based implementation ***/
1743
1744 static unsigned ffmpeg_resample(pa_resampler *r, const pa_memchunk *input, unsigned in_n_frames, pa_memchunk *output, unsigned *out_n_frames) {
1745 unsigned used_frames = 0, c;
1746 int previous_consumed_frames = -1;
1747 struct ffmpeg_data *ffmpeg_data;
1748
1749 pa_assert(r);
1750 pa_assert(input);
1751 pa_assert(output);
1752 pa_assert(out_n_frames);
1753
1754 ffmpeg_data = r->impl.data;
1755
1756 for (c = 0; c < r->work_channels; c++) {
1757 unsigned u;
1758 pa_memblock *b, *w;
1759 int16_t *p, *t, *k, *q, *s;
1760 int consumed_frames;
1761
1762 /* Allocate a new block */
1763 b = pa_memblock_new(r->mempool, in_n_frames * sizeof(int16_t));
1764 p = pa_memblock_acquire(b);
1765
1766 /* Now copy the input data, splitting up channels */
1767 t = (int16_t*) pa_memblock_acquire_chunk(input) + c;
1768 k = p;
1769 for (u = 0; u < in_n_frames; u++) {
1770 *k = *t;
1771 t += r->work_channels;
1772 k ++;
1773 }
1774 pa_memblock_release(input->memblock);
1775
1776 /* Allocate buffer for the result */
1777 w = pa_memblock_new(r->mempool, *out_n_frames * sizeof(int16_t));
1778 q = pa_memblock_acquire(w);
1779
1780 /* Now, resample */
1781 used_frames = (unsigned) av_resample(ffmpeg_data->state,
1782 q, p,
1783 &consumed_frames,
1784 (int) in_n_frames, (int) *out_n_frames,
1785 c >= (unsigned) (r->work_channels-1));
1786
1787 pa_memblock_release(b);
1788 pa_memblock_unref(b);
1789
1790 pa_assert(consumed_frames <= (int) in_n_frames);
1791 pa_assert(previous_consumed_frames == -1 || consumed_frames == previous_consumed_frames);
1792 previous_consumed_frames = consumed_frames;
1793
1794 /* And place the results in the output buffer */
1795 s = (int16_t *) pa_memblock_acquire_chunk(output) + c;
1796 for (u = 0; u < used_frames; u++) {
1797 *s = *q;
1798 q++;
1799 s += r->work_channels;
1800 }
1801 pa_memblock_release(output->memblock);
1802 pa_memblock_release(w);
1803 pa_memblock_unref(w);
1804 }
1805
1806 *out_n_frames = used_frames;
1807
1808 return in_n_frames - previous_consumed_frames;
1809 }
1810
1811 static void ffmpeg_free(pa_resampler *r) {
1812 struct ffmpeg_data *ffmpeg_data;
1813
1814 pa_assert(r);
1815
1816 ffmpeg_data = r->impl.data;
1817 if (ffmpeg_data->state)
1818 av_resample_close(ffmpeg_data->state);
1819 }
1820
1821 static int ffmpeg_init(pa_resampler *r) {
1822 struct ffmpeg_data *ffmpeg_data;
1823
1824 pa_assert(r);
1825
1826 ffmpeg_data = pa_xnew(struct ffmpeg_data, 1);
1827
1828 /* We could probably implement different quality levels by
1829 * adjusting the filter parameters here. However, ffmpeg
1830 * internally only uses these hardcoded values, so let's use them
1831 * here for now as well until ffmpeg makes this configurable. */
1832
1833 if (!(ffmpeg_data->state = av_resample_init((int) r->o_ss.rate, (int) r->i_ss.rate, 16, 10, 0, 0.8)))
1834 return -1;
1835
1836 r->impl.free = ffmpeg_free;
1837 r->impl.resample = ffmpeg_resample;
1838 r->impl.data = (void *) ffmpeg_data;
1839
1840 return 0;
1841 }
1842
1843 /*** copy (noop) implementation ***/
1844
1845 static int copy_init(pa_resampler *r) {
1846 pa_assert(r);
1847
1848 pa_assert(r->o_ss.rate == r->i_ss.rate);
1849
1850 return 0;
1851 }