-
Notifications
You must be signed in to change notification settings - Fork 31
/
st2ms.c
130 lines (117 loc) · 3.88 KB
/
st2ms.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
/*
* This file is part of dsp.
*
* Copyright (c) 2018-2024 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 <stdio.h>
#include <stdlib.h>
#include "st2ms.h"
#include "util.h"
struct st2ms_state {
int c0, c1;
};
sample_t * st2ms_effect_run(struct effect *e, ssize_t *frames, sample_t *ibuf, sample_t *obuf)
{
ssize_t i, samples = *frames * e->ostream.channels;
sample_t s0, s1;
struct st2ms_state *state = (struct st2ms_state *) e->data;
for (i = 0; i < samples; i += e->ostream.channels) {
s0 = ibuf[i + state->c0];
s1 = ibuf[i + state->c1];
ibuf[i + state->c0] = (s0 + s1) * 0.5;
ibuf[i + state->c1] = (s0 - s1) * 0.5;
}
return ibuf;
}
sample_t * ms2st_effect_run(struct effect *e, ssize_t *frames, sample_t *ibuf, sample_t *obuf)
{
ssize_t i, samples = *frames * e->ostream.channels;
sample_t s0, s1;
struct st2ms_state *state = (struct st2ms_state *) e->data;
for (i = 0; i < samples; i += e->ostream.channels) {
s0 = ibuf[i + state->c0];
s1 = ibuf[i + state->c1];
ibuf[i + state->c0] = (s0 + s1);
ibuf[i + state->c1] = (s0 - s1);
}
return ibuf;
}
void st2ms_effect_plot(struct effect *e, int i)
{
struct st2ms_state *state = (struct st2ms_state *) e->data;
const int is_ms2st = (e->run == ms2st_effect_run);
for (int k = 0; k < e->ostream.channels; ++k) {
if (k == state->c0)
printf("H%d_%d(w)=(Ht%d_%d(w*%d/2.0/pi)+Ht%d_%d(w*%d/2.0/pi))*%g\n",
k, i, state->c0, i, e->ostream.fs, state->c1, i, e->ostream.fs, (is_ms2st)?1.0:0.5);
else if (k == state->c1)
printf("H%d_%d(w)=(Ht%d_%d(w*%d/2.0/pi)-Ht%d_%d(w*%d/2.0/pi))*%g\n",
k, i, state->c0, i, e->ostream.fs, state->c1, i, e->ostream.fs, (is_ms2st)?1.0:0.5);
else
printf("H%d_%d(w)=Ht%d_%d(w*%d/2.0/pi)\n", k, i, k, i, e->ostream.fs);
}
}
void st2ms_effect_destroy(struct effect *e)
{
free(e->data);
}
struct effect * st2ms_effect_init(const struct effect_info *ei, const struct stream_info *istream, const char *channel_selector, const char *dir, int argc, const char *const *argv)
{
struct effect *e;
struct st2ms_state *state;
int i, n_channels = 0;
if (argc != 1) {
LOG_FMT(LL_ERROR, "%s: usage: %s", argv[0], ei->usage);
return NULL;
}
for (i = 0; i < istream->channels; ++i)
if (GET_BIT(channel_selector, i))
++n_channels;
if (n_channels != 2) {
LOG_FMT(LL_ERROR, "%s: error: number of input channels must be 2", argv[0]);
return NULL;
}
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;
e->plot_info |= PLOT_INFO_MIX;
switch (ei->effect_number) {
case ST2MS_EFFECT_NUMBER_ST2MS:
e->run = st2ms_effect_run;
break;
case ST2MS_EFFECT_NUMBER_MS2ST:
e->run = ms2st_effect_run;
break;
default:
LOG_FMT(LL_ERROR, "%s: BUG: unknown effect: %s (%d)", __FILE__, argv[0], ei->effect_number);
free(e);
return NULL;
}
e->plot = st2ms_effect_plot;
e->destroy = st2ms_effect_destroy;
state = calloc(1, sizeof(struct st2ms_state));
state->c0 = state->c1 = -1;
for (i = 0; i < istream->channels; ++i) {
if (GET_BIT(channel_selector, i)) {
if (state->c0 == -1)
state->c0 = i;
else
state->c1 = i;
}
}
e->data = state;
return e;
}