aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/ambidefs.cpp2
-rw-r--r--core/ambidefs.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/core/ambidefs.cpp b/core/ambidefs.cpp
index 6fecd515..e33197c1 100644
--- a/core/ambidefs.cpp
+++ b/core/ambidefs.cpp
@@ -319,7 +319,7 @@ const std::array<AmbiChannelFloatArray,9> AmbiScale::SecondOrder2DUp{CalcSecondO
const std::array<AmbiChannelFloatArray,16> AmbiScale::ThirdOrderUp{CalcThirdOrderUp()};
const std::array<AmbiChannelFloatArray,16> AmbiScale::ThirdOrder2DUp{CalcThirdOrder2DUp()};
-const std::array<float,MaxAmbiOrder+1> AmbiScale::DecoderHFScale10{{
+const std::array<float,MaxAmbiOrder+1> AmbiScale::DecoderHFScale1O{{
2.000000000e+00f, 1.154700538e+00f
}};
const std::array<float,MaxAmbiOrder+1> AmbiScale::DecoderHFScale1O2D{{
diff --git a/core/ambidefs.h b/core/ambidefs.h
index 20b3942e..e72f0cd4 100644
--- a/core/ambidefs.h
+++ b/core/ambidefs.h
@@ -118,10 +118,10 @@ struct AmbiScale {
{
if(order >= 3) return is3D ? DecoderHFScale3O : DecoderHFScale3O2D;
if(order == 2) return is3D ? DecoderHFScale2O : DecoderHFScale2O2D;
- return is3D ? DecoderHFScale10 : DecoderHFScale1O2D;
+ return is3D ? DecoderHFScale1O : DecoderHFScale1O2D;
}
- static const std::array<float,MaxAmbiOrder+1> DecoderHFScale10;
+ static const std::array<float,MaxAmbiOrder+1> DecoderHFScale1O;
static const std::array<float,MaxAmbiOrder+1> DecoderHFScale1O2D;
static const std::array<float,MaxAmbiOrder+1> DecoderHFScale2O;
static const std::array<float,MaxAmbiOrder+1> DecoderHFScale2O2D;