commit abd735e40eab1af8d23618119fea23c40979642d parent 961f446bb0aa232c887110c242f07debd1e20523 Author: [email protected] <[email protected]> Date: Wed, 31 Mar 2021 22:04:32 +0000 Make weighting gain constant Diffstat:
M | include/kfr/dsp/weighting.hpp | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/kfr/dsp/weighting.hpp b/include/kfr/dsp/weighting.hpp @@ -46,7 +46,7 @@ KFR_INTRINSIC T weight_a_unnorm(T f) } template <typename T> -const static T weight_a_gain = reciprocal(weight_a_unnorm(T(1000.0))); +constexpr inline T weight_a_gain = T(1.25889662908332766733); template <typename T> KFR_INTRINSIC T aweighting(T f) @@ -65,7 +65,7 @@ KFR_INTRINSIC T weight_b_unnorm(T f) } template <typename T> -const static T weight_b_gain = reciprocal(weight_b_unnorm(T(1000.0))); +constexpr inline T weight_b_gain = T(1.01971824783723263863); template <typename T> KFR_INTRINSIC T bweighting(T f) @@ -84,7 +84,7 @@ KFR_INTRINSIC T weight_c_unnorm(T f) } template <typename T> -const static T weight_c_gain = reciprocal(weight_c_unnorm(T(1000.0))); +constexpr inline T weight_c_gain = T(1.00714583514109112805); template <typename T> KFR_INTRINSIC T cweighting(T f)