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