diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2022-09-04 09:09:12 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2022-09-04 09:09:12 -0700 |
commit | 14bb4ad1b7a0126fe5dfdd2e62bea750ce12d961 (patch) | |
tree | e7b9ec6f392ffed2a71a92f7f2ab9a6a7141b679 /core | |
parent | f2ff2bb2f6f2f9190210b60833b4232fe5398b07 (diff) |
Allow different HF scales for 2D mixing/output
Not actually used yet, the device needs to track whether it's using 2D or 3D
mixing.
Diffstat (limited to 'core')
-rw-r--r-- | core/ambidefs.cpp | 26 | ||||
-rw-r--r-- | core/ambidefs.h | 2 | ||||
-rw-r--r-- | core/voice.cpp | 2 |
3 files changed, 25 insertions, 5 deletions
diff --git a/core/ambidefs.cpp b/core/ambidefs.cpp index 49b2d144..819ba9a6 100644 --- a/core/ambidefs.cpp +++ b/core/ambidefs.cpp @@ -29,6 +29,18 @@ constexpr std::array<std::array<float,MaxAmbiOrder+1>,MaxAmbiOrder+1> HFScales{{ /* 1.947005434e+00f, 1.764337084e+00f, 1.424707344e+00f, 9.755104127e-01f, 4.784482742e-01f */ }}; +/* Same as above, but using a 10-point horizontal-only speaker array. Should + * only be used when the device is mixing in 2D B-Format for horizontal-only + * output. + */ +constexpr std::array<std::array<float,MaxAmbiOrder+1>,MaxAmbiOrder+1> HFScales2D{{ + {{ 2.236067977e+00f, 1.581138830e+00f, 9.128709292e-01f, 6.050756345e-01f }}, + {{ 2.236067977e+00f, 1.581138830e+00f, 9.128709292e-01f, 6.050756345e-01f }}, + {{ 1.825741858e+00f, 1.581138830e+00f, 9.128709292e-01f, 6.050756345e-01f }}, + {{ 1.581138830e+00f, 1.460781803e+00f, 1.118033989e+00f, 6.050756345e-01f }}, + /* 1.414213562e+00f, 1.344997024e+00f, 1.144122806e+00f, 8.312538756e-01f, 4.370160244e-01f */ +}}; + constexpr std::array<std::array<float,4>,8> FirstOrderDecoder{{ {{ 1.250000000e-01f, 1.250000000e-01f, 1.250000000e-01f, 1.250000000e-01f, }}, @@ -385,12 +397,20 @@ const std::array<AmbiChannelFloatArray,25> AmbiScale::FourthOrder2DUp{CalcFourth std::array<float,MaxAmbiOrder+1> AmbiScale::GetHFOrderScales(const uint src_order, - const uint dev_order) noexcept + const uint dev_order, const bool horizontalOnly) noexcept { std::array<float,MaxAmbiOrder+1> res{}; - for(size_t i{0};i < MaxAmbiOrder+1;++i) - res[i] = HFScales[src_order][i] / HFScales[dev_order][i]; + if(!horizontalOnly) + { + for(size_t i{0};i < MaxAmbiOrder+1;++i) + res[i] = HFScales[src_order][i] / HFScales[dev_order][i]; + } + else + { + for(size_t i{0};i < MaxAmbiOrder+1;++i) + res[i] = HFScales2D[src_order][i] / HFScales2D[dev_order][i]; + } return res; } diff --git a/core/ambidefs.h b/core/ambidefs.h index aa69b2e6..b7d2bcd1 100644 --- a/core/ambidefs.h +++ b/core/ambidefs.h @@ -115,7 +115,7 @@ struct AmbiScale { /* Retrieves per-order HF scaling factors for "upsampling" ambisonic data. */ static std::array<float,MaxAmbiOrder+1> GetHFOrderScales(const uint src_order, - const uint dev_order) noexcept; + const uint dev_order, const bool horizontalOnly) noexcept; static const std::array<std::array<float,MaxAmbiChannels>,4> FirstOrderUp; static const std::array<std::array<float,MaxAmbiChannels>,4> FirstOrder2DUp; diff --git a/core/voice.cpp b/core/voice.cpp index 8b4cabe2..7af35e7a 100644 --- a/core/voice.cpp +++ b/core/voice.cpp @@ -899,7 +899,7 @@ void Voice::prepare(DeviceBase *device) { const uint8_t *OrderFromChan{Is2DAmbisonic(mFmtChannels) ? AmbiIndex::OrderFrom2DChannel().data() : AmbiIndex::OrderFromChannel().data()}; - const auto scales = AmbiScale::GetHFOrderScales(mAmbiOrder, device->mAmbiOrder); + const auto scales = AmbiScale::GetHFOrderScales(mAmbiOrder, device->mAmbiOrder, false); const BandSplitter splitter{device->mXOverFreq / static_cast<float>(device->Frequency)}; for(auto &chandata : mChans) |