2 * Copyright (c) 2005 Boris Mikhaylov
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 #define M_PI 3.14159265358979323846
35 /* Single pole IIR filter.
36 * O[n] = a0*I[n] + a1*I[n-1] + b1*O[n-1]
40 #define lo_filter(in, out_1) (bs2b->a0_lo*(in) + bs2b->b1_lo*(out_1))
42 /* Highboost filter */
43 #define hi_filter(in, in_1, out_1) (bs2b->a0_hi*(in) + bs2b->a1_hi*(in_1) + bs2b->b1_hi*(out_1))
45 /* Set up all data. */
46 static void init(struct bs2b
*bs2b
)
52 if ((bs2b
->srate
> 192000) || (bs2b
->srate
< 2000))
53 bs2b
->srate
= BS2B_DEFAULT_SRATE
;
57 case BS2B_LOW_CLEVEL
: /* Low crossfeed level */
60 G_lo
= 0.398107170553497;
61 G_hi
= 0.205671765275719;
64 case BS2B_MIDDLE_CLEVEL
: /* Middle crossfeed level */
67 G_lo
= 0.459726988530872;
68 G_hi
= 0.228208484414988;
71 case BS2B_HIGH_CLEVEL
: /* High crossfeed level (virtual speakers are closer to itself) */
74 G_lo
= 0.530884444230988;
75 G_hi
= 0.250105790667544;
78 case BS2B_LOW_ECLEVEL
: /* Low easy crossfeed level */
81 G_lo
= 0.316227766016838;
82 G_hi
= 0.168236228897329;
85 case BS2B_MIDDLE_ECLEVEL
: /* Middle easy crossfeed level */
88 G_lo
= 0.354813389233575;
89 G_hi
= 0.187169483835901;
92 default: /* High easy crossfeed level */
93 bs2b
->level
= BS2B_HIGH_ECLEVEL
;
97 G_lo
= 0.398107170553497;
98 G_hi
= 0.205671765275719;
103 * $d = 1 / 2 / pi / $fc;
107 x
= exp(-2.0 * M_PI
* Fc_lo
/ bs2b
->srate
);
109 bs2b
->a0_lo
= G_lo
* (1.0 - x
);
111 x
= exp(-2.0 * M_PI
* Fc_hi
/ bs2b
->srate
);
113 bs2b
->a0_hi
= 1.0 - G_hi
* (1.0 - x
);
116 bs2b
->gain
= 1.0f
/ (float)(1.0 - G_hi
+ G_lo
);
119 /* Exported functions.
120 * See descriptions in "bs2b.h"
123 void bs2b_set_level(struct bs2b
*bs2b
, int level
)
125 if(level
== bs2b
->level
)
129 } /* bs2b_set_level */
131 int bs2b_get_level(struct bs2b
*bs2b
)
134 } /* bs2b_get_level */
136 void bs2b_set_srate(struct bs2b
*bs2b
, int srate
)
138 if (srate
== bs2b
->srate
)
142 } /* bs2b_set_srate */
144 int bs2b_get_srate(struct bs2b
*bs2b
)
147 } /* bs2b_get_srate */
149 void bs2b_clear(struct bs2b
*bs2b
)
151 memset(&bs2b
->last_sample
, 0, sizeof(bs2b
->last_sample
));
154 void bs2b_cross_feed(struct bs2b
*bs2b
, float *sample
)
157 bs2b
->last_sample
.lo
[0] = lo_filter(sample
[0], bs2b
->last_sample
.lo
[0]);
158 bs2b
->last_sample
.lo
[1] = lo_filter(sample
[1], bs2b
->last_sample
.lo
[1]);
160 /* Highboost filter */
161 bs2b
->last_sample
.hi
[0] = hi_filter(sample
[0], bs2b
->last_sample
.asis
[0], bs2b
->last_sample
.hi
[0]);
162 bs2b
->last_sample
.hi
[1] = hi_filter(sample
[1], bs2b
->last_sample
.asis
[1], bs2b
->last_sample
.hi
[1]);
163 bs2b
->last_sample
.asis
[0] = sample
[0];
164 bs2b
->last_sample
.asis
[1] = sample
[1];
167 sample
[0] = (float)(bs2b
->last_sample
.hi
[0] + bs2b
->last_sample
.lo
[1]);
168 sample
[1] = (float)(bs2b
->last_sample
.hi
[1] + bs2b
->last_sample
.lo
[0]);
170 /* Bass boost cause allpass attenuation */
171 sample
[0] *= bs2b
->gain
;
172 sample
[1] *= bs2b
->gain
;
174 /* Clipping of overloaded samples */
178 if (sample
[0] < -1.0)
182 if (sample
[1] < -1.0)
185 } /* bs2b_cross_feed */