-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpcm_equal.c
265 lines (232 loc) · 6.98 KB
/
pcm_equal.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
/*
* Copyright (c) 2008 Cooper Street Innovations
* <charles@cooper-street.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdio.h>
#include <alsa/asoundlib.h>
#include <alsa/pcm.h>
#include <alsa/pcm_external.h>
#include <alsa/control.h>
#include <linux/soundcard.h>
#include "ladspa.h"
#include "ladspa_utils.h"
typedef struct snd_pcm_equal {
snd_pcm_extplug_t ext;
void *library;
const LADSPA_Descriptor *klass;
LADSPA_Control *control_data;
LADSPA_Handle *channel[];
} snd_pcm_equal_t;
static inline void interleave(float *src, float *dst, int n, int m)
{
int i, j;
for(i = 0; i < n; i++){
for(j = 0; j < m; j++){
dst[i*m + j] = src[i + n*j];
}
}
}
static inline void deinterleave(float *src, float *dst, int n, int m)
{
int i, j;
for(i = 0; i < n; i++){
for(j = 0; j < m; j++){
dst[i + n*j] = src[i*m + j];
}
}
}
static snd_pcm_sframes_t equal_transfer(snd_pcm_extplug_t *ext,
const snd_pcm_channel_area_t *dst_areas,
snd_pcm_uframes_t dst_offset,
const snd_pcm_channel_area_t *src_areas,
snd_pcm_uframes_t src_offset,
snd_pcm_uframes_t size)
{
snd_pcm_equal_t *equal = (snd_pcm_equal_t *)ext;
float *src, *dst;
int j;
/* Calculate buffer locations */
src = (float*)(src_areas->addr +
(src_areas->first + src_areas->step * src_offset)/8);
dst = (float*)(dst_areas->addr +
(dst_areas->first + dst_areas->step * dst_offset)/8);
/* NOTE: swap source and destination memory space when deinterleaved.
then swap it back during the interleave call below */
deinterleave(src, dst, size, equal->control_data->channels);
for(j = 0; j < equal->control_data->channels; j++) {
equal->klass->connect_port(equal->channel[j],
equal->control_data->input_index,
dst + j*size);
equal->klass->connect_port(equal->channel[j],
equal->control_data->output_index,
src + j*size);
equal->klass->run(equal->channel[j], size);
}
interleave(src, dst, size, equal->control_data->channels);
return size;
}
static int equal_close(snd_pcm_extplug_t *ext) {
snd_pcm_equal_t *equal = ext->private_data;
int i;
for (i = 0; i < equal->control_data->channels; i++) {
if(equal->klass->deactivate) {
equal->klass->deactivate(equal->channel[i]);
}
/* TODO: Figure out why this segfaults */
/* if(equal->klass->cleanup) {
equal->klass->cleanup(equal->channel[i]);
} */
}
LADSPAcontrolUnMMAP(equal->control_data);
LADSPAunload(equal->library);
free(equal);
return 0;
}
static int equal_init(snd_pcm_extplug_t *ext)
{
snd_pcm_equal_t *equal = (snd_pcm_equal_t *)ext;
int i, j;
/* Instantiate a LADSPA Plugin for each channel */
for(i = 0; i < equal->control_data->channels; i++) {
equal->channel[i] = equal->klass->instantiate(
equal->klass, ext->rate);
if(equal->channel[i] == NULL) {
return -1;
}
if(equal->klass->activate) {
equal->klass->activate(equal->channel[i]);
}
}
/* Connect controls to the LADSPA Plugin */
for(j = 0; j < equal->control_data->channels; j++) {
for(i = 0; i < equal->control_data->num_controls; i++) {
equal->klass->connect_port(equal->channel[j],
equal->control_data->control[i].index,
&equal->control_data->control[i].data[j]);
}
}
return 0;
}
static snd_pcm_extplug_callback_t equal_callback = {
.transfer = equal_transfer,
.init = equal_init,
.close = equal_close,
};
SND_PCM_PLUGIN_DEFINE_FUNC(equal)
{
snd_config_iterator_t i, next;
snd_pcm_equal_t *equal;
snd_config_t *sconf = NULL;
const char *controls = ".alsaequal.bin";
const char *library = "caps.so";
const char *module = "Eq10";
long channels = 2;
int err;
/* Parse configuration options from asoundrc */
snd_config_for_each(i, next, conf) {
snd_config_t *n = snd_config_iterator_entry(i);
const char *id;
if (snd_config_get_id(n, &id) < 0)
continue;
if (strcmp(id, "comment") == 0 || strcmp(id, "type") == 0 || strcmp(id, "hint") == 0)
continue;
if (strcmp(id, "slave") == 0) {
sconf = n;
continue;
}
if (strcmp(id, "controls") == 0) {
snd_config_get_string(n, &controls);
continue;
}
if (strcmp(id, "library") == 0) {
snd_config_get_string(n, &library);
continue;
}
if (strcmp(id, "module") == 0) {
snd_config_get_string(n, &module);
continue;
}
if (strcmp(id, "channels") == 0) {
snd_config_get_integer(n, &channels);
if(channels < 1) {
SNDERR("channels < 1");
return -EINVAL;
}
continue;
}
SNDERR("Unknown field %s", id);
return -EINVAL;
}
/* Make sure we have a slave and control devices defined */
if (! sconf) {
SNDERR("No slave configuration for equal pcm");
return -EINVAL;
}
/* Intialize the local object data */
equal = calloc(1, sizeof(*equal) + channels*sizeof(LADSPA_Handle *));
if (equal == NULL)
return -ENOMEM;
equal->ext.version = SND_PCM_EXTPLUG_VERSION;
equal->ext.name = "alsaequal";
equal->ext.callback = &equal_callback;
equal->ext.private_data = equal;
/* Open the LADSPA Plugin */
equal->library = LADSPAload(library);
if(equal->library == NULL) {
return -1;
}
equal->klass = LADSPAfind(equal->library, library, module);
if(equal->klass == NULL) {
return -1;
}
/* Create the ALSA External Plugin */
err = snd_pcm_extplug_create(&equal->ext, name, root, sconf, stream, mode);
if (err < 0) {
return err;
}
/* MMAP to the controls file */
equal->control_data = LADSPAcontrolMMAP(equal->klass, controls, channels);
if(equal->control_data == NULL) {
return -1;
}
/* Make sure that the control file makes sense */
if(equal->klass->PortDescriptors[equal->control_data->input_index] !=
(LADSPA_PORT_INPUT | LADSPA_PORT_AUDIO)) {
SNDERR("Problem with control file %s.", controls);
return -1;
}
if(equal->klass->PortDescriptors[equal->control_data->output_index] !=
(LADSPA_PORT_OUTPUT | LADSPA_PORT_AUDIO)) {
SNDERR("Problem with control file %s.", controls);
return -1;
}
/* Set PCM Contraints */
snd_pcm_extplug_set_param_minmax(&equal->ext,
SND_PCM_EXTPLUG_HW_CHANNELS,
equal->control_data->channels,
equal->control_data->channels);
snd_pcm_extplug_set_slave_param(&equal->ext,
SND_PCM_EXTPLUG_HW_CHANNELS,
equal->control_data->channels);
snd_pcm_extplug_set_param(&equal->ext,
SND_PCM_EXTPLUG_HW_FORMAT, SND_PCM_FORMAT_FLOAT);
snd_pcm_extplug_set_slave_param(&equal->ext,
SND_PCM_EXTPLUG_HW_FORMAT, SND_PCM_FORMAT_FLOAT);
*pcmp = equal->ext.pcm;
return 0;
}
SND_PCM_PLUGIN_SYMBOL(equal);