-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix4_common.c
301 lines (283 loc) · 9.78 KB
/
matrix4_common.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
* This file is part of dsp.
*
* Copyright (c) 2020-2025 Michael Barbour <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <stdlib.h>
#include <string.h>
#include <math.h>
#define DSP_MATRIX4_COMMON_H_NO_STATIC_FUNCTIONS
#include "matrix4_common.h"
#include "dsp.h"
int get_args_and_channels(const struct effect_info *ei, const struct stream_info *istream, const char *channel_selector, int argc, const char *const *argv, struct matrix4_config *config)
{
double surr_level = -6.0206;
char *endptr;
if (argc > 3) {
LOG_FMT(LL_ERROR, "%s: usage: %s", argv[0], ei->usage);
return 1;
}
config->opt_str_idx = -1;
if (argc == 2) {
const double val = strtod(argv[1], &endptr);
if (endptr == argv[1] || *endptr != '\0')
config->opt_str_idx = 1;
else
surr_level = val;
}
else if (argc == 3) {
config->opt_str_idx = 1;
surr_level = strtod(argv[2], &endptr);
CHECK_ENDPTR(argv[2], endptr, "surround_level", return 1);
}
config->surr_mult = pow(10.0, surr_level / 20.0);
if (config->surr_mult > 1.0)
LOG_FMT(LL_ERROR, "%s: warning: surround_level probably shouldn't be greater than 0dB", argv[0]);
if (istream->fs < 32000) {
LOG_FMT(LL_ERROR, "%s: error: sample rate out of range", argv[0]);
return 1;
}
config->n_channels = num_bits_set(channel_selector, istream->channels);
if (config->n_channels != 2) {
LOG_FMT(LL_ERROR, "%s: error: number of input channels must be 2", argv[0]);
return 1;
}
config->c0 = config->c1 = -1;
for (int i = 0; i < istream->channels; ++i) {
if (GET_BIT(channel_selector, i)) {
if (config->c0 == -1)
config->c0 = i;
else
config->c1 = i;
}
}
return 0;
}
static int is_opt(const char *opt, const char *name)
{
size_t len = strlen(name);
if (len > 1 && name[len-1] == '=')
return (strncmp(opt, name, len-1) == 0 && (opt[len-1] == '\0' || opt[len-1] == '='));
return (strcmp(opt, name) == 0);
}
static void set_fb_stop_default(struct matrix4_config *config)
{
switch (config->fb_type) {
case FILTER_BANK_TYPE_BUTTERWORTH:
config->fb_stop[0] = 0.0;
config->fb_stop[1] = 0.0;
break;
case FILTER_BANK_TYPE_CHEBYSHEV1:
case FILTER_BANK_TYPE_CHEBYSHEV2:
config->fb_stop[0] = 25.0;
config->fb_stop[1] = 0.0;
break;
case FILTER_BANK_TYPE_ELLIPTIC:
config->fb_stop[0] = 35.0;
config->fb_stop[1] = 50.0;
break;
}
}
int parse_effect_opts(const char *const *argv, const struct stream_info *istream, struct matrix4_config *config)
{
char *opt_str = NULL;
config->do_dir_boost = 1;
config->fb_type = FILTER_BANK_TYPE_DEFAULT;
set_fb_stop_default(config);
if (config->opt_str_idx > 0) {
opt_str = strdup(argv[config->opt_str_idx]);
char *opt = opt_str, *next_opt, *endptr;
while (*opt != '\0') {
next_opt = isolate(opt, ',');
if (*opt == '\0') /* do nothing */;
else if (is_opt(opt, "show_status")) config->show_status = 1;
else if (is_opt(opt, "no_dir_boost")) config->do_dir_boost = 0;
else if (is_opt(opt, "signal")) config->enable_signal = 1;
else if (is_opt(opt, "linear_phase")) config->do_phase_lin = 1;
else if (is_opt(opt, "surround_delay=")) {
char *opt_arg = isolate(opt, '=');
if (*opt_arg == '\0') goto needs_arg;
config->surr_delay_frames = parse_len(opt_arg, istream->fs, &endptr);
CHECK_ENDPTR(opt_arg, endptr, "surround_delay", goto fail);
}
else if (is_opt(opt, "filter_type=")) {
char *opt_arg = isolate(opt, '=');
if (*opt_arg == '\0') goto needs_arg;
char *opt_subarg = isolate(opt_arg, ':');
if (strcmp(opt_arg, "butterworth") == 0)
config->fb_type = FILTER_BANK_TYPE_BUTTERWORTH;
else if (strcmp(opt_arg, "chebyshev1") == 0)
config->fb_type = FILTER_BANK_TYPE_CHEBYSHEV1;
else if (strcmp(opt_arg, "chebyshev2") == 0)
config->fb_type = FILTER_BANK_TYPE_CHEBYSHEV2;
else if (strcmp(opt_arg, "elliptic") == 0)
config->fb_type = FILTER_BANK_TYPE_ELLIPTIC;
else {
LOG_FMT(LL_ERROR, "%s: error: unrecognized filter bank type: %s", argv[0], opt_arg);
goto fail;
}
set_fb_stop_default(config);
if (*opt_subarg != '\0') {
char *opt_subarg1 = isolate(opt_subarg, ':');
switch (config->fb_type) {
case FILTER_BANK_TYPE_CHEBYSHEV1:
case FILTER_BANK_TYPE_CHEBYSHEV2:
config->fb_stop[0] = strtod(opt_subarg, &endptr);
CHECK_ENDPTR(opt_arg, endptr, "stop_dB", goto fail);
if (config->fb_stop[0] < 10.0) {
LOG_FMT(LL_ERROR, "%s: error: %s: stopband attenuation must be at least 10dB", argv[0], opt_arg);
goto fail;
}
if (*opt_subarg1 != '\0')
LOG_FMT(LL_ERROR, "%s: warning: %s: ignoring argument: %s", argv[0], opt_arg, opt_subarg1);
break;
case FILTER_BANK_TYPE_ELLIPTIC:
config->fb_stop[0] = strtod(opt_subarg, &endptr);
CHECK_ENDPTR(opt_arg, endptr, "stop_dB", goto fail);
if (*opt_subarg1 != '\0') {
config->fb_stop[1] = strtod(opt_subarg1, &endptr);
CHECK_ENDPTR(opt_arg, endptr, "stop_dB", goto fail);
}
else config->fb_stop[1] = config->fb_stop[0];
if (config->fb_stop[0] < 20.0 || config->fb_stop[1] < 20.0) {
LOG_FMT(LL_ERROR, "%s: error: %s: stopband attenuation must be at least 20dB", argv[0], opt_arg);
goto fail;
}
break;
default:
LOG_FMT(LL_ERROR, "%s: warning: %s: ignoring argument: %s", argv[0], opt_arg, opt_subarg);
}
}
}
else {
LOG_FMT(LL_ERROR, "%s: error: unrecognized option: %s", argv[0], opt);
goto fail;
needs_arg:
LOG_FMT(LL_ERROR, "%s: error: option requires argument: %s", argv[0], opt);
goto fail;
}
opt = next_opt;
}
free(opt_str);
}
return 0;
fail:
free(opt_str);
return 1;
}
struct matrix4_delay_state {
sample_t *buf;
ssize_t len, p, drain_frames;
int n_ch;
char buf_full, is_draining;
};
sample_t * matrix4_delay_surr_effect_run(struct effect *e, ssize_t *frames, sample_t *ibuf, sample_t *obuf)
{
struct matrix4_delay_state *state = (struct matrix4_delay_state *) e->data;
sample_t *ibuf_p = &ibuf[e->istream.channels-2];
if (!state->buf_full && state->p + *frames >= state->len)
state->buf_full = 1;
for (ssize_t i = *frames; i > 0; --i) {
sample_t *b = &state->buf[state->p*2];
const sample_t s0 = ibuf_p[0], s1 = ibuf_p[1];
ibuf_p[0] = b[0];
ibuf_p[1] = b[1];
b[0] = s0;
b[1] = s1;
ibuf_p += e->istream.channels;
state->p = (state->p + 1 >= state->len) ? 0 : state->p + 1;
}
return ibuf;
}
sample_t * matrix4_delay_front_effect_run(struct effect *e, ssize_t *frames, sample_t *ibuf, sample_t *obuf)
{
struct matrix4_delay_state *state = (struct matrix4_delay_state *) e->data;
sample_t *ibuf_p = ibuf;
if (!state->buf_full && state->p + *frames >= state->len)
state->buf_full = 1;
for (ssize_t i = *frames; i > 0; --i) {
sample_t *b = &state->buf[state->p*state->n_ch];
for (int k = 0; k < state->n_ch; ++k) {
const sample_t s = ibuf_p[k];
ibuf_p[k] = b[k];
b[k] = s;
}
ibuf_p += e->istream.channels;
state->p = (state->p + 1 >= state->len) ? 0 : state->p + 1;
}
return ibuf;
}
ssize_t matrix4_delay_front_effect_delay(struct effect *e)
{
struct matrix4_delay_state *state = (struct matrix4_delay_state *) e->data;
return (state->buf_full) ? state->len : state->p;
}
void matrix4_delay_effect_reset(struct effect *e)
{
struct matrix4_delay_state *state = (struct matrix4_delay_state *) e->data;
state->p = 0;
state->buf_full = 0;
memset(state->buf, 0, state->len * state->n_ch * sizeof(sample_t));
}
void matrix4_delay_effect_drain(struct effect *e, ssize_t *frames, sample_t *obuf)
{
struct matrix4_delay_state *state = (struct matrix4_delay_state *) e->data;
if (!state->buf_full && state->p == 0)
*frames = -1;
else {
if (!state->is_draining) {
state->drain_frames = state->len;
state->is_draining = 1;
}
if (state->drain_frames > 0) {
*frames = MINIMUM(*frames, state->drain_frames);
state->drain_frames -= *frames;
memset(obuf, 0, *frames * e->istream.channels * sizeof(sample_t));
e->run(e, frames, obuf, NULL);
}
else *frames = -1;
}
}
void matrix4_delay_effect_destroy(struct effect *e)
{
struct matrix4_delay_state *state = (struct matrix4_delay_state *) e->data;
free(state->buf);
free(state);
}
struct effect * matrix4_delay_effect_init(const struct effect_info *ei, const struct stream_info *istream, ssize_t frames)
{
if (frames == 0)
return NULL;
LOG_FMT(LL_VERBOSE, "%s: info: net surround delay is %gms (%zd sample%s)", ei->name, frames*1000.0/istream->fs, frames, (frames == 1) ? "" : "s");
struct effect *e = calloc(1, sizeof(struct effect));
e->name = ei->name;
e->istream.fs = e->ostream.fs = istream->fs;
e->istream.channels = e->ostream.channels = istream->channels;
if (frames > 0)
e->run = matrix4_delay_surr_effect_run;
else {
e->run = matrix4_delay_front_effect_run;
e->delay = matrix4_delay_front_effect_delay;
}
e->reset = matrix4_delay_effect_reset;
e->drain = matrix4_delay_effect_drain;
e->destroy = matrix4_delay_effect_destroy;
struct matrix4_delay_state *state = calloc(1, sizeof(struct matrix4_delay_state));
state->len = (frames < 0) ? -frames : frames;
state->n_ch = (frames > 0) ? 2 : e->istream.channels - 2;
state->buf = calloc(state->len * state->n_ch, sizeof(sample_t));
e->data = state;
return e;
}