alsa: Add a proplist to mappings
[pulseaudio-raopUDP/pulseaudio-raop-alac.git] / src / pulsecore / remap.c
blobb831f78c6c3cad35c9c22a707d07e7163aca7912
1 /***
2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
5 Copyright 2009 Wim Taymans <wim.taymans@collabora.co.uk.com>
7 PulseAudio is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published
9 by the Free Software Foundation; either version 2.1 of the License,
10 or (at your option) any later version.
12 PulseAudio is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with PulseAudio; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 USA.
21 ***/
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
27 #include <string.h>
29 #include <pulse/sample.h>
30 #include <pulsecore/log.h>
31 #include <pulsecore/macro.h>
33 #include "remap.h"
35 static void remap_mono_to_stereo_c(pa_remap_t *m, void *dst, const void *src, unsigned n) {
36 unsigned i;
38 switch (*m->format) {
39 case PA_SAMPLE_FLOAT32NE:
41 float *d, *s;
43 d = (float *) dst;
44 s = (float *) src;
46 for (i = n >> 2; i; i--) {
47 d[0] = d[1] = s[0];
48 d[2] = d[3] = s[1];
49 d[4] = d[5] = s[2];
50 d[6] = d[7] = s[3];
51 s += 4;
52 d += 8;
54 for (i = n & 3; i; i--) {
55 d[0] = d[1] = s[0];
56 s++;
57 d += 2;
59 break;
61 case PA_SAMPLE_S16NE:
63 int16_t *d, *s;
65 d = (int16_t *) dst;
66 s = (int16_t *) src;
68 for (i = n >> 2; i; i--) {
69 d[0] = d[1] = s[0];
70 d[2] = d[3] = s[1];
71 d[4] = d[5] = s[2];
72 d[6] = d[7] = s[3];
73 s += 4;
74 d += 8;
76 for (i = n & 3; i; i--) {
77 d[0] = d[1] = s[0];
78 s++;
79 d += 2;
81 break;
83 default:
84 pa_assert_not_reached();
88 static void remap_channels_matrix_c(pa_remap_t *m, void *dst, const void *src, unsigned n) {
89 unsigned oc, ic, i;
90 unsigned n_ic, n_oc;
92 n_ic = m->i_ss->channels;
93 n_oc = m->o_ss->channels;
95 switch (*m->format) {
96 case PA_SAMPLE_FLOAT32NE:
98 float *d, *s;
100 memset(dst, 0, n * sizeof(float) * n_oc);
102 for (oc = 0; oc < n_oc; oc++) {
104 for (ic = 0; ic < n_ic; ic++) {
105 float vol;
107 vol = m->map_table_f[oc][ic];
109 if (vol <= 0.0)
110 continue;
112 d = (float *)dst + oc;
113 s = (float *)src + ic;
115 if (vol >= 1.0) {
116 for (i = n; i > 0; i--, s += n_ic, d += n_oc)
117 *d += *s;
118 } else {
119 for (i = n; i > 0; i--, s += n_ic, d += n_oc)
120 *d += *s * vol;
125 break;
127 case PA_SAMPLE_S16NE:
129 int16_t *d, *s;
131 memset(dst, 0, n * sizeof(int16_t) * n_oc);
133 for (oc = 0; oc < n_oc; oc++) {
135 for (ic = 0; ic < n_ic; ic++) {
136 int32_t vol;
138 vol = m->map_table_i[oc][ic];
140 if (vol <= 0)
141 continue;
143 d = (int16_t *)dst + oc;
144 s = (int16_t *)src + ic;
146 if (vol >= 0x10000) {
147 for (i = n; i > 0; i--, s += n_ic, d += n_oc)
148 *d += *s;
149 } else {
150 for (i = n; i > 0; i--, s += n_ic, d += n_oc)
151 *d += (int16_t) (((int32_t)*s * vol) >> 16);
155 break;
157 default:
158 pa_assert_not_reached();
162 /* set the function that will execute the remapping based on the matrices */
163 static void init_remap_c(pa_remap_t *m) {
164 unsigned n_oc, n_ic;
166 n_oc = m->o_ss->channels;
167 n_ic = m->i_ss->channels;
169 /* find some common channel remappings, fall back to full matrix operation. */
170 if (n_ic == 1 && n_oc == 2 &&
171 m->map_table_f[0][0] >= 1.0 && m->map_table_f[1][0] >= 1.0) {
172 m->do_remap = (pa_do_remap_func_t) remap_mono_to_stereo_c;
173 pa_log_info("Using mono to stereo remapping");
174 } else {
175 m->do_remap = (pa_do_remap_func_t) remap_channels_matrix_c;
176 pa_log_info("Using generic matrix remapping");
181 /* default C implementation */
182 static pa_init_remap_func_t remap_func = init_remap_c;
184 void pa_init_remap(pa_remap_t *m) {
185 pa_assert(remap_func);
187 m->do_remap = NULL;
189 /* call the installed remap init function */
190 remap_func(m);
192 if (m->do_remap == NULL) {
193 /* nothing was installed, fallback to C version */
194 init_remap_c(m);
198 pa_init_remap_func_t pa_get_init_remap_func(void) {
199 return remap_func;
202 void pa_set_init_remap_func(pa_init_remap_func_t func) {
203 remap_func = func;