Files
2025-05-03 12:51:37 -03:00

188 lines
5.5 KiB
C++

/*-
* Copyright (c) 2005 Boris Mikhaylov
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "config.h"
#include <algorithm>
#include <cmath>
#include <iterator>
#include <stdexcept>
#include "alnumbers.h"
#include "alspan.h"
#include "bs2b.h"
namespace {
/* Set up all data. */
void init(Bs2b::bs2b *bs2b)
{
float Fc_lo, Fc_hi;
float G_lo, G_hi;
switch(bs2b->level)
{
case Bs2b::LowCLevel: /* Low crossfeed level */
Fc_lo = 360.0f;
Fc_hi = 501.0f;
G_lo = 0.398107170553497f;
G_hi = 0.205671765275719f;
break;
case Bs2b::MiddleCLevel: /* Middle crossfeed level */
Fc_lo = 500.0f;
Fc_hi = 711.0f;
G_lo = 0.459726988530872f;
G_hi = 0.228208484414988f;
break;
case Bs2b::HighCLevel: /* High crossfeed level (virtual speakers are closer to itself) */
Fc_lo = 700.0f;
Fc_hi = 1021.0f;
G_lo = 0.530884444230988f;
G_hi = 0.250105790667544f;
break;
case Bs2b::LowECLevel: /* Low easy crossfeed level */
Fc_lo = 360.0f;
Fc_hi = 494.0f;
G_lo = 0.316227766016838f;
G_hi = 0.168236228897329f;
break;
case Bs2b::MiddleECLevel: /* Middle easy crossfeed level */
Fc_lo = 500.0f;
Fc_hi = 689.0f;
G_lo = 0.354813389233575f;
G_hi = 0.187169483835901f;
break;
case Bs2b::HighECLevel: /* High easy crossfeed level */
default:
bs2b->level = Bs2b::HighECLevel;
Fc_lo = 700.0f;
Fc_hi = 975.0f;
G_lo = 0.398107170553497f;
G_hi = 0.205671765275719f;
break;
}
float g{1.0f / (1.0f - G_hi + G_lo)};
/* $fc = $Fc / $s;
* $d = 1 / 2 / pi / $fc;
* $x = exp(-1 / $d);
*/
float x{ std::exp(-al::numbers::pi_v<float>*2.0f*Fc_lo/static_cast<float>(bs2b->srate))};
bs2b->b1_lo = x;
bs2b->a0_lo = G_lo * (1.0f - x) * g;
x = std::exp(-al::numbers::pi_v<float>*2.0f*Fc_hi/static_cast<float>(bs2b->srate));
bs2b->b1_hi = x;
bs2b->a0_hi = (1.0f - G_hi * (1.0f - x)) * g;
bs2b->a1_hi = -x * g;
}
} // namespace
/* Exported functions.
* See descriptions in "bs2b.h"
*/
namespace Bs2b {
void bs2b::set_params(int level_, int srate_)
{
if(srate_ < 1)
throw std::runtime_error{"BS2B srate < 1"};
level = level_;
srate = srate_;
init(this);
}
void bs2b::clear()
{
history.fill(bs2b::t_last_sample{});
}
void bs2b::cross_feed(const al::span<float> Left, const al::span<float> Right)
{
const auto a0lo = a0_lo;
const auto b1lo = b1_lo;
const auto a0hi = a0_hi;
const auto a1hi = a1_hi;
const auto b1hi = b1_hi;
auto lsamples = Left.first(std::min(Left.size(), Right.size()));
auto rsamples = Right.first(lsamples.size());
auto samples = std::array<std::array<float,2>,128>{};
auto leftio = lsamples.begin();
auto rightio = rsamples.begin();
while(auto rem = std::distance(leftio, lsamples.end()))
{
const auto todo = std::min<ptrdiff_t>(samples.size(), rem);
/* Process left input */
auto z_lo = history[0].lo;
auto z_hi = history[0].hi;
std::transform(leftio, leftio+todo, samples.begin(),
[a0hi,a1hi,b1hi,a0lo,b1lo,&z_lo,&z_hi](const float x) noexcept
{
const auto y0 = a0hi*x + z_hi;
z_hi = a1hi*x + b1hi*y0;
const auto y1 = a0lo*x + z_lo;
z_lo = b1lo*y1;
return std::array{y0, y1};
});
history[0].lo = z_lo;
history[0].hi = z_hi;
/* Process right input */
z_lo = history[1].lo;
z_hi = history[1].hi;
std::transform(rightio, rightio+todo, samples.cbegin(), samples.begin(),
[a0hi,a1hi,b1hi,a0lo,b1lo,&z_lo,&z_hi](const float x, const std::array<float,2> &out) noexcept
{
const auto y0 = a0lo*x + z_lo;
z_lo = b1lo*y0;
const auto y1 = a0hi*x + z_hi;
z_hi = a1hi*x + b1hi*y1;
return std::array{out[0]+y0, out[1]+y1};
});
history[1].lo = z_lo;
history[1].hi = z_hi;
leftio = std::transform(samples.cbegin(), samples.cbegin()+todo, leftio,
[](const std::array<float,2> &in) { return in[0]; });
rightio = std::transform(samples.cbegin(), samples.cbegin()+todo, rightio,
[](const std::array<float,2> &in) { return in[1]; });
}
}
} // namespace Bs2b